From df38386360df8769b2f9b194a309e648ee661287 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Wed, 17 Jul 2019 12:29:53 +0200
Subject: [PATCH 01/73] :ambulance: fix(posix) Fix problems with posixGroup
 templates

issue #5976
---
 posix/admin/groups/posix/class_posixGroup.inc | 48 ++++++++++++-------
 posix/personal/posix/class_posixAccount.inc   | 21 ++------
 2 files changed, 33 insertions(+), 36 deletions(-)

diff --git a/posix/admin/groups/posix/class_posixGroup.inc b/posix/admin/groups/posix/class_posixGroup.inc
index b7637f893a..76d358e1f5 100644
--- a/posix/admin/groups/posix/class_posixGroup.inc
+++ b/posix/admin/groups/posix/class_posixGroup.inc
@@ -52,6 +52,8 @@ class posixGroup extends simplePlugin
 
   static function getAttributesInfo ()
   {
+    global $config;
+
     return array(
       'main' => array(
         'name'  => _('Properties'),
@@ -73,7 +75,7 @@ class posixGroup extends simplePlugin
           new IntAttribute(
             _('GID'), _('GID value for this group'),
             'gidNumber', FALSE,
-            0, FALSE, ''
+            $config->get_cfg_value('minId', 0), FALSE, ''
           )
         )
       ),
@@ -137,21 +139,15 @@ class posixGroup extends simplePlugin
         )
       )
     );
-  }
-
-  function check()
-  {
-    global $config;
-    $message = parent::check();
-
-    /* Check ID's if they are forced by user */
-    if ($this->force_id) {
-      if ($this->gidNumber < $config->get_cfg_value("minId")) {
-        $message[] = msgPool::toosmall(_("GID"), $config->get_cfg_value("minId"));
+    if ($this->is_template) {
+      /* Template specific handling */
+      if (isset($this->attrs['force_ids'])) {
+        $this->force_ids = ($this->attrs['force_ids'][0] != 'FALSE');
+      }
+      if (!$this->force_ids) {
+        $this->gidNumber = '';
       }
     }
-
-    return $message;
   }
 
   function resetCopyInfos()
@@ -167,11 +163,15 @@ class posixGroup extends simplePlugin
   {
     if (!$this->force_id) {
       /* Handle gidNumber */
-      if ($this->attributesAccess['gidNumber']->getInitialValue() != "") {
-        $this->gidNumber = $this->attributesAccess['gidNumber']->getInitialValue();
+      if ($this->is_template) {
+        $this->gidNumber = '';
       } else {
-        $this->gidNumber = posixAccount::getNextIdLock('gidNumber', $this->dn);
-        $this->locks[] = 'gidNumber';
+        if ($this->attributesAccess['gidNumber']->getInitialValue() != '') {
+          $this->gidNumber = $this->attributesAccess['gidNumber']->getInitialValue();
+        } else {
+          $this->gidNumber = posixAccount::getNextIdLock('gidNumber', $this->dn);
+          $this->locks[] = 'gidNumber';
+        }
       }
     }
 
@@ -191,6 +191,18 @@ class posixGroup extends simplePlugin
       unset($this->attrs['objectClass'][$key]);
     }
 
+    if ($this->is_template) {
+      if ($this->force_ids) {
+        if ($this->gidNumber == '%askme%') {
+          $this->attrs['force_ids'] = '%askme%';
+        } else {
+          $this->attrs['force_ids'] = 'TRUE';
+        }
+      } else {
+        $this->attrs['force_ids']   = 'FALSE';
+      }
+    }
+
     return $errors;
   }
 
diff --git a/posix/personal/posix/class_posixAccount.inc b/posix/personal/posix/class_posixAccount.inc
index e7f6953627..20cc5f14c1 100644
--- a/posix/personal/posix/class_posixAccount.inc
+++ b/posix/personal/posix/class_posixAccount.inc
@@ -143,12 +143,12 @@ class posixAccount extends simplePlugin
           new IntAttribute(
             _('User id'), _('User id value for this user'),
             'uidNumber', FALSE,
-            0, FALSE, ''
+            $config->get_cfg_value('minId', 0), FALSE, ''
           ),
           new IntAttribute(
             _('Group id'), _('Group id value for this user'),
             'gidNumber', FALSE,
-            0, FALSE, ''
+            $config->get_cfg_value('minId', 0), FALSE, ''
           )
         )
       ),
@@ -408,23 +408,8 @@ class posixAccount extends simplePlugin
   function check()
   {
     global $config;
-    if (isset($this->parent) &&
-        isset($this->parent->getBaseObject()->is_template) &&
-        $this->parent->getBaseObject()->is_template) {
-      $message = array();
-    } else {
-      $message = parent::check();
-    }
 
-    /* Check ID's if they are forced by user */
-    if ($this->force_ids) {
-      if ($this->uidNumber < $config->get_cfg_value('minId')) {
-        $message[] = msgPool::toosmall(_('UID'), $config->get_cfg_value('minId'));
-      }
-      if ($this->gidNumber < $config->get_cfg_value('minId')) {
-        $message[] = msgPool::toosmall(_('GID'), $config->get_cfg_value('minId'));
-      }
-    }
+    $message = parent::check();
 
     /* Check shadow settings */
     if ($this->shadowWarning !== '') {
-- 
GitLab


From 02a589fbbece0b3400b5cd78dbbc02c41f09fb1c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 18 Jul 2019 15:21:46 +0200
Subject: [PATCH 02/73] :ambulance: fix(posix) Fix typos from previous commits

issue #5976
---
 posix/admin/groups/posix/class_posixGroup.inc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/posix/admin/groups/posix/class_posixGroup.inc b/posix/admin/groups/posix/class_posixGroup.inc
index 76d358e1f5..a1a84c0836 100644
--- a/posix/admin/groups/posix/class_posixGroup.inc
+++ b/posix/admin/groups/posix/class_posixGroup.inc
@@ -141,10 +141,10 @@ class posixGroup extends simplePlugin
     );
     if ($this->is_template) {
       /* Template specific handling */
-      if (isset($this->attrs['force_ids'])) {
-        $this->force_ids = ($this->attrs['force_ids'][0] != 'FALSE');
+      if (isset($this->attrs['force_id'])) {
+        $this->force_id = ($this->attrs['force_id'][0] != 'FALSE');
       }
-      if (!$this->force_ids) {
+      if (!$this->force_id) {
         $this->gidNumber = '';
       }
     }
@@ -192,14 +192,14 @@ class posixGroup extends simplePlugin
     }
 
     if ($this->is_template) {
-      if ($this->force_ids) {
+      if ($this->force_id) {
         if ($this->gidNumber == '%askme%') {
-          $this->attrs['force_ids'] = '%askme%';
+          $this->attrs['force_id'] = '%askme%';
         } else {
-          $this->attrs['force_ids'] = 'TRUE';
+          $this->attrs['force_id'] = 'TRUE';
         }
       } else {
-        $this->attrs['force_ids']   = 'FALSE';
+        $this->attrs['force_id']   = 'FALSE';
       }
     }
 
-- 
GitLab


From 7f4684d5bf858b8cdd4d5dcc35b0840cb327f58a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Tue, 23 Jul 2019 11:20:28 +0200
Subject: [PATCH 03/73] :ambulance: fix(gpg) Fix crash when GPG ldap fields are
 empty

issue #5978
---
 gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
index 2313da9dd9..a9269839c2 100644
--- a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
+++ b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
@@ -72,9 +72,12 @@ class pgpKeySelect extends simpleSelectManagement
     $this->filter->elements['NAME']['autocomplete']['attribute']  = $attributes;
   }
 
-  static function filterSingleValue(array $value, $func)
+  static function filterSingleValue($value, $func)
   {
-    if (count($value) == 0) {
+    if (is_array($value)) {
+      $value = reset($value);
+    }
+    if (($value === FALSE) || ($value === '')) {
       return '&nbsp;';
     }
     $return = static::$func($value[0]);
-- 
GitLab


From c33203446d09144fe3560ecf58990b2076613b66 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 11:24:26 +0200
Subject: [PATCH 04/73] :ambulance: fix(gitlab-ci) Switch to php:cli-stretch
 instead of installing php-cli from apt

issue #5986
---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7dab292885..7295034bcf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,12 +36,13 @@ create_php_lint_rapport_stretch:
 
 # PHP codesniffer
 create_php_code_sniffer_rapport_13:
+  image: php:cli-stretch
   stage: codestyle
   only:
     - branches
   before_script:
     - apt-get update -qq
-    - apt-get install -y -qq  git php-cli php-codesniffer
+    - apt-get install -y -qq  git php-codesniffer
   script:
     - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
@@ -124,7 +125,7 @@ build-release:
   stage: tarballs
   only:
     - tags
-  script: 
+  script:
     - tar -cvzf fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz *
   artifacts:
     paths:
-- 
GitLab


From bb7a514355b9d8daccbff109e4d1c78a8b788603 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 11:29:00 +0200
Subject: [PATCH 05/73] :ambulance: fix(gitlab-ci) git clone with depth 1 to
 speed up download

issue #5986
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7295034bcf..5e87b2fbe2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -44,7 +44,7 @@ create_php_code_sniffer_rapport_13:
     - apt-get update -qq
     - apt-get install -y -qq  git php-codesniffer
   script:
-    - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
@@ -93,7 +93,7 @@ fusiondirectory-update-locale:
     - apt-get update -qq
     - apt-get install -y -qq gettext git
   script:
-    - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins
 
 # Update transifex
@@ -106,7 +106,7 @@ update-transifex:
     - apt-get update -qq
     - apt-get install -y -qq gettext git transifex-client
   script:
-    - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
     - tx pull -a -f
     - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins
-- 
GitLab


From 8091b80d04f56e77a64a4d2641270e25b3c06690 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 12:03:37 +0200
Subject: [PATCH 06/73] :ambulance: fix(gitlab-ci) Use our own docker image for
 codesniffer

issue #5986
---
 .gitlab-ci.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e87b2fbe2..546efbb55f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,13 +36,10 @@ create_php_lint_rapport_stretch:
 
 # PHP codesniffer
 create_php_code_sniffer_rapport_13:
-  image: php:cli-stretch
+  image: phpcodesniffer-cli:stretch
   stage: codestyle
   only:
     - branches
-  before_script:
-    - apt-get update -qq
-    - apt-get install -y -qq  git php-codesniffer
   script:
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
-- 
GitLab


From cec6bf5b677534e2a43058d7e4dc76deee5cc82d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 14:33:45 +0200
Subject: [PATCH 07/73] :ambulance: fix(gitlab-ci) Only build tarballs for tags

issue #5986
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 546efbb55f..f18cb45ff3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -111,6 +111,8 @@ update-transifex:
 
 build-tarballs:
   stage: tarballs
+  only:
+    - tags
   script:
     - tar -cvzf fusiondirectory-plugins.tar.gz *
   artifacts:
-- 
GitLab


From ebfc63a473a61f8ba07f4d8063b637185c8945de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 15:33:14 +0200
Subject: [PATCH 08/73] :ambulance: fix(gitlab-ci) Use our own docker for
 transifex as well

issue #5986
---
 .gitlab-ci.yml | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f18cb45ff3..12c9ddf56d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -82,26 +82,20 @@ sonar_preview:
 
 # fusiondirectory-update-locale
 fusiondirectory-update-locale:
-  image: php:cli-stretch
+  image: transifex-cli:stretch
   stage: transifex
   only:
     - branches
-  before_script:
-    - apt-get update -qq
-    - apt-get install -y -qq gettext git
   script:
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins
 
 # Update transifex
 update-transifex:
-  image: php:cli-stretch
+  image: transifex-cli:stretch
   stage: transifex
   only:
     - /^1.*$/
-  before_script:
-    - apt-get update -qq
-    - apt-get install -y -qq gettext git transifex-client
   script:
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
-- 
GitLab


From 9b74c42f7a81fc1980eeb816d847db05f028e03d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 25 Jul 2019 17:17:50 +0200
Subject: [PATCH 09/73] :ambulance: fix(sudo) Fix crash when used with
 mixedgroups

issue #5970
---
 sudo/admin/sudo/class_sudoGeneric.inc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sudo/admin/sudo/class_sudoGeneric.inc b/sudo/admin/sudo/class_sudoGeneric.inc
index 27b984bdc1..deca9c970e 100644
--- a/sudo/admin/sudo/class_sudoGeneric.inc
+++ b/sudo/admin/sudo/class_sudoGeneric.inc
@@ -119,6 +119,7 @@ class sudo extends simplePlugin
 
   static function plInfo()
   {
+    $posixGroupClass = (class_available('mixedGroup') ? 'ogroup' : 'posixGroup');
     return array(
       'plShortName'   => _('Sudo'),
       'plDescription' => _('Sudo role'),
@@ -134,8 +135,7 @@ class sudo extends simplePlugin
       'plForeignKeys'  => array(
         'sudoUser'   => array(
           array('user', 'uid', '(sudoUser=%oldvalue%)'),
-          array('posixGroup', 'cn', '(sudoUser=%|%%oldvalue%)'),
-          array('mixedGroup', 'cn', '(sudoUser=%|%%oldvalue%)'),
+          array($posixGroupClass, 'cn', '(sudoUser=%|%%oldvalue%)'),
         ),
         'sudoHost'   => array(
           array('serverGeneric', 'cn'),
@@ -258,7 +258,7 @@ class sudo extends simplePlugin
 
   function foreignKeyCheck ($field, $fieldvalue, $source)
   {
-    if (($field == 'sudoUser') && (($source['CLASS'] == 'posixGroup') || ($source['CLASS'] == 'mixedGroup'))) {
+    if (($field == 'sudoUser') && (($source['CLASS'] == 'posixGroup') || ($source['CLASS'] == 'ogroup'))) {
       return parent::foreignKeyCheck($field, '%'.$fieldvalue, $source);
     } else {
       return parent::foreignKeyCheck($field, $fieldvalue, $source);
@@ -267,7 +267,7 @@ class sudo extends simplePlugin
 
   function foreignKeyUpdate($field, $oldvalue, $newvalue, $source)
   {
-    if (($field == 'sudoUser') && (($source['CLASS'] == 'posixGroup') || ($source['CLASS'] == 'mixedGroup'))) {
+    if (($field == 'sudoUser') && (($source['CLASS'] == 'posixGroup') || ($source['CLASS'] == 'ogroup'))) {
       return parent::foreignKeyUpdate($field, '%'.$oldvalue, '%'.$newvalue, $source);
     } else {
       return parent::foreignKeyUpdate($field, $oldvalue, $newvalue, $source);
-- 
GitLab


From 4d8f0f2e4d3d7932164a5f1d0a8c3c847c38836a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Mon, 29 Jul 2019 10:07:36 +0200
Subject: [PATCH 10/73] :ambulance: fix(posix) Fix mixedgroups compatibility

Declare savedGroupMembership as an empty array to avoid type check
 errors.

issue #5970
---
 posix/personal/posix/class_posixAccount.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/posix/personal/posix/class_posixAccount.inc b/posix/personal/posix/class_posixAccount.inc
index 20cc5f14c1..3d46bbc1c5 100644
--- a/posix/personal/posix/class_posixAccount.inc
+++ b/posix/personal/posix/class_posixAccount.inc
@@ -80,7 +80,8 @@ class posixAccount extends simplePlugin
   var $objectclasses = array('posixAccount', 'shadowAccount');
   protected $locks = array();
 
-  protected $fromTemplate = FALSE;
+  protected $fromTemplate         = FALSE;
+  protected $savedGroupMembership = array();
 
   static function plInfo()
   {
-- 
GitLab


From 93e8472fa456ce192e139415785b3f13e8a0e7b4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Wed, 28 Aug 2019 15:11:32 +0000
Subject: [PATCH 11/73] Merge branch '5992-email-icon-should-be-moved-to-core'
 into '1.4-dev'

Resolve "Email icon should be moved to core"

See merge request fusiondirectory/fd-plugins!613

(cherry picked from commit 4ed09cff5f1734b61826f986d66c6b179888d5eb)

d31c7dcd :tractor: fix(core) Move email icons to core
---
 .../breezy/icons/16/apps/internet-mail.png    | Bin 427 -> 0 bytes
 .../breezy/icons/48/apps/internet-mail.png    | Bin 2128 -> 0 bytes
 .../breezy/svg/16/apps/internet-mail.svg      | 132 ------
 .../breezy/svg/48/apps/internet-mail.svg      | 257 ----------
 .../legacy/icons/16/apps/internet-mail.png    | Bin 550 -> 0 bytes
 .../legacy/icons/48/apps/internet-mail.png    | Bin 2397 -> 0 bytes
 mail/html/themes/legacy/svg/internet-mail.svg | 440 ------------------
 7 files changed, 829 deletions(-)
 delete mode 100644 mail/html/themes/breezy/icons/16/apps/internet-mail.png
 delete mode 100644 mail/html/themes/breezy/icons/48/apps/internet-mail.png
 delete mode 100644 mail/html/themes/breezy/svg/16/apps/internet-mail.svg
 delete mode 100644 mail/html/themes/breezy/svg/48/apps/internet-mail.svg
 delete mode 100644 mail/html/themes/legacy/icons/16/apps/internet-mail.png
 delete mode 100644 mail/html/themes/legacy/icons/48/apps/internet-mail.png
 delete mode 100644 mail/html/themes/legacy/svg/internet-mail.svg

diff --git a/mail/html/themes/breezy/icons/16/apps/internet-mail.png b/mail/html/themes/breezy/icons/16/apps/internet-mail.png
deleted file mode 100644
index c36d6c9b16d8698865f4c7a40666737a95dd7f66..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 427
zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf<Z~8yL>2?p
zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$m7#J8eJY5_^
zEP9Vl+UUg`DB${jYIx4Zt+#%tYl?Z_ym^Sj+aqzqh7D)bGakn;nIe#)_&Mw5q5ciN
z(i^;#&90{jPfHP2RPg)$tdOt#p3Q^(-3$q7R%~VEZPzL_SN0fQYhPe<-gr_l!*Yg#
zOS@iAo-^y_Q@a~ys(5W8zMC<X*Rx+>|8PmwaI;)PI0JKe{cS;+NpG4N7yM<D?wo1M
zFyndUJoC3456YzPc``6WPE(z9jNzHe^0Q}(Js<0wo^+qZ=W>Zt(ZhGno=cZpy4$WI
zo;l0!!kT@-32FW+`eCcD$}$|4c%8P^Yf_5Kr#%{7$Nd^-_A>A|aa=Ert<QCzdp7O9
zVvDqAYM{vXSk8H#aiO7G@3dVH4ZW)FIeClc#e0WlF5x%6eVmzL$>O@d^4Ivk{w;44
T)e&U{1}uZ8tDnm{r-UW|wsEQp

diff --git a/mail/html/themes/breezy/icons/48/apps/internet-mail.png b/mail/html/themes/breezy/icons/48/apps/internet-mail.png
deleted file mode 100644
index 62da1fd79d3dcca731ec09a1ce245db537b18576..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 2128
zcmV-W2(R~vP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000fw000fw0YWI7cmMzZ8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H12hB-DK~!jg?U`L{Tvrjte{=WSakjBt$4MxmcH(@w)QO$6N#9bT
zARZ9#01u={fP|3RQsAL+HY!4bP$zldflB?L6)K{ouLz`8NRgr<g@!byZfQR3_#+7^
zaT>4H#9n)M@4aVuxOYFj>)nl0cxc8tyZ6q_nKS=$&YYREhP!l^KHDUB!icH{uUxyf
zTaD~Rqz`lp&;i`ztK0;xgIqw(kcggGzi!<r5pkD0_Obw6nwsh~j(JjqZ=<YfaO5df
z{wM)?u5<0$OSkL8Z2_2^{CJHC*@L3;7!bVO!F{p?`GeZlp{}lu>y3797{K_IkG?M=
zzXrXhwsu4GiKzaxbNzj<HqxnX02eP_j7T*0vZ#EgVb>a?SJShf{II8|CtHtlT>viJ
zxUn*r&io1G(dGG8HyzJJ!{6vxy?U;eVod;N&z=oOo8x~`*mq}qtD8<}HvN_E?(WP|
zN>(i^;T7>$jIvJ^{>N>vgkvw(@^8r%7@fTGJ%r!YGV*DXs(yEK=NEooO<oni#Kc60
zBf$&6s!zqU`stP<X3Mtw@4r?_Sal0!#Try}mGXc8iwBTjRP(dq3XG4BuXiLk287CG
z`_46%a2usRcTN(G#md>Xi`%`etLt*PpkfwvH1L$7i<}3*RRDH1XXuJL%k$Q!iFA;6
z=OO?sq|*RIqS0cNkR{d=z=86<ivXx<;KIb^{nZ9jzx+Bo7vizib8K$1m*F~0EQEM-
zx;1YXfpjK=iV%rJ3W|pPs+uS-02jr;$oQ4rsIIAczB%yaRSU#bNsP8IG8ek-b8=!n
z$iPS|5jA`%z5ou0di&bWWXPn`1$}hg`LRp8%Kcpgz~Js(Dx`3g_MpSDP1D51cpy^2
zhC_3FKES|*RwB3@>z-y!*zvZfc&nfSwqujYX7YUmv$rMyRqbDL;#{xY8*(|aDM>Si
zgXh~AnGMxF`D3Xd1Ly7~g5lWaBx}NM-Yy85LxEsBF4?S&Dj1}{CIFO8OOEa;r~y@0
zhaHY>nP#OpB+j)mIvcF%{rFsf#D}d!aee0<UuN<LM9zHxQG;vSIJOO{n`^HCtWoc~
zV#5VY;k`ZLa&+4aE5#-8VH+cJp{jkyQb7{`Y9oqrblVIaQKw+n__jqr1Qqcm-n-+v
z*si<i46n3>npKsm%~6a?39miuaHJ<mGY*O2Rz_|G7xf#P4U!mcC4%9|14%j}c8T1$
zppNDy(O(q`?|^aLl{Ep>B)7<7IT=W0ghRt^jNU4wk@49Ohu&-DR@$oGU&*gPJ_7vJ
zkfK%-fU3?dwF0;b#+2}`F9dk{-4;?A;hCNpnsIsNpDm2t3^H~zNMfjk7>1wq%&?G!
zfitVPz7Qz2Yy23{{HCgebG8luT&sBsnZo<je2@dDTbR#U9Ns>|p7u0@eKW+wkT}yy
z;!G<sF%0(2u)96YuXfBZpS3t}x`nCvV8N~_BuTXNB+4}rSya$10wCyU^$^ajfHyxM
zr!5kvTbN5*9PXQ8V>}Be9Wk4uyOON13^5FY{Yg4vHlS=+nPqTil7);gaH@r=dCRkF
z0M~QdkK59QqN*dcSHS3*rB(n3Fff%0FmSSs)PgYhP?C-DY>8fb#O2wYNsc^}q$B2*
z$U2*C4)2;_AtNN-X=5rC@BlbeoO#saiv-Tp1mIfMi6wKW>p6e$WE-ipaCmo;u6VYh
z?&>Co)lE)CSyw#E;oV76Y2n~W4}`jleFsHz&uUK81h8Yv#($uCb*V&ld@{;hTKMIj
zX*R^O^`+kmZ9_cEvyV(OpMm3((fk(5H!VqQAB}F?G*s^IqH0t`%+T2jZ;0}Axy)N4
z@2h`pn&GJk!&8xpYK_p2whVu}n!5uO@~|T04pmiN`&NaYA}ihpTw^~Mkl>GjaJfwV
zbpQ6{C~semmW!7`{-Nnjy}#%2LqKg6^L(XVRqw<@ADsU!!Vk*%^Qjc`3kwKfS(cw{
z@Dh%Se`*vbAiR0>%Y$5k%JIt+mH5X{apDs6g}yItd%TjLRWq>@BBAJXdGN(nG|{x8
z39%$!_G-Rt(L66VleuX!en1xU3wp&fUwHS&oWTzLyqcd?0X)2QYf@ByQYjV0qA{Y;
z7`X)$&F$3Or~jnhlOjI00>7YF&_|2j{IS%?lYM>NHyQ>2(Eni1>qgBhl}d_eH0oXX
z6hA=}r~bl|m-Dp1*J5cwUyGReanP4`^=^G*DIaSVbC#WcT;Z)sc{vh|5{*U6Qzp6S
zGr8g`$Hy;|%k;G<^%mJb-W1@en*P;N*tv739l`k~s(-C?mWM;({N=lN>w6)gCA<<H
z@_DN0*|%%-tq9K7>-mMcu5!A!w>M=u>8~0wFIUQ{p>T*$C|DYtrJhv?ST9J+0v1JI
zvfT97dV70Q_4roz{|9pP&U+v17vwiUYq`wMW^r6E*GSnhTB)uttMQYf@}r0Q9$0eE
zms7(Rnms!nd_Cx9HmjN!Q7x(9LZJ}BK%i)nwc^&HWNT?glouo$+}x=1IlH$_r`~`6
zKI6(00{el_=lG7}V2oR9=Kn3|YXo?HcW>|2+x1~t0CJ?N*58MR`_aIog7%B*CfhZi
z!<ZF5fH}*O|0psN5NpU-?ukdXZyyp7b0@~XOLytBO#cOu@pUs-M`RBG0000<MNUMn
GLSTYQQY6&?

diff --git a/mail/html/themes/breezy/svg/16/apps/internet-mail.svg b/mail/html/themes/breezy/svg/16/apps/internet-mail.svg
deleted file mode 100644
index 24500b63f6..0000000000
--- a/mail/html/themes/breezy/svg/16/apps/internet-mail.svg
+++ /dev/null
@@ -1,132 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg3049"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="internet-mail.svg"
-   inkscape:export-filename="internet-mail.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs3051">
-    <style
-       type="text/css"
-       id="current-color-scheme">
-      .ColorScheme-Text {
-        color:#4d4d4d;
-      }
-      .ColorScheme-Background {
-        color:#eff0f1;
-      }
-      .ColorScheme-Highlight {
-        color:#3daee9;
-      }
-      .ColorScheme-ViewText {
-        color:#31363b;
-      }
-      .ColorScheme-ViewBackground {
-        color:#fcfcfc;
-      }
-      .ColorScheme-ViewHover {
-        color:#93cee9;
-      }
-      .ColorScheme-ViewFocus{
-        color:#3daee9;
-      }
-      .ColorScheme-ButtonText {
-        color:#31363b;
-      }
-      .ColorScheme-ButtonBackground {
-        color:#eff0f1;
-      }
-      .ColorScheme-ButtonHover {
-        color:#93cee9;
-      }
-      .ColorScheme-ButtonFocus{
-        color:#3daee9;
-      }
-      </style>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="24.411306"
-     inkscape:cx="3.4083283"
-     inkscape:cy="7.7717888"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:window-width="1878"
-     inkscape:window-height="1051"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     inkscape:showpageshadow="false"
-     borderlayer="true"
-     inkscape:snap-bbox="true"
-     inkscape:snap-global="false"
-     inkscape:object-nodes="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid4085" />
-    <sodipodi:guide
-       position="2.0000044,14.00003"
-       orientation="12,0"
-       id="guide4075" />
-    <sodipodi:guide
-       position="2.0000044,2.0000296"
-       orientation="0,12"
-       id="guide4077" />
-    <sodipodi:guide
-       position="14.000004,2.0000296"
-       orientation="-12,0"
-       id="guide4079" />
-    <sodipodi:guide
-       position="14.000004,14.00003"
-       orientation="0,-12"
-       id="guide4081" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata3054">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Capa 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-421.71429,-531.79074)">
-    <path
-       style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke:none"
-       d="M 1 2 L 1 14 L 15 14 L 15 2 L 1 2 z M 2.7070312 3 L 13.292969 3 L 8 8.2929688 L 2.7070312 3 z M 2 3.7070312 L 5.9335938 7.640625 L 2 12.230469 L 2 3.7070312 z M 14 3.7070312 L 14 12.232422 L 10.066406 7.640625 L 14 3.7070312 z M 6.6425781 8.3496094 L 8 9.7070312 L 9.3574219 8.3496094 L 13.341797 13 L 2.65625 13 L 6.6425781 8.3496094 z "
-       transform="translate(421.71429,531.79074)"
-       id="rect4157"
-       class="ColorScheme-Text" />
-  </g>
-</svg>
diff --git a/mail/html/themes/breezy/svg/48/apps/internet-mail.svg b/mail/html/themes/breezy/svg/48/apps/internet-mail.svg
deleted file mode 100644
index 803e368357..0000000000
--- a/mail/html/themes/breezy/svg/48/apps/internet-mail.svg
+++ /dev/null
@@ -1,257 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg5453"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="internet-mail.svg"
-   inkscape:export-filename="internet-mail.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs5455">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4143">
-      <stop
-         style="stop-color:#197cf1;stop-opacity:1"
-         offset="0"
-         id="stop4145" />
-      <stop
-         style="stop-color:#20bcfa;stop-opacity:1"
-         offset="1"
-         id="stop4147" />
-    </linearGradient>
-    <linearGradient
-       gradientTransform="matrix(1.4285708,0,0,1.4285708,-163.67325,-235.92121)"
-       y2="517.79797"
-       x2="400.57144"
-       y1="545.79797"
-       x1="400.57144"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient3028"
-       xlink:href="#linearGradient4303"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient4227"
-       inkscape:collect="always">
-      <stop
-         id="stop4229"
-         offset="0"
-         style="stop-color:#292c2f;stop-opacity:1" />
-      <stop
-         id="stop4231"
-         offset="1"
-         style="stop-color:#000000;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4143"
-       id="linearGradient4287"
-       x1="409.57144"
-       y1="532.79797"
-       x2="409.57144"
-       y2="512.79797"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4227"
-       id="linearGradient4297"
-       x1="396.57147"
-       y1="510.798"
-       x2="421.57144"
-       y2="535.79797"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-384.57143,-499.798)" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4303">
-      <stop
-         style="stop-color:#c6cdd1;stop-opacity:1"
-         offset="0"
-         id="stop4305" />
-      <stop
-         style="stop-color:#e0e5e7;stop-opacity:1"
-         offset="1"
-         id="stop4307" />
-    </linearGradient>
-    <style
-       id="current-color-scheme"
-       type="text/css">
-      .ColorScheme-Text {
-        color:#4d4d4d;
-      }
-      .ColorScheme-Background {
-        color:#eff0f1;
-      }
-      .ColorScheme-Highlight {
-        color:#3daee9;
-      }
-      .ColorScheme-ViewText {
-        color:#31363b;
-      }
-      .ColorScheme-ViewBackground {
-        color:#fcfcfc;
-      }
-      .ColorScheme-ViewHover {
-        color:#93cee9;
-      }
-      .ColorScheme-ViewFocus{
-        color:#3daee9;
-      }
-      .ColorScheme-ButtonText {
-        color:#31363b;
-      }
-      .ColorScheme-ButtonBackground {
-        color:#eff0f1;
-      }
-      .ColorScheme-ButtonHover {
-        color:#93cee9;
-      }
-      .ColorScheme-ButtonFocus{
-        color:#3daee9;
-      }
-      </style>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="15.999999"
-     inkscape:cx="24.203816"
-     inkscape:cy="15.10496"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:window-width="1880"
-     inkscape:window-height="1051"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     inkscape:showpageshadow="false"
-     borderlayer="true"
-     showguides="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid4063" />
-    <sodipodi:guide
-       position="1.1650391e-05,47.999996"
-       orientation="4,0"
-       id="guide4146" />
-    <sodipodi:guide
-       position="1.1650391e-05,43.999996"
-       orientation="0,48"
-       id="guide4148" />
-    <sodipodi:guide
-       position="48.000012,43.999996"
-       orientation="-4,0"
-       id="guide4150" />
-    <sodipodi:guide
-       position="48.000012,47.999996"
-       orientation="0,-48"
-       id="guide4152" />
-    <sodipodi:guide
-       position="1.1650391e-05,4.0000264"
-       orientation="4,0"
-       id="guide4154" />
-    <sodipodi:guide
-       position="1.1650391e-05,2.6367188e-05"
-       orientation="0,48"
-       id="guide4156" />
-    <sodipodi:guide
-       position="48.000012,2.6367188e-05"
-       orientation="-4,0"
-       id="guide4158" />
-    <sodipodi:guide
-       position="48.000012,4.0000264"
-       orientation="0,-48"
-       id="guide4160" />
-    <sodipodi:guide
-       position="48.000012,48.000026"
-       orientation="0,-4"
-       id="guide4162" />
-    <sodipodi:guide
-       position="44.000012,48.000026"
-       orientation="48,0"
-       id="guide4164" />
-    <sodipodi:guide
-       position="44.000012,2.6367188e-05"
-       orientation="0,4"
-       id="guide4166" />
-    <sodipodi:guide
-       position="48.000012,2.6367188e-05"
-       orientation="-48,0"
-       id="guide4168" />
-    <sodipodi:guide
-       position="4.0000422,48.000026"
-       orientation="0,-4"
-       id="guide4170" />
-    <sodipodi:guide
-       position="4.2167969e-05,48.000026"
-       orientation="48,0"
-       id="guide4172" />
-    <sodipodi:guide
-       position="4.2167969e-05,2.6367188e-05"
-       orientation="0,4"
-       id="guide4174" />
-    <sodipodi:guide
-       position="4.0000422,2.6367188e-05"
-       orientation="-48,0"
-       id="guide4176" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata5458">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Capa 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-384.57143,-499.798)">
-    <rect
-       style="fill:url(#linearGradient3028);fill-opacity:1.0;stroke:none"
-       id="rect4130-0"
-       width="40"
-       height="40.000019"
-       x="388.57144"
-       y="503.78983"
-       ry="20" />
-    <path
-       style="opacity:0.2;fill:url(#linearGradient4297);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       d="M 36 15 L 35 32 L 12 33 L 22.966797 43.966797 C 22.967448 43.96683 22.968099 43.966764 22.96875 43.966797 C 23.310575 43.984012 23.65375 43.992188 24 43.992188 C 35.08 43.992188 44 35.072188 44 23.992188 C 44 23.651171 43.991312 23.311337 43.974609 22.974609 L 36 15 z "
-       transform="translate(384.57143,499.798)"
-       id="path4289" />
-    <path
-       inkscape:connector-curvature="0"
-       style="text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:url(#linearGradient4287);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
-       d="m 396.57143,514.798 0,18 24,0 0,-18 -24,0 z m 2.12109,1.5 19.75782,0 -9.87891,9.87891 -9.87891,-9.87891 z m -0.62109,1.5 6,6 -6,6 0,-12 z m 21,0 0,12 -6,-6 6,-6 z m -13.93946,7.06055 3.43946,3.43945 3.43946,-3.43945 6.43945,6.43945 -19.75782,0 6.43946,-6.43945 z"
-       id="rect4144"
-       class="ColorScheme-Text" />
-  </g>
-</svg>
diff --git a/mail/html/themes/legacy/icons/16/apps/internet-mail.png b/mail/html/themes/legacy/icons/16/apps/internet-mail.png
deleted file mode 100644
index 859251fe0fcdbdf20de5040a802825ce977c1a24..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 550
zcmV+>0@?kEP)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV00006VoOIv00000
z008+zyMF)x010qNS#tmY3labT3lag+-G2N4000McNliru)dmI(7dGcFWh(#x0kcU&
zK~y-)#gjou6k!;KpIJutcW@Wiv8{ur>R4zO-SE_shK7L#K^bOYL`2|4i#%^^+d&Zo
zk&sSy=pcw4>ZZxwY}*bA=G8P<t3P7?9dl<qsDp!}5D0$9_xs-Ge}6tcIPTJd#B?TA
z599(`7oH9bem<0#&ZO$onUot;=}gMqfd?npefdfMGnN+f{Fahp(dOs+FaG?Mbl<tp
zi<i%RNwkB^xqO~@{1jDHF*GfNQZ}ksB$-V5Ao`vFx!bq8`S5;*<>ha*v|J@tT}?%W
zfngW`WV2bOr`~d}r<aM>uX2F47l3KjU|BXjcOQ7B-6|9cn5Kyc>qH_^Pxk?Y5HvP6
z@NQ<BOUcUsSeAuS3Z)c_U%$|Ptpg!MFaY30JWk?bf;W?soIP_Ifby`;%E}KquXmz{
z{F~Q<RvC>%F=Lf9UupKV(UBp_bq(9L5mb75XrJ44nVXyC#?3BIa!Q*#eDs))^YbWW
z`NsDFJ}oTJ+SbPAhK=hul>Tj?q2ZJq>dv3z`|8@kUyxGLkZ9U&=waVr86b=ZH79G4
oQU(Hs$Hqtd{^O2@kK`J+0Q~)|WKOu)r~m)}07*qoM6N<$g3M6(EC2ui

diff --git a/mail/html/themes/legacy/icons/48/apps/internet-mail.png b/mail/html/themes/legacy/icons/48/apps/internet-mail.png
deleted file mode 100644
index 7f4df1620e816f91972f76237aa44fda7908a227..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 2397
zcmV-j38MCiP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW
zd<bNS00009a7bBm000ie000ie0hKEb8vp<Z|4BqaRA_<in%Qq$)g8w__s-^-u|1yg
zc)TT(jK>T13?6KO!9i`Lf)El*n-Bt}l~DUoRTPOLRq8|khV%(37z9d#(yB#5YDM1?
z;v|kp05w2>CM8Zty~LS#nSH(Yo<7Wy@%YYorD`R9($T#>>-Tfc`JH91;s4yEovv_V
z;uof+C08>5F^K8pnVz1Gy!-CE>Q1z`qX5T`z4f!an*Xhm%Q=N6PysZ75CTnrKwyxO
zG))W32IDVZe)-o^+ii140FE4a)!N!}&-<a#`}YqG1q}v+0RSPyn!Kv2qN*x?fB$cp
zTk~^ozw+vDezl#pw+(RQ$Prh&$2s-nQwIj^_C}J)B#NRSgeV71(^ma$wOVOxY~){8
zuc+syCf|GMrB@DbwSB{O#2-C+w7bz}`sed6yy%r>nM5Lis;aBR>Vf2PIg-gF-QBxn
zuXpcIdz<UP$y29a|E~fZf8z~bgUx*D`4?VvWilBunM_ULdJvkXkw_$HX=#yy_lDYA
zUCjqiZ2@9S0B^s2w9jI-T|9L7$F1pfnp`foA@O=sDw#~u+}tb$g2SFxSM!ffeK0xk
ztpc1lal&b}m@XZ7<~esNmD;p;J&;5qfy3dD0)b$Ai=*+$)01c4{8j)aCVt=9XtRI%
z<kQb|Y^CSxfyCo+9F7)gXeiL(X>*R9`e5>pI|?u{F<~+pOg9c4e!-K^=Sip2J0iXs
zqP4YE>gwwDcXqb-pFVx&y&VI1=HOHRKK$HIJ&K}`OeS@g$DM$PMx*rf_+_KPIMD0&
znNLriIlXOwcaFdLkEeh5Y`@WHBp#2~b;_Lxu~-bhzt@;fr$+nxduGm_J^%TZ0gnIS
z&A&eO*c0DxYHF5NR#w(sRdymMih`mj^z`^G;oA%Q`}%q&FI@O&ZqooK-g)bHV`C5h
zynEMf)15naHnlu%G^nadB9UNWVS!jIhN37~EEclaEEbD}-rj!O_3P7*heG$ge&NCe
zWy1i+j=d4s)$KhNyf<W9US6)d!)_KNo6WMcw8YHJ3}&+#zu(Wu$OwTzfOtGkHk(D3
zWm2gW4u=Duug5Wc?dsT>Gw0sfFu>tw4^I8y(Z@TJ$t2lqcFRs#niBDNoVmF<VzC$<
z9UTONK}JVM@%el-Hy2Ldnx^4)yZPdaFR<I~0L0^Qy1KeR;N9KTarOL%7rw02Y19+{
z+G|I8J?)*YQZH;pcqWq}5{a<9yo}fDrLV7#@$qqtMq^p5qA06I3&3Kr(B9sTq9~M3
zwc&7>`$k4hQ|HhA1o+Fk002VMFq_Tf)jTrtx}x*>Jc&eta5#+3X2b9I69@#b*=&XS
zieR~14pmjlag|SiY&OgA@GvJ&o}{g<4Iu<BmkSV}2~)MsngA5*^te6ToViJZxnYg-
zrPFCvR#r$P5_r8{1_lNgA0J1S<+3nEQOb9KYO#6%s;XkQ+i^ObsH%#?;lO6IkxC{J
z(%R#H?GY#vm`o<zZa24X-NGmr_JMFXjMM4F=kpN^25D$$D3`13<;tm{C$?5vI-MpI
z3UTq`MFs{23iTAyHv@3D5l54QXe>%(B|;z&VBfxdNRm`euk2+#(e=dY#bvWuW@l#^
z92{JgN7A`~)t*AEZeVxUZlbX$mIey|`FtK#RZ$dWT|t`#xN+kK4u=D?*<6)xGXUal
z<)uo7`iD4k{tSbCgSeco9T8idHZwDWBuThju2pFubT7biJ%H+!24HMtj88uMgh(`k
zrfF+}s;av28%dj=pC^$>uxHPnRe%*BTl0a+r_pF+Y-Eh7kEYmn|30h@R{ioql>MYK
zuKK<7TwGiv91ar-g=*vjX;V|EMneG2P0fUcLY%vJjt55`#B4IJa%xGEY64WJ2_c9^
zqs-3E5)1~*>3Yz5Ru`aZ_*T7lws+!-`uO;>j|trq!elb75vf;Sby_NwVt#%epU;QI
zVyWvldJ}%bBT)SgFxWT9N@Ru0S1&W*8z}dx9zbQ!S1y;~aG18XHr#G^&9?52)}~gW
zwLPH+^uT=&F!|vm*KS_J)9PXN_AGfNU$fdm!GbTfSX;2$?d;vVx9(_{J7zN*Sv}E}
z?*@Z`hejXb+{JTzGye_#y?*?A{6(FmwHP!}IN&8yNz&;wbGPS6WE1rC_SCI^b==xH
zv>_j;H;sf4%q`3z8)Y7S_)$7M9pxKUX@@So8*N4!ZH)*a@OFFo`o`B>`tlOPgTu78
zw5|)F32hBQO#qG6$6URNRaNEkmCKmSCJsGu2$RV~G#Vw7$<!=UX??yvS{yBW_4QZu
z`}*;;dUQLe9H+C9ZD=Rf6O+ki`25P}3=a<D-Q^{h%dxn)SUz>?iPi&hJKc;1N4awC
z3i*7VuJ*2)OQ+shsP<0G+MT!*BC!b9XRh<e_a0$)_ikdb7^Q1xWx0BFRHj)iR)+5x
zCY4EXbN*%>J<`SilF6h2^c$SNJ&$aV*+0G?qru4H;^KyHZS{a;S;p`6W3$+5LWqJ7
ztb))3uuV^Y)1;{dhbc9nX&Se}x9Iit;@|5hkw~z(xVYw9z-C12ncL;Y<0>r2)p<0b
z836}iF2z;*fEBQ>tSsAAA*516ilUI$@(c%t(KL;vr6uzD{JN`Ct+e&b+F+&A+{sd8
z38%w}EX#!rP}7V+BZW~AK)w>d2s8lJWHM!?2$0L?FquuXwX~5+rOLm|ttWJ|qN~jy
z8*n?_B-2R@a^Z5XX_|pTC#yiN8bGG-GmBACRHG>FdM2X@8JS2VqI*EAWgE@6o;BH<
z?oK--88DS}0#YS_C<YB6ol2>SqR`mbsJkDm_pBASRa;qE0)$l5SJEmf0Tdt)<nG*A
zUWi4b3xEF8aWqwx1fU6l&;&vhKM@I0I4%hdO=yL*(#oY4f4L}um-Cm(7adzGmPLR{
zF@I?TrJP?Y){)KTJ_WKArcVymZVV+Su~C?74aGQ#ZGI5khN%>KJqKif6p$<i-OsEt
z1po_$<?4R{K&3E4vJ@aPrNnxkCQ$$|6vK}HTfzoSp}1rg-@mi(Y$xqMC5=cH3el8)
P00000NkvXXu0mjf{+FC7

diff --git a/mail/html/themes/legacy/svg/internet-mail.svg b/mail/html/themes/legacy/svg/internet-mail.svg
deleted file mode 100644
index 8d5ea8cd32..0000000000
--- a/mail/html/themes/legacy/svg/internet-mail.svg
+++ /dev/null
@@ -1,440 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   sodipodi:docname="internet-mail.svg"
-   sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/apps"
-   inkscape:version="0.46"
-   sodipodi:version="0.32"
-   id="svg5816"
-   height="48px"
-   width="48px"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs3">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective73" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5060"
-       id="radialGradient6719"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
-       cx="605.71429"
-       cy="486.64789"
-       fx="605.71429"
-       fy="486.64789"
-       r="117.14286" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5060">
-      <stop
-         style="stop-color:black;stop-opacity:1;"
-         offset="0"
-         id="stop5062" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop5064" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5060"
-       id="radialGradient6717"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
-       cx="605.71429"
-       cy="486.64789"
-       fx="605.71429"
-       fy="486.64789"
-       r="117.14286" />
-    <linearGradient
-       id="linearGradient5048">
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="0"
-         id="stop5050" />
-      <stop
-         id="stop5056"
-         offset="0.5"
-         style="stop-color:black;stop-opacity:1;" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop5052" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5048"
-       id="linearGradient6715"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
-       x1="302.85715"
-       y1="366.64789"
-       x2="302.85715"
-       y2="609.50507" />
-    <linearGradient
-       id="linearGradient28260">
-      <stop
-         style="stop-color:#9aa29a;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop28262" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop28264" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient28254">
-      <stop
-         id="stop28256"
-         offset="0.0000000"
-         style="stop-color:#9aa29a;stop-opacity:1.0000000;" />
-      <stop
-         id="stop28258"
-         offset="1.0000000"
-         style="stop-color:none" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2274">
-      <stop
-         style="stop-color:#000000;stop-opacity:0.12871288;"
-         offset="0.0000000"
-         id="stop2276" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0.0000000;"
-         offset="1.0000000"
-         id="stop2278" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient9749">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop9751" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop9753" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2152">
-      <stop
-         style="stop-color:#9aa29a;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop2154" />
-      <stop
-         style="stop-color:#b5beb5;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop2156" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2166">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2168" />
-      <stop
-         style="stop-color:#dcdcdc;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop2170" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient18913">
-      <stop
-         style="stop-color:#ededed;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop18915" />
-      <stop
-         style="stop-color:#c8c8c8;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop18917" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2136">
-      <stop
-         style="stop-color:#989690;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop2138" />
-      <stop
-         style="stop-color:#656460;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop2140" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient15107">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop15109" />
-      <stop
-         style="stop-color:#e2e2e2;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop15111" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient10691"
-       inkscape:collect="always">
-      <stop
-         id="stop10693"
-         offset="0"
-         style="stop-color:#000000;stop-opacity:1;" />
-      <stop
-         id="stop10695"
-         offset="1"
-         style="stop-color:#000000;stop-opacity:0;" />
-    </linearGradient>
-    <radialGradient
-       r="7.2284161"
-       fy="73.615714"
-       fx="6.7027131"
-       cy="73.615714"
-       cx="6.7027131"
-       gradientTransform="scale(1.902215,0.525703)"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient11382"
-       xlink:href="#linearGradient10691"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="32.203162"
-       x2="9.7619219"
-       y1="37.784682"
-       x1="8.7803760"
-       gradientTransform="matrix(2.394900,0.000000,0.000000,0.781058,2.879512,0.343005)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27463"
-       xlink:href="#linearGradient2274"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="24.132717"
-       x2="21.111549"
-       y1="13.686079"
-       x1="11.233107"
-       gradientTransform="matrix(1.370928,0.000000,0.000000,1.443758,2.431133,-0.140786)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27468"
-       xlink:href="#linearGradient9749"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="52.090678"
-       x2="9.8855033"
-       y1="37.197018"
-       x1="8.9156475"
-       gradientTransform="matrix(2.454781,0.000000,0.000000,0.762004,2.879512,0.343005)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27471"
-       xlink:href="#linearGradient2152"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="52.090678"
-       x2="9.8855033"
-       y1="37.197018"
-       x1="8.9156475"
-       gradientTransform="matrix(2.454781,0.000000,0.000000,0.762004,2.879512,0.343005)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27474"
-       xlink:href="#linearGradient2152"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="29.568739"
-       x2="15.310744"
-       y1="15.148383"
-       x1="10.184240"
-       gradientTransform="matrix(1.819266,0.000000,0.000000,1.028193,2.879512,0.343005)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27477"
-       xlink:href="#linearGradient2166"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="17.876846"
-       x2="13.467486"
-       y1="7.2310905"
-       x1="5.8266134"
-       gradientTransform="matrix(1.570607,0.000000,0.000000,1.190976,2.879512,0.343005)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27483"
-       xlink:href="#linearGradient18913"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="26.022910"
-       x2="18.475286"
-       y1="4.7461626"
-       x1="11.572842"
-       gradientTransform="matrix(1.343475,0.000000,0.000000,1.417854,2.879511,0.314599)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27486"
-       xlink:href="#linearGradient15107"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="15.257116"
-       x2="30.599684"
-       y1="15.257116"
-       x1="2.0618774"
-       gradientTransform="matrix(1.343475,0.000000,0.000000,1.417854,2.879511,0.314599)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient27488"
-       xlink:href="#linearGradient2136"
-       inkscape:collect="always" />
-  </defs>
-  <sodipodi:namedview
-     inkscape:window-y="105"
-     inkscape:window-x="331"
-     inkscape:window-height="743"
-     inkscape:window-width="872"
-     inkscape:document-units="px"
-     inkscape:grid-bbox="true"
-     showgrid="false"
-     inkscape:current-layer="layer1"
-     inkscape:cy="18.816166"
-     inkscape:cx="28.384904"
-     inkscape:zoom="1"
-     inkscape:pageshadow="2"
-     inkscape:pageopacity="0.0"
-     borderopacity="1.0"
-     bordercolor="#666666"
-     pagecolor="#ffffff"
-     id="base" />
-  <metadata
-     id="metadata4">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title>Mail</dc:title>
-        <dc:creator>
-          <cc:Agent>
-            <dc:title>Jakub Steiner</dc:title>
-          </cc:Agent>
-        </dc:creator>
-        <dc:contributor>
-          <cc:Agent>
-            <dc:title>Andreas Nilsson</dc:title>
-          </cc:Agent>
-        </dc:contributor>
-        <cc:license
-           rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
-        <dc:subject>
-          <rdf:Bag>
-            <rdf:li>mail</rdf:li>
-            <rdf:li>e-mail</rdf:li>
-            <rdf:li>MUA</rdf:li>
-          </rdf:Bag>
-        </dc:subject>
-      </cc:Work>
-      <cc:License
-         rdf:about="http://creativecommons.org/licenses/publicdomain/">
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#Reproduction" />
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#Distribution" />
-        <cc:permits
-           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
-      </cc:License>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:groupmode="layer"
-     inkscape:label="Layer 1"
-     id="layer1">
-    <g
-       transform="matrix(2.269972e-2,0,0,2.297929e-2,44.98918,37.78447)"
-       id="g6707">
-      <rect
-         style="opacity:0.40206185;color:black;fill:url(#linearGradient6715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-         id="rect6709"
-         width="1339.6335"
-         height="478.35718"
-         x="-1559.2523"
-         y="-150.69685" />
-      <path
-         style="opacity:0.40206185;color:black;fill:url(#radialGradient6717);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-         d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z "
-         id="path6711"
-         sodipodi:nodetypes="cccc" />
-      <path
-         sodipodi:nodetypes="cccc"
-         id="path6713"
-         d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z "
-         style="opacity:0.40206185;color:black;fill:url(#radialGradient6719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
-    </g>
-    <path
-       style="fill:url(#linearGradient27486);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient27488);stroke-width:0.85660440;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 6.3334395,16.972251 L 6.3334395,41.481799 L 43.305555,41.481799 L 43.244499,17.089859 C 43.241050,15.712272 31.395999,2.4121110 29.210877,2.4121110 L 20.659391,2.4121110 C 18.362072,2.4121110 6.3334395,15.673953 6.3334395,16.972251 z "
-       id="path12723"
-       sodipodi:nodetypes="ccczzzz" />
-    <path
-       style="fill:url(#linearGradient27483);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
-       d="M 6.9230610,16.787103 C 6.5250222,16.356975 18.809966,3.0935378 20.667210,3.0935378 L 29.042965,3.0935378 C 30.790449,3.0935378 43.079567,16.221603 42.470079,16.978956 L 31.608858,30.475150 L 19.295373,30.156846 L 6.9230610,16.787103 z "
-       id="path18153"
-       sodipodi:nodetypes="czzzccz" />
-    <path
-       style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 19.077530,30.017590 L 11.744526,21.271586 L 36.562951,14.335513 L 39.592221,20.551966 L 32.175956,29.992298"
-       id="path2164"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 18.291767,29.836259 L 10.809167,21.026146 L 35.456637,14.132812 L 38.630714,20.403811 L 31.390193,29.810968"
-       id="path2162"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 18.775313,29.957146 L 11.100386,21.296624 L 36.068405,14.232329 L 39.354114,20.824726 L 31.873739,29.931855"
-       id="path2160"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:url(#linearGradient27477);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 18.593984,30.440693 L 11.260975,21.694689 L 35.972554,14.801355 L 39.083369,21.188770 L 31.963198,30.174701"
-       id="path15105"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:url(#linearGradient27474);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 20.488434,29.064331 L 7.0924698,40.036319 L 21.001312,30.432013 L 30.019470,30.432013 L 42.438517,39.914206 L 30.575092,29.064331 L 20.488434,29.064331 z "
-       id="path14245"
-       sodipodi:nodetypes="ccccccc" />
-    <path
-       style="color:#000000;fill:url(#linearGradient27471);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
-       d="M 6.9634751,16.885144 L 18.479648,31.201334 L 19.548151,30.346532 L 6.9634751,16.885144 z "
-       id="path14339"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient27468);stroke-width:0.85660428;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 7.3077115,17.131415 L 7.3388644,40.342421 L 42.283659,40.342421 L 42.221353,17.257512 C 42.219329,16.508413 31.005032,3.4591863 28.837233,3.4591863 L 20.941579,3.4591863 C 18.689313,3.4591863 7.3066655,16.351067 7.3077115,17.131415 z "
-       id="path15103"
-       sodipodi:nodetypes="ccczzzz" />
-    <path
-       style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
-       d="M 20.957271,30.452732 L 9.0157722,38.723588 L 11.235205,38.729695 L 21.233330,31.860755 L 30.055238,30.437917 L 20.957271,30.452732 z "
-       id="path17393"
-       sodipodi:nodetypes="cccccc" />
-    <path
-       style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
-       d="M 11.427536,21.670296 L 12.752479,23.080719 L 35.543311,16.196529 L 38.458445,21.878896 L 39.072496,21.166981 L 36.003081,14.789145 L 11.427536,21.670296 z "
-       id="path2174"
-       sodipodi:nodetypes="ccccccc" />
-    <path
-       style="fill:url(#linearGradient27463);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
-       d="M 13.308098,23.636340 L 19.334450,30.090093 L 20.531174,29.064331 L 30.617831,29.107071 L 31.429893,29.833651 L 35.404721,25.089502 C 34.250740,23.679081 13.308098,23.636340 13.308098,23.636340 z "
-       id="path2272"
-       sodipodi:nodetypes="ccccccc" />
-    <path
-       sodipodi:nodetypes="cccc"
-       id="path27492"
-       d="M 41.812936,17.847945 L 31.861315,30.479232 L 30.792812,29.624431 L 41.812936,17.847945 z "
-       style="color:#000000;fill:#b1b1b1;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible" />
-  </g>
-</svg>
-- 
GitLab


From 66123d9626163420ad063aa042af209e3327c4eb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Tue, 27 Aug 2019 08:02:53 +0000
Subject: [PATCH 12/73] Merge branch
 '5991-orcid-last-character-may-be-x-and-not-a-number' into '1.4-dev'

Resolve "ORCID last character may be 'X' and not a number"

See merge request fusiondirectory/fd-plugins!611

(cherry picked from commit 9fa74474c3edf9b0bf85bc9fec9b6a55fbd2de34)

3cf05bd7 :sparkles: feat(personal) Fix ORCID value check
---
 .../personal/personal/class_socialHandlers.inc | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/personal/personal/personal/class_socialHandlers.inc b/personal/personal/personal/class_socialHandlers.inc
index 7db2b00918..5afc9b99ff 100644
--- a/personal/personal/personal/class_socialHandlers.inc
+++ b/personal/personal/personal/class_socialHandlers.inc
@@ -141,9 +141,25 @@ class socialHandler_orcid extends socialHandler
 
   function validate($value)
   {
-    if (!preg_match('/^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}$/', $value)) {
+    if (!preg_match('/^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$/', $value)) {
       throw new socialHandlerInvalidValueException(_('ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits'));
     }
+    if (static::orcidCheckSum($value) != substr($value, -1)) {
+      throw new socialHandlerInvalidValueException(_('Incorrect ORCID value, the checksum does not match'));
+    }
     return $value;
   }
+
+  public static function orcidCheckSum (string $orcid): string
+  {
+    /* Remove hyphens, remove last digit, convert to array */
+    $baseDigits = str_split(str_replace('-', '', substr($orcid, 0, -1)));
+    $sum = 0;
+    foreach ($baseDigits as $baseDigit) {
+      $sum = ($sum + $baseDigit) * 2;
+    }
+    $remainder  = $sum % 11;
+    $result     = (12 - $remainder) % 11;
+    return (($result == 10) ? "X" : (string)$result);
+  }
 }
-- 
GitLab


From 7cb91767c3f6d7ac7495a5712980ffef11c9e700 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 29 Aug 2019 10:08:43 +0200
Subject: [PATCH 13/73] :ambulance: fix(personal) Remove PHP7 only syntax

issue #5991
---
 personal/personal/personal/class_socialHandlers.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/personal/personal/personal/class_socialHandlers.inc b/personal/personal/personal/class_socialHandlers.inc
index 5afc9b99ff..237f967061 100644
--- a/personal/personal/personal/class_socialHandlers.inc
+++ b/personal/personal/personal/class_socialHandlers.inc
@@ -150,7 +150,7 @@ class socialHandler_orcid extends socialHandler
     return $value;
   }
 
-  public static function orcidCheckSum (string $orcid): string
+  public static function orcidCheckSum ($orcid)
   {
     /* Remove hyphens, remove last digit, convert to array */
     $baseDigits = str_split(str_replace('-', '', substr($orcid, 0, -1)));
-- 
GitLab


From 3a8f48e9289dfed4a7f38d7d295c2f122dcceb70 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 29 Aug 2019 12:02:30 +0200
Subject: [PATCH 14/73] :ambulance: fix(argonaut) Adapt argonaut to renaming of
 getTabFooter

issue #5993
---
 argonaut/addons/argonaut/class_argonautQueue.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/argonaut/addons/argonaut/class_argonautQueue.inc b/argonaut/addons/argonaut/class_argonautQueue.inc
index a66d4f9eb6..517c214db6 100644
--- a/argonaut/addons/argonaut/class_argonautQueue.inc
+++ b/argonaut/addons/argonaut/class_argonautQueue.inc
@@ -248,14 +248,14 @@ class argonautQueue extends simpleManagement
     $this->closeDialogs();
   }
 
-  protected function _getTabFooter()
+  protected function getTabFooter()
   {
     if ($this->dialogObject instanceof faiLogView) {
       return  '<p class="plugbottom">'.
               ' <input type="submit" name="edit_cancel" value="'.msgPool::backButton().'"/>'.
               '</p>';
     } else {
-      return parent::_getTabFooter();
+      return parent::getTabFooter();
     }
   }
 
-- 
GitLab


From 7120dc739dc83b3959a4d310df22156797ceeaf9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Thu, 29 Aug 2019 11:00:20 +0200
Subject: [PATCH 15/73] :ambulance: fix(mail) Improve texts in email
 configuration tab

issue #5966
---
 mail/config/mail/class_mailPluginConfig.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/mail/config/mail/class_mailPluginConfig.inc b/mail/config/mail/class_mailPluginConfig.inc
index 673ebeae0c..0ad357df7a 100644
--- a/mail/config/mail/class_mailPluginConfig.inc
+++ b/mail/config/mail/class_mailPluginConfig.inc
@@ -47,18 +47,18 @@ class mailPluginConfig extends simplePlugin
             array('mail', 'uid')
           ),
           new StringAttribute (
-            _('Mail user template'),
-            _('Override the user account creation syntax.'),
+            _('User account template'),
+            _('Override the user account creation syntax. Default is %PREFIX%%UATTRIB%.'),
             'fdMailUserCreation'
           ),
           new StringAttribute (
-            _('Mail folder template'),
-            _('Override the methods default account creation syntax.'),
+            _('Group account template'),
+            _('Override the group account creation syntax. Default is %PREFIX%%UATTRIB%.'),
             'fdMailFolderCreation'
           ),
           new BooleanAttribute (
             _('Use cyrus UNIX style'),
-            _("Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."),
+            _('Determines if "foo/bar" or "foo.bar" should be uses as namespaces in IMAP.'),
             'fdCyrusUseSlashes'
           ),
           new BooleanAttribute (
-- 
GitLab


From 4c0461c31b99a03682b2495cd9e84c08a203a4c4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Tue, 10 Sep 2019 14:26:07 +0200
Subject: [PATCH 16/73] :ambulance: fix(dovecot) Fix getting quota in dovecot

issue #5966
---
 .../mail/mail-methods/class_mail-methods-dovecot.inc | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 91efb0473f..1a2818d52b 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -162,10 +162,20 @@ class mailMethodDovecot extends mailMethod
     }
   }
 
+  /* Get quota in MB */
+  public function getQuota ($quota)
+  {
+    parent::getQuota($quota);
+    if (!$this->quota_loaded) {
+      $this->loadQuota();
+    }
+    return $this->quotaValue;
+  }
+
   /* Get quota usage in MB */
   public function getQuotaUsage()
   {
-    mailMethod::getQuotaUsage();
+    parent::getQuotaUsage();
     if (!$this->quota_loaded) {
       $this->loadQuota();
     }
-- 
GitLab


From 10ae68c320bef766026f9e791d190a5645ba4f14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Wed, 25 Sep 2019 11:31:05 +0200
Subject: [PATCH 17/73] :sparkles: feat(sinaps) Add diffusion field mapping to
 configuration

issue #5956
---
 sinaps/config/sinaps/class_sinapsConfig.inc   | 90 ++++++++++++++++---
 sinaps/contrib/openldap/sinaps-fd-conf.schema | 15 +++-
 .../class_sinapsDiffusionHandlerJob.inc       | 15 +++-
 sinaps/include/class_sinapsRequest.inc        | 19 +---
 4 files changed, 109 insertions(+), 30 deletions(-)

diff --git a/sinaps/config/sinaps/class_sinapsConfig.inc b/sinaps/config/sinaps/class_sinapsConfig.inc
index 8dd2a5f1b0..b5e69cff71 100644
--- a/sinaps/config/sinaps/class_sinapsConfig.inc
+++ b/sinaps/config/sinaps/class_sinapsConfig.inc
@@ -61,19 +61,24 @@ class sinapsConfig extends simplePlugin
             'fdSinapsIdentifiantApplication', TRUE,
             'FUSIONDIRECTORY'
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new StringAttribute(
+            _('UUID prefix'), _('Prefix used for UUID in supannRefId'),
+            'fdSinapsUuidPrefix', TRUE,
+            'LDAPUUID'
+          ),
+        )
+      ),
+      'diffusion' => array(
+        'name'  => _('Diffusion'),
+        'attrs' => array(
+          new SetAttribute(
+            new StringAttribute(
               _('Applications identifiers to sync'), _('List of applications identifiers for which cross references should be synced from SINAPS'),
               'fdSinapsIdentifiantApplicationSync', FALSE
             ),
             array('SAP')
           ),
-          new StringAttribute (
-            _('UUID prefix'), _('Prefix used for UUID in supannRefId'),
-            'fdSinapsUuidPrefix', TRUE,
-            'LDAPUUID'
-          ),
-          new StringAttribute (
+          new StringAttribute(
             _('User base'), _('Base in which users should be created when receiving a SINAPS diffusion'),
             'fdSinapsUserBase', TRUE,
             $config->current['BASE']
@@ -95,6 +100,70 @@ class sinapsConfig extends simplePlugin
             ),
             array('PR', 'EXT/PRA')
           ),
+          new OrderedArrayAttribute(
+            new PipeSeparatedCompositeAttribute(
+              _('Which field to sync in diffusion'),
+              'fdSinapsUserDiffusionMap',
+              array(
+                new StringAttribute(
+                  '', _('Name of the Sinaps attribute'),
+                  'fdSinapsUserDiffusionMap_sinaps', TRUE
+                ),
+                new StringAttribute(
+                  '', _('Name of the FD tab'),
+                  'fdSinapsUserDiffusionMap_tab', TRUE
+                ),
+                new StringAttribute(
+                  '', _('Name of the FD field'),
+                  'fdSinapsUserDiffusionMap_field', TRUE
+                ),
+              ),
+              '',
+              _('User field mapping')
+            ),
+            // no order
+            FALSE,
+            array(
+              'civilite|supannAccount|supannCivilite',
+              'nomUsage|user|sn',
+              'dateNaissance|personalInfo|dateOfBirth',
+              'sexe|personalInfo|gender'
+            ),
+            TRUE
+          ),
+          new OrderedArrayAttribute(
+            new PipeSeparatedCompositeAttribute(
+              _('Which field to sync in diffusion'),
+              'fdSinapsStructureDiffusionMap',
+              array(
+                new StringAttribute(
+                  '', _('Name of the Sinaps attribute'),
+                  'fdSinapsStructureDiffusionMap_sinaps', TRUE
+                ),
+                new StringAttribute(
+                  '', _('Name of the FD tab'),
+                  'fdSinapsStructureDiffusionMap_tab', TRUE
+                ),
+                new StringAttribute(
+                  '', _('Name of the FD field'),
+                  'fdSinapsStructureDiffusionMap_field', TRUE
+                ),
+              ),
+              '',
+              _('Structure field mapping')
+            ),
+            // no order
+            FALSE,
+            array(
+              'libelle20|entite|ou',
+              'descriptifLong|entite|description',
+              'codeStructure|entite|supannCodeEntite',
+              'codeSousType|entite|supannTypeEntite',
+              'dateDebutValidite|supannStructureExt|fdSupannStartDate',
+              'dateFinValidite|supannStructureExt|fdSupannEndDate',
+            ),
+            TRUE
+          ),
         )
       ),
       'acquisition' => array(
@@ -151,11 +220,12 @@ class sinapsConfig extends simplePlugin
       $attributesInfo = $this->getAttributesInfo();
     }
     $userTemplates = objects::getTemplates('user');
-    $attributesInfo['main']['attrs'][7]->setChoices(array_keys($userTemplates), array_values($userTemplates));
+    $attributesInfo['diffusion']['attrs'][2]->setChoices(array_keys($userTemplates), array_values($userTemplates));
 
     parent::__construct($dn, $object, $parent, $mainTab, $attributesInfo);
 
     $this->attributesAccess['fdSinapsAcquisitionContactMethodMap']->setHeaders(array(_('LDAP'), _('Sinaps')));
+    $this->attributesAccess['fdSinapsUserDiffusionMap']->setHeaders(array(_('Sinaps'), _('Tab'), _('Field')));
+    $this->attributesAccess['fdSinapsStructureDiffusionMap']->setHeaders(array(_('Sinaps'), _('Tab'), _('Field')));
   }
 }
-?>
diff --git a/sinaps/contrib/openldap/sinaps-fd-conf.schema b/sinaps/contrib/openldap/sinaps-fd-conf.schema
index 1aaad5900a..586a1873b9 100644
--- a/sinaps/contrib/openldap/sinaps-fd-conf.schema
+++ b/sinaps/contrib/openldap/sinaps-fd-conf.schema
@@ -106,6 +106,18 @@ attributetype ( 1.3.6.1.4.1.38414.65.1.16 NAME 'fdSinapsUserRole'
   SUBSTR caseExactSubstringsMatch
   SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
 
+attributetype ( 1.3.6.1.4.1.38414.65.1.17 NAME 'fdSinapsUserDiffusionMap'
+  DESC 'FusionDirectory - Which field to sync for users in diffusion'
+  EQUALITY caseExactMatch
+  SUBSTR caseExactSubstringsMatch
+  SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
+
+attributetype ( 1.3.6.1.4.1.38414.65.1.18 NAME 'fdSinapsStructureDiffusionMap'
+  DESC 'FusionDirectory - Which field to sync for structures in diffusion'
+  EQUALITY caseExactMatch
+  SUBSTR caseExactSubstringsMatch
+  SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
+
 objectclass ( 1.3.6.1.4.1.38414.65.2.1 NAME 'fdSinapsPluginConf'
   DESC 'FusionDirectory sinaps plugin configuration'
   SUP top AUXILIARY
@@ -119,5 +131,6 @@ objectclass ( 1.3.6.1.4.1.38414.65.2.1 NAME 'fdSinapsPluginConf'
     fdSinapsDryRun $
     fdSinapsUserBase $ fdSinapsUserTemplate $
     fdSinapsIdentifiantApplicationSync $ fdSinapsAcquisitionTypeExterne $
-    fdSinapsAcquisitionContactMethodMap $ fdSinapsUserRole
+    fdSinapsAcquisitionContactMethodMap $ fdSinapsUserRole $
+    fdSinapsUserDiffusionMap $ fdSinapsStructureDiffusionMap
   ) )
diff --git a/sinaps/include/class_sinapsDiffusionHandlerJob.inc b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
index 314a823d99..3e3a55a2c9 100644
--- a/sinaps/include/class_sinapsDiffusionHandlerJob.inc
+++ b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
@@ -48,6 +48,17 @@ class sinapsDiffusionHandlerJob
     $this->userTemplate               = $config->get_cfg_value('SinapsUserTemplate');
     $this->identifiantApplicationSync = $config->get_cfg_value('SinapsIdentifiantApplicationSync', array());
     $this->userRoles                  = $config->get_cfg_value('SinapsUserRole', array('PR', 'EXT/PRA'));
+
+    $this->userMapping = array();
+    foreach ($config->get_cfg_value('SinapsUserDiffusionMap', array()) as $line) {
+      list($sinaps, $tab, $field) = explode('|', $line);
+      $this->userMapping[$sinaps] = array($tab,$field);
+    }
+    $this->structureMapping = array();
+    foreach ($config->get_cfg_value('SinapsStructureDiffusionMap', array()) as $line) {
+      list($sinaps, $tab, $field) = explode('|', $line);
+      $this->structureMapping[$sinaps] = array($tab,$field);
+    }
   }
 
   function handleRequest()
@@ -57,9 +68,9 @@ class sinapsDiffusionHandlerJob
     }
 
     if ($this->request->codeDomaine() == 'STRUCTURE') {
-      $this->handleStructureDiffusion($this->request->getSupannEntiteValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite')));
+      $this->handleStructureDiffusion($this->request->getSupannEntiteValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite'), $this->structureMapping));
     } elseif ($this->request->codeDomaine() == 'PERSONNE') {
-      $this->handlePersonneDiffusion($this->request->getUserValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite'), $this->userRoles));
+      $this->handlePersonneDiffusion($this->request->getUserValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite'), $this->userRoles, $this->userMapping));
     } else {
       throw new FusionDirectoryException('Invalid domain '.$this->request->codeDomaine());
     }
diff --git a/sinaps/include/class_sinapsRequest.inc b/sinaps/include/class_sinapsRequest.inc
index d910af6403..90a0a991b5 100644
--- a/sinaps/include/class_sinapsRequest.inc
+++ b/sinaps/include/class_sinapsRequest.inc
@@ -115,19 +115,10 @@ class sinapsRequest
     return $xml->asXML();
   }
 
-  public function getSupannEntiteValues($identifiantApplication, $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback)
+  public function getSupannEntiteValues($identifiantApplication, $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $mapping)
   {
     $structure  = $this->getOperationStructure();
     $now        = new DateTime();
-
-    $mapping = array(
-      'libelle20'         => array('entite','ou'),
-      'descriptifLong'    => array('entite','description'),
-      'codeStructure'     => array('entite','supannCodeEntite'),
-      'codeSousType'      => array('entite','supannTypeEntite'),
-      'dateDebutValidite' => array('supannStructureExt','fdSupannStartDate'),
-      'dateFinValidite'   => array('supannStructureExt','fdSupannEndDate'),
-    );
     $values = array(
       'entite' => array(
         'supannRefId'               => array(),
@@ -203,16 +194,10 @@ class sinapsRequest
     return $values;
   }
 
-  public function getUserValues($identifiantApplication, array $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $userRoles)
+  public function getUserValues($identifiantApplication, array $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $userRoles, array $mapping)
   {
     $personne   = $this->getOperationPersonne();
     $now        = new DateTime();
-    $mapping = array(
-      'civilite'        => array('supannAccount','supannCivilite'),
-      'nomUsage'        => array('user','sn'),
-      'dateNaissance'   => array('personalInfo','dateOfBirth'),
-      'sexe'            => array('personalInfo','gender'),
-    );
     $values = array(
       'lock'          => FALSE,
       'user'          => array(
-- 
GitLab


From 3b61f39c6fd790bd731e5c860f49988e952d19bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Tue, 1 Oct 2019 15:21:17 +0200
Subject: [PATCH 18/73] :sparkles: feat(sinaps) Allow XPath for XML fields
 mapping

issue #5956
---
 sinaps/config/sinaps/class_sinapsConfig.inc |  8 ++++----
 sinaps/include/class_sinapsRequest.inc      | 20 ++++++++++++--------
 2 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/sinaps/config/sinaps/class_sinapsConfig.inc b/sinaps/config/sinaps/class_sinapsConfig.inc
index b5e69cff71..56d952e901 100644
--- a/sinaps/config/sinaps/class_sinapsConfig.inc
+++ b/sinaps/config/sinaps/class_sinapsConfig.inc
@@ -106,7 +106,7 @@ class sinapsConfig extends simplePlugin
               'fdSinapsUserDiffusionMap',
               array(
                 new StringAttribute(
-                  '', _('Name of the Sinaps attribute'),
+                  '', _('XPath for the XML value to fetch'),
                   'fdSinapsUserDiffusionMap_sinaps', TRUE
                 ),
                 new StringAttribute(
@@ -137,7 +137,7 @@ class sinapsConfig extends simplePlugin
               'fdSinapsStructureDiffusionMap',
               array(
                 new StringAttribute(
-                  '', _('Name of the Sinaps attribute'),
+                  '', _('XPath for the XML value to fetch'),
                   'fdSinapsStructureDiffusionMap_sinaps', TRUE
                 ),
                 new StringAttribute(
@@ -225,7 +225,7 @@ class sinapsConfig extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab, $attributesInfo);
 
     $this->attributesAccess['fdSinapsAcquisitionContactMethodMap']->setHeaders(array(_('LDAP'), _('Sinaps')));
-    $this->attributesAccess['fdSinapsUserDiffusionMap']->setHeaders(array(_('Sinaps'), _('Tab'), _('Field')));
-    $this->attributesAccess['fdSinapsStructureDiffusionMap']->setHeaders(array(_('Sinaps'), _('Tab'), _('Field')));
+    $this->attributesAccess['fdSinapsUserDiffusionMap']->setHeaders(array(_('XPath'), _('Tab'), _('Field')));
+    $this->attributesAccess['fdSinapsStructureDiffusionMap']->setHeaders(array(_('XPath'), _('Tab'), _('Field')));
   }
 }
diff --git a/sinaps/include/class_sinapsRequest.inc b/sinaps/include/class_sinapsRequest.inc
index 90a0a991b5..1079b3ad9c 100644
--- a/sinaps/include/class_sinapsRequest.inc
+++ b/sinaps/include/class_sinapsRequest.inc
@@ -145,11 +145,13 @@ class sinapsRequest
 
     array_unshift($values['entite']['supannRefId'], '{'.$uuidPrefix.'}'.$uuid);
 
-    foreach ($mapping as $sinapsAttr => list($fdTab,$fdAttr)) {
-      if (isset($structure->$sinapsAttr)) {
-        $values[$fdTab][$fdAttr] = (string)$structure->$sinapsAttr;
-      } else {
+    foreach ($mapping as $xpath => list($fdTab, $fdAttr)) {
+      $nodes = $structure->xpath($xpath);
+      if (empty($nodes)) {
         $values[$fdTab][$fdAttr] = '';
+      } else {
+        /* Note: We only support monovalued attributes through custom mapping for now */
+        $values[$fdTab][$fdAttr] = (string)$nodes[0];
       }
     }
 
@@ -294,11 +296,13 @@ class sinapsRequest
       return $values;
     }
 
-    foreach ($mapping as $sinapsAttr => list($fdTab,$fdAttr)) {
-      if (isset($personne->$sinapsAttr)) {
-        $values[$fdTab][$fdAttr] = (string)$personne->$sinapsAttr;
-      } else {
+    foreach ($mapping as $xpath => list($fdTab, $fdAttr)) {
+      $nodes = $personne->xpath($xpath);
+      if (empty($nodes)) {
         $values[$fdTab][$fdAttr] = '';
+      } else {
+        /* Note: We only support monovalued attributes through custom mapping for now */
+        $values[$fdTab][$fdAttr] = (string)$nodes[0];
       }
     }
 
-- 
GitLab


From 13b425f4f27fce60fd41a31d49edfbcec8fd623e Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@opensides.be>
Date: Tue, 1 Oct 2019 18:07:32 +0200
Subject: [PATCH 19/73] :ambulance: fix(documentation) correct the get help
 section in the readme.md

Signed-off-by: Benoit Mortier <benoit.mortier@opensides.be>
---
 README.md | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index fb3160056e..d0cd7e6135 100644
--- a/README.md
+++ b/README.md
@@ -41,8 +41,14 @@ This question can be solved by creating:
 
 ## Get help
 
+### Community support
+
 There are a couple ways you can try [to get help][get help].You can also join the `#fusiondirectory` IRC channel at freenode.net.
 
+### Professional support
+
+If you need professional support you can [get support][get support] and chose one of the options available. 
+
 You can [register on our system][register] and enter issues [FusionDirectory][issues-core] for the core program, and 
 [FusionDirectory Plugins][issues-plugins] for plugins.
 
@@ -66,7 +72,9 @@ If you like [FusionDirectory][FusionDirectory] and would like to [donate][donate
 
 [FusionDirectory]: https://www.fusiondirectory.org/
 
-[get help]: https://www.fusiondirectory.org/contact-us/
+[get help]: https://www.fusiondirectory.org/en/communaute/
+
+[get support]: https://www.fusiondirectory.org/en/support/
 
 [register]: https://register.fusiondirectory.org
 
-- 
GitLab


From 18d1d5724e877ce0464e9fdfbfd9eeb291a1ce5a Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@opensides.be>
Date: Mon, 7 Oct 2019 22:10:24 +0200
Subject: [PATCH 20/73] :handshake: fix(locales) updating the locales for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@opensides.be>
---
 alias/locale/af_ZA/fusiondirectory.po         |   2 +-
 alias/locale/ar/fusiondirectory.po            |   2 +-
 alias/locale/ca/fusiondirectory.po            |   2 +-
 alias/locale/cs_CZ/fusiondirectory.po         |   2 +-
 alias/locale/de/fusiondirectory.po            |   2 +-
 alias/locale/el_GR/fusiondirectory.po         |   2 +-
 alias/locale/es/fusiondirectory.po            |   2 +-
 alias/locale/es_CO/fusiondirectory.po         |   2 +-
 alias/locale/es_VE/fusiondirectory.po         |   2 +-
 alias/locale/fa_IR/fusiondirectory.po         |   2 +-
 alias/locale/fi_FI/fusiondirectory.po         |   2 +-
 alias/locale/fr/fusiondirectory.po            |   2 +-
 alias/locale/hu_HU/fusiondirectory.po         |   2 +-
 alias/locale/id/fusiondirectory.po            |   2 +-
 alias/locale/it_IT/fusiondirectory.po         |   2 +-
 alias/locale/ja/fusiondirectory.po            |   2 +-
 alias/locale/ko/fusiondirectory.po            |   2 +-
 alias/locale/lv/fusiondirectory.po            |   2 +-
 alias/locale/nb/fusiondirectory.po            |   2 +-
 alias/locale/nl/fusiondirectory.po            |   2 +-
 alias/locale/pl/fusiondirectory.po            |   2 +-
 alias/locale/pt/fusiondirectory.po            |   2 +-
 alias/locale/pt_BR/fusiondirectory.po         |   2 +-
 alias/locale/ru/fusiondirectory.po            |   2 +-
 alias/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 alias/locale/sv/fusiondirectory.po            |   2 +-
 alias/locale/tr_TR/fusiondirectory.po         |   2 +-
 alias/locale/ug/fusiondirectory.po            |   2 +-
 alias/locale/vi_VN/fusiondirectory.po         |   2 +-
 alias/locale/zh/fusiondirectory.po            |   2 +-
 alias/locale/zh_TW/fusiondirectory.po         |   2 +-
 applications/locale/af_ZA/fusiondirectory.po  |   2 +-
 applications/locale/ar/fusiondirectory.po     |   2 +-
 applications/locale/ca/fusiondirectory.po     |   2 +-
 applications/locale/cs_CZ/fusiondirectory.po  |   2 +-
 applications/locale/de/fusiondirectory.po     |   2 +-
 applications/locale/el_GR/fusiondirectory.po  |   2 +-
 applications/locale/es/fusiondirectory.po     |   2 +-
 applications/locale/es_CO/fusiondirectory.po  |   2 +-
 applications/locale/es_VE/fusiondirectory.po  |   2 +-
 applications/locale/fa_IR/fusiondirectory.po  |   2 +-
 applications/locale/fi_FI/fusiondirectory.po  |   2 +-
 applications/locale/fr/fusiondirectory.po     |   2 +-
 applications/locale/hu_HU/fusiondirectory.po  |   2 +-
 applications/locale/id/fusiondirectory.po     |   2 +-
 applications/locale/it_IT/fusiondirectory.po  |   2 +-
 applications/locale/ja/fusiondirectory.po     |   2 +-
 applications/locale/ko/fusiondirectory.po     |   2 +-
 applications/locale/lv/fusiondirectory.po     |   2 +-
 applications/locale/nb/fusiondirectory.po     |   2 +-
 applications/locale/nl/fusiondirectory.po     |   2 +-
 applications/locale/pl/fusiondirectory.po     |   2 +-
 applications/locale/pt/fusiondirectory.po     |   2 +-
 applications/locale/pt_BR/fusiondirectory.po  |   2 +-
 applications/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 applications/locale/sv/fusiondirectory.po     |   2 +-
 applications/locale/tr_TR/fusiondirectory.po  |   2 +-
 applications/locale/ug/fusiondirectory.po     |   2 +-
 applications/locale/vi_VN/fusiondirectory.po  |   2 +-
 applications/locale/zh/fusiondirectory.po     |   2 +-
 applications/locale/zh_TW/fusiondirectory.po  |   2 +-
 argonaut/locale/af_ZA/fusiondirectory.po      |   2 +-
 argonaut/locale/ar/fusiondirectory.po         |   2 +-
 argonaut/locale/ca/fusiondirectory.po         |   2 +-
 argonaut/locale/cs_CZ/fusiondirectory.po      |   2 +-
 argonaut/locale/de/fusiondirectory.po         |   2 +-
 argonaut/locale/el_GR/fusiondirectory.po      |   2 +-
 argonaut/locale/es/fusiondirectory.po         |   2 +-
 argonaut/locale/es_CO/fusiondirectory.po      |   2 +-
 argonaut/locale/es_VE/fusiondirectory.po      |   2 +-
 argonaut/locale/fa_IR/fusiondirectory.po      |   2 +-
 argonaut/locale/fi_FI/fusiondirectory.po      |   2 +-
 argonaut/locale/fr/fusiondirectory.po         |   6 +-
 argonaut/locale/hu_HU/fusiondirectory.po      |   2 +-
 argonaut/locale/id/fusiondirectory.po         |   2 +-
 argonaut/locale/it_IT/fusiondirectory.po      |   2 +-
 argonaut/locale/ja/fusiondirectory.po         |   2 +-
 argonaut/locale/ko/fusiondirectory.po         |   2 +-
 argonaut/locale/lv/fusiondirectory.po         |   2 +-
 argonaut/locale/nb/fusiondirectory.po         |   2 +-
 argonaut/locale/nl/fusiondirectory.po         |   2 +-
 argonaut/locale/pl/fusiondirectory.po         |   2 +-
 argonaut/locale/pt/fusiondirectory.po         |   2 +-
 argonaut/locale/pt_BR/fusiondirectory.po      |   2 +-
 argonaut/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 argonaut/locale/sv/fusiondirectory.po         |   2 +-
 argonaut/locale/tr_TR/fusiondirectory.po      |   2 +-
 argonaut/locale/ug/fusiondirectory.po         |   2 +-
 argonaut/locale/vi_VN/fusiondirectory.po      |   2 +-
 argonaut/locale/zh/fusiondirectory.po         |   2 +-
 argonaut/locale/zh_TW/fusiondirectory.po      |   2 +-
 audit/locale/af_ZA/fusiondirectory.po         |   2 +-
 audit/locale/ar/fusiondirectory.po            |   2 +-
 audit/locale/ca/fusiondirectory.po            |   2 +-
 audit/locale/cs_CZ/fusiondirectory.po         |   2 +-
 audit/locale/de/fusiondirectory.po            |   2 +-
 audit/locale/el_GR/fusiondirectory.po         |   2 +-
 audit/locale/es/fusiondirectory.po            |   2 +-
 audit/locale/es_CO/fusiondirectory.po         |   2 +-
 audit/locale/es_VE/fusiondirectory.po         |   2 +-
 audit/locale/fa_IR/fusiondirectory.po         |   2 +-
 audit/locale/fi_FI/fusiondirectory.po         |   2 +-
 audit/locale/fr/fusiondirectory.po            |   6 +-
 audit/locale/hu_HU/fusiondirectory.po         |   2 +-
 audit/locale/id/fusiondirectory.po            |   2 +-
 audit/locale/it_IT/fusiondirectory.po         |   2 +-
 audit/locale/ja/fusiondirectory.po            |   2 +-
 audit/locale/ko/fusiondirectory.po            |   2 +-
 audit/locale/lv/fusiondirectory.po            |   2 +-
 audit/locale/nb/fusiondirectory.po            |   2 +-
 audit/locale/nl/fusiondirectory.po            |   2 +-
 audit/locale/pl/fusiondirectory.po            |   2 +-
 audit/locale/pt/fusiondirectory.po            |   2 +-
 audit/locale/pt_BR/fusiondirectory.po         |   2 +-
 audit/locale/ru/fusiondirectory.po            |   2 +-
 audit/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 audit/locale/sv/fusiondirectory.po            |   2 +-
 audit/locale/tr_TR/fusiondirectory.po         |   2 +-
 audit/locale/ug/fusiondirectory.po            |   2 +-
 audit/locale/vi_VN/fusiondirectory.po         |   2 +-
 audit/locale/zh/fusiondirectory.po            |   2 +-
 audit/locale/zh_TW/fusiondirectory.po         |   2 +-
 autofs/locale/af_ZA/fusiondirectory.po        |   2 +-
 autofs/locale/ar/fusiondirectory.po           |   2 +-
 autofs/locale/ca/fusiondirectory.po           |   2 +-
 autofs/locale/cs_CZ/fusiondirectory.po        |   2 +-
 autofs/locale/de/fusiondirectory.po           |   2 +-
 autofs/locale/el_GR/fusiondirectory.po        |   2 +-
 autofs/locale/es/fusiondirectory.po           |   2 +-
 autofs/locale/es_CO/fusiondirectory.po        |   2 +-
 autofs/locale/es_VE/fusiondirectory.po        |   2 +-
 autofs/locale/fa_IR/fusiondirectory.po        |   2 +-
 autofs/locale/fi_FI/fusiondirectory.po        |   2 +-
 autofs/locale/fr/fusiondirectory.po           |   2 +-
 autofs/locale/hu_HU/fusiondirectory.po        |   2 +-
 autofs/locale/id/fusiondirectory.po           |   2 +-
 autofs/locale/it_IT/fusiondirectory.po        |   2 +-
 autofs/locale/ja/fusiondirectory.po           |   2 +-
 autofs/locale/ko/fusiondirectory.po           |   2 +-
 autofs/locale/lv/fusiondirectory.po           |   2 +-
 autofs/locale/nb/fusiondirectory.po           |   2 +-
 autofs/locale/nl/fusiondirectory.po           |   2 +-
 autofs/locale/pl/fusiondirectory.po           |   2 +-
 autofs/locale/pt/fusiondirectory.po           |   2 +-
 autofs/locale/pt_BR/fusiondirectory.po        |   2 +-
 autofs/locale/ru/fusiondirectory.po           |   2 +-
 autofs/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 autofs/locale/sv/fusiondirectory.po           |   2 +-
 autofs/locale/tr_TR/fusiondirectory.po        |   2 +-
 autofs/locale/ug/fusiondirectory.po           |   2 +-
 autofs/locale/vi_VN/fusiondirectory.po        |   2 +-
 autofs/locale/zh/fusiondirectory.po           |   2 +-
 autofs/locale/zh_TW/fusiondirectory.po        |   2 +-
 certificates/locale/af_ZA/fusiondirectory.po  |   2 +-
 certificates/locale/ar/fusiondirectory.po     |   2 +-
 certificates/locale/ca/fusiondirectory.po     |   2 +-
 certificates/locale/cs_CZ/fusiondirectory.po  |   2 +-
 certificates/locale/de/fusiondirectory.po     |   2 +-
 certificates/locale/el_GR/fusiondirectory.po  |   2 +-
 certificates/locale/es/fusiondirectory.po     |   2 +-
 certificates/locale/es_CO/fusiondirectory.po  |   2 +-
 certificates/locale/es_VE/fusiondirectory.po  |   2 +-
 certificates/locale/fa_IR/fusiondirectory.po  |   2 +-
 certificates/locale/fi_FI/fusiondirectory.po  |   2 +-
 certificates/locale/fr/fusiondirectory.po     |   2 +-
 certificates/locale/hu_HU/fusiondirectory.po  |   2 +-
 certificates/locale/id/fusiondirectory.po     |   2 +-
 certificates/locale/it_IT/fusiondirectory.po  |   2 +-
 certificates/locale/ja/fusiondirectory.po     |   2 +-
 certificates/locale/ko/fusiondirectory.po     |   2 +-
 certificates/locale/lv/fusiondirectory.po     |   2 +-
 certificates/locale/nb/fusiondirectory.po     |   2 +-
 certificates/locale/nl/fusiondirectory.po     |   2 +-
 certificates/locale/pl/fusiondirectory.po     |   2 +-
 certificates/locale/pt/fusiondirectory.po     |   2 +-
 certificates/locale/pt_BR/fusiondirectory.po  |   2 +-
 certificates/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 certificates/locale/sv/fusiondirectory.po     |   2 +-
 certificates/locale/tr_TR/fusiondirectory.po  |   2 +-
 certificates/locale/ug/fusiondirectory.po     |   2 +-
 certificates/locale/vi_VN/fusiondirectory.po  |   2 +-
 certificates/locale/zh/fusiondirectory.po     |   2 +-
 certificates/locale/zh_TW/fusiondirectory.po  |   2 +-
 community/locale/af_ZA/fusiondirectory.po     |   2 +-
 community/locale/ar/fusiondirectory.po        |   2 +-
 community/locale/ca/fusiondirectory.po        |   2 +-
 community/locale/cs_CZ/fusiondirectory.po     |   2 +-
 community/locale/de/fusiondirectory.po        |   2 +-
 community/locale/el_GR/fusiondirectory.po     |   2 +-
 community/locale/es/fusiondirectory.po        |   2 +-
 community/locale/es_CO/fusiondirectory.po     |   2 +-
 community/locale/es_VE/fusiondirectory.po     |   2 +-
 community/locale/fa_IR/fusiondirectory.po     |   2 +-
 community/locale/fi_FI/fusiondirectory.po     |   2 +-
 community/locale/fr/fusiondirectory.po        |   2 +-
 community/locale/hu_HU/fusiondirectory.po     |   2 +-
 community/locale/id/fusiondirectory.po        |   2 +-
 community/locale/it_IT/fusiondirectory.po     |   2 +-
 community/locale/ja/fusiondirectory.po        |   2 +-
 community/locale/ko/fusiondirectory.po        |   2 +-
 community/locale/lv/fusiondirectory.po        |   2 +-
 community/locale/nb/fusiondirectory.po        |   2 +-
 community/locale/nl/fusiondirectory.po        |   2 +-
 community/locale/pl/fusiondirectory.po        |   2 +-
 community/locale/pt/fusiondirectory.po        |   2 +-
 community/locale/pt_BR/fusiondirectory.po     |   2 +-
 community/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 community/locale/sv/fusiondirectory.po        |   2 +-
 community/locale/tr_TR/fusiondirectory.po     |   2 +-
 community/locale/ug/fusiondirectory.po        |   2 +-
 community/locale/vi_VN/fusiondirectory.po     |   2 +-
 community/locale/zh/fusiondirectory.po        |   2 +-
 community/locale/zh_TW/fusiondirectory.po     |   2 +-
 cyrus/locale/af_ZA/fusiondirectory.po         |   2 +-
 cyrus/locale/ar/fusiondirectory.po            |   2 +-
 cyrus/locale/ca/fusiondirectory.po            |   2 +-
 cyrus/locale/cs_CZ/fusiondirectory.po         |   2 +-
 cyrus/locale/de/fusiondirectory.po            |   2 +-
 cyrus/locale/el_GR/fusiondirectory.po         |   2 +-
 cyrus/locale/es/fusiondirectory.po            |   2 +-
 cyrus/locale/es_CO/fusiondirectory.po         |   2 +-
 cyrus/locale/es_VE/fusiondirectory.po         |   2 +-
 cyrus/locale/fa_IR/fusiondirectory.po         |   2 +-
 cyrus/locale/fi_FI/fusiondirectory.po         |   2 +-
 cyrus/locale/fr/fusiondirectory.po            |   2 +-
 cyrus/locale/hu_HU/fusiondirectory.po         |   2 +-
 cyrus/locale/id/fusiondirectory.po            |   2 +-
 cyrus/locale/it_IT/fusiondirectory.po         |   2 +-
 cyrus/locale/ja/fusiondirectory.po            |   2 +-
 cyrus/locale/ko/fusiondirectory.po            |   2 +-
 cyrus/locale/lv/fusiondirectory.po            |   2 +-
 cyrus/locale/nb/fusiondirectory.po            |   2 +-
 cyrus/locale/nl/fusiondirectory.po            |   2 +-
 cyrus/locale/pl/fusiondirectory.po            |   2 +-
 cyrus/locale/pt/fusiondirectory.po            |   2 +-
 cyrus/locale/pt_BR/fusiondirectory.po         |   2 +-
 cyrus/locale/ru/fusiondirectory.po            |   2 +-
 cyrus/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 cyrus/locale/sv/fusiondirectory.po            |   2 +-
 cyrus/locale/tr_TR/fusiondirectory.po         |   2 +-
 cyrus/locale/ug/fusiondirectory.po            |   2 +-
 cyrus/locale/vi_VN/fusiondirectory.po         |   2 +-
 cyrus/locale/zh/fusiondirectory.po            |   2 +-
 cyrus/locale/zh_TW/fusiondirectory.po         |   2 +-
 debconf/locale/af_ZA/fusiondirectory.po       |   2 +-
 debconf/locale/ar/fusiondirectory.po          |   2 +-
 debconf/locale/ca/fusiondirectory.po          |   2 +-
 debconf/locale/cs_CZ/fusiondirectory.po       |   2 +-
 debconf/locale/de/fusiondirectory.po          |   2 +-
 debconf/locale/el_GR/fusiondirectory.po       |   2 +-
 debconf/locale/es/fusiondirectory.po          |   2 +-
 debconf/locale/es_CO/fusiondirectory.po       |   2 +-
 debconf/locale/es_VE/fusiondirectory.po       |   2 +-
 debconf/locale/fa_IR/fusiondirectory.po       |   2 +-
 debconf/locale/fi_FI/fusiondirectory.po       |   2 +-
 debconf/locale/fr/fusiondirectory.po          |   2 +-
 debconf/locale/hu_HU/fusiondirectory.po       |   2 +-
 debconf/locale/id/fusiondirectory.po          |   2 +-
 debconf/locale/it_IT/fusiondirectory.po       |   2 +-
 debconf/locale/ja/fusiondirectory.po          |   2 +-
 debconf/locale/ko/fusiondirectory.po          |   2 +-
 debconf/locale/lv/fusiondirectory.po          |   2 +-
 debconf/locale/nb/fusiondirectory.po          |   2 +-
 debconf/locale/nl/fusiondirectory.po          |   2 +-
 debconf/locale/pl/fusiondirectory.po          |   2 +-
 debconf/locale/pt/fusiondirectory.po          |   2 +-
 debconf/locale/pt_BR/fusiondirectory.po       |   2 +-
 debconf/locale/ru/fusiondirectory.po          |   2 +-
 debconf/locale/ru@petr1708/fusiondirectory.po |   2 +-
 debconf/locale/sv/fusiondirectory.po          |   2 +-
 debconf/locale/tr_TR/fusiondirectory.po       |   2 +-
 debconf/locale/ug/fusiondirectory.po          |   2 +-
 debconf/locale/vi_VN/fusiondirectory.po       |   2 +-
 debconf/locale/zh/fusiondirectory.po          |   2 +-
 debconf/locale/zh_TW/fusiondirectory.po       |   2 +-
 developers/locale/af_ZA/fusiondirectory.po    |   2 +-
 developers/locale/ar/fusiondirectory.po       |   2 +-
 developers/locale/ca/fusiondirectory.po       |   2 +-
 developers/locale/cs_CZ/fusiondirectory.po    |   2 +-
 developers/locale/de/fusiondirectory.po       |   2 +-
 developers/locale/el_GR/fusiondirectory.po    |   2 +-
 developers/locale/es/fusiondirectory.po       |   2 +-
 developers/locale/es_CO/fusiondirectory.po    |   2 +-
 developers/locale/es_VE/fusiondirectory.po    |   2 +-
 developers/locale/fa_IR/fusiondirectory.po    |   2 +-
 developers/locale/fi_FI/fusiondirectory.po    |   2 +-
 developers/locale/fr/fusiondirectory.po       |   2 +-
 developers/locale/hu_HU/fusiondirectory.po    |   2 +-
 developers/locale/id/fusiondirectory.po       |   2 +-
 developers/locale/it_IT/fusiondirectory.po    |   2 +-
 developers/locale/ja/fusiondirectory.po       |   2 +-
 developers/locale/ko/fusiondirectory.po       |   2 +-
 developers/locale/lv/fusiondirectory.po       |   2 +-
 developers/locale/nb/fusiondirectory.po       |   2 +-
 developers/locale/nl/fusiondirectory.po       |   2 +-
 developers/locale/pl/fusiondirectory.po       |   2 +-
 developers/locale/pt/fusiondirectory.po       |   2 +-
 developers/locale/pt_BR/fusiondirectory.po    |   2 +-
 developers/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 developers/locale/sv/fusiondirectory.po       |   2 +-
 developers/locale/tr_TR/fusiondirectory.po    |   2 +-
 developers/locale/ug/fusiondirectory.po       |   2 +-
 developers/locale/vi_VN/fusiondirectory.po    |   2 +-
 developers/locale/zh/fusiondirectory.po       |   2 +-
 developers/locale/zh_TW/fusiondirectory.po    |   2 +-
 dhcp/locale/af_ZA/fusiondirectory.po          |   2 +-
 dhcp/locale/ar/fusiondirectory.po             |   2 +-
 dhcp/locale/ca/fusiondirectory.po             |   2 +-
 dhcp/locale/cs_CZ/fusiondirectory.po          |   2 +-
 dhcp/locale/de/fusiondirectory.po             |   2 +-
 dhcp/locale/el_GR/fusiondirectory.po          |   2 +-
 dhcp/locale/es/fusiondirectory.po             |   2 +-
 dhcp/locale/es_CO/fusiondirectory.po          |   2 +-
 dhcp/locale/es_VE/fusiondirectory.po          |   2 +-
 dhcp/locale/fa_IR/fusiondirectory.po          |   2 +-
 dhcp/locale/fi_FI/fusiondirectory.po          |   2 +-
 dhcp/locale/fr/fusiondirectory.po             |   2 +-
 dhcp/locale/hu_HU/fusiondirectory.po          |   2 +-
 dhcp/locale/id/fusiondirectory.po             |   2 +-
 dhcp/locale/it_IT/fusiondirectory.po          |   2 +-
 dhcp/locale/ja/fusiondirectory.po             |   2 +-
 dhcp/locale/ko/fusiondirectory.po             |   2 +-
 dhcp/locale/lv/fusiondirectory.po             |   2 +-
 dhcp/locale/nb/fusiondirectory.po             |   2 +-
 dhcp/locale/nl/fusiondirectory.po             |   2 +-
 dhcp/locale/pl/fusiondirectory.po             |   2 +-
 dhcp/locale/pt/fusiondirectory.po             |   2 +-
 dhcp/locale/pt_BR/fusiondirectory.po          |   2 +-
 dhcp/locale/ru/fusiondirectory.po             |   2 +-
 dhcp/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 dhcp/locale/sv/fusiondirectory.po             |   2 +-
 dhcp/locale/tr_TR/fusiondirectory.po          |   2 +-
 dhcp/locale/ug/fusiondirectory.po             |   2 +-
 dhcp/locale/vi_VN/fusiondirectory.po          |   2 +-
 dhcp/locale/zh/fusiondirectory.po             |   2 +-
 dhcp/locale/zh_TW/fusiondirectory.po          |   2 +-
 dns/locale/af_ZA/fusiondirectory.po           |   2 +-
 dns/locale/ar/fusiondirectory.po              |   2 +-
 dns/locale/ca/fusiondirectory.po              |   2 +-
 dns/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dns/locale/de/fusiondirectory.po              |   2 +-
 dns/locale/el_GR/fusiondirectory.po           |   2 +-
 dns/locale/es/fusiondirectory.po              |   2 +-
 dns/locale/es_CO/fusiondirectory.po           |   2 +-
 dns/locale/es_VE/fusiondirectory.po           |   2 +-
 dns/locale/fa_IR/fusiondirectory.po           |   2 +-
 dns/locale/fi_FI/fusiondirectory.po           |   2 +-
 dns/locale/fr/fusiondirectory.po              |   2 +-
 dns/locale/hu_HU/fusiondirectory.po           |   2 +-
 dns/locale/id/fusiondirectory.po              |   2 +-
 dns/locale/it_IT/fusiondirectory.po           |   2 +-
 dns/locale/ja/fusiondirectory.po              |   2 +-
 dns/locale/ko/fusiondirectory.po              |   2 +-
 dns/locale/lv/fusiondirectory.po              |   2 +-
 dns/locale/nb/fusiondirectory.po              |   2 +-
 dns/locale/nl/fusiondirectory.po              |   2 +-
 dns/locale/pl/fusiondirectory.po              |   2 +-
 dns/locale/pt/fusiondirectory.po              |   2 +-
 dns/locale/pt_BR/fusiondirectory.po           |   2 +-
 dns/locale/ru/fusiondirectory.po              |   2 +-
 dns/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dns/locale/sv/fusiondirectory.po              |   2 +-
 dns/locale/tr_TR/fusiondirectory.po           |   2 +-
 dns/locale/ug/fusiondirectory.po              |   2 +-
 dns/locale/vi_VN/fusiondirectory.po           |   2 +-
 dns/locale/zh/fusiondirectory.po              |   2 +-
 dns/locale/zh_TW/fusiondirectory.po           |   2 +-
 dovecot/locale/af_ZA/fusiondirectory.po       |   4 +-
 dovecot/locale/ar/fusiondirectory.po          |   4 +-
 dovecot/locale/ca/fusiondirectory.po          |   4 +-
 dovecot/locale/cs_CZ/fusiondirectory.po       |   4 +-
 dovecot/locale/de/fusiondirectory.po          |   4 +-
 dovecot/locale/el_GR/fusiondirectory.po       |   4 +-
 dovecot/locale/es/fusiondirectory.po          |   4 +-
 dovecot/locale/es_CO/fusiondirectory.po       |   4 +-
 dovecot/locale/es_VE/fusiondirectory.po       |   4 +-
 dovecot/locale/fa_IR/fusiondirectory.po       |   4 +-
 dovecot/locale/fi_FI/fusiondirectory.po       |   4 +-
 dovecot/locale/fr/fusiondirectory.po          |   4 +-
 dovecot/locale/hu_HU/fusiondirectory.po       |   4 +-
 dovecot/locale/id/fusiondirectory.po          |   4 +-
 dovecot/locale/it_IT/fusiondirectory.po       |   4 +-
 dovecot/locale/ja/fusiondirectory.po          |   4 +-
 dovecot/locale/ko/fusiondirectory.po          |   4 +-
 dovecot/locale/lv/fusiondirectory.po          |   4 +-
 dovecot/locale/nb/fusiondirectory.po          |   4 +-
 dovecot/locale/nl/fusiondirectory.po          |   4 +-
 dovecot/locale/pl/fusiondirectory.po          |   4 +-
 dovecot/locale/pt/fusiondirectory.po          |   4 +-
 dovecot/locale/pt_BR/fusiondirectory.po       |   4 +-
 dovecot/locale/ru/fusiondirectory.po          |   4 +-
 dovecot/locale/ru@petr1708/fusiondirectory.po |   4 +-
 dovecot/locale/sv/fusiondirectory.po          |   4 +-
 dovecot/locale/tr_TR/fusiondirectory.po       |   4 +-
 dovecot/locale/ug/fusiondirectory.po          |   4 +-
 dovecot/locale/vi_VN/fusiondirectory.po       |   4 +-
 dovecot/locale/zh/fusiondirectory.po          |   4 +-
 dovecot/locale/zh_TW/fusiondirectory.po       |   4 +-
 dsa/locale/af_ZA/fusiondirectory.po           |   2 +-
 dsa/locale/ar/fusiondirectory.po              |   2 +-
 dsa/locale/ca/fusiondirectory.po              |   2 +-
 dsa/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dsa/locale/de/fusiondirectory.po              |   2 +-
 dsa/locale/el_GR/fusiondirectory.po           |   2 +-
 dsa/locale/es/fusiondirectory.po              |   2 +-
 dsa/locale/es_CO/fusiondirectory.po           |   2 +-
 dsa/locale/es_VE/fusiondirectory.po           |   2 +-
 dsa/locale/fa_IR/fusiondirectory.po           |   2 +-
 dsa/locale/fi_FI/fusiondirectory.po           |   2 +-
 dsa/locale/fr/fusiondirectory.po              |   2 +-
 dsa/locale/hu_HU/fusiondirectory.po           |   2 +-
 dsa/locale/id/fusiondirectory.po              |   2 +-
 dsa/locale/it_IT/fusiondirectory.po           |   2 +-
 dsa/locale/ja/fusiondirectory.po              |   2 +-
 dsa/locale/ko/fusiondirectory.po              |   2 +-
 dsa/locale/lv/fusiondirectory.po              |   2 +-
 dsa/locale/nb/fusiondirectory.po              |   2 +-
 dsa/locale/nl/fusiondirectory.po              |   2 +-
 dsa/locale/pl/fusiondirectory.po              |   2 +-
 dsa/locale/pt/fusiondirectory.po              |   2 +-
 dsa/locale/pt_BR/fusiondirectory.po           |   2 +-
 dsa/locale/ru/fusiondirectory.po              |   2 +-
 dsa/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dsa/locale/sv/fusiondirectory.po              |   2 +-
 dsa/locale/tr_TR/fusiondirectory.po           |   2 +-
 dsa/locale/ug/fusiondirectory.po              |   2 +-
 dsa/locale/vi_VN/fusiondirectory.po           |   2 +-
 dsa/locale/zh/fusiondirectory.po              |   2 +-
 dsa/locale/zh_TW/fusiondirectory.po           |   2 +-
 ejbca/locale/af_ZA/fusiondirectory.po         |   2 +-
 ejbca/locale/ar/fusiondirectory.po            |   2 +-
 ejbca/locale/ca/fusiondirectory.po            |   2 +-
 ejbca/locale/cs_CZ/fusiondirectory.po         |   2 +-
 ejbca/locale/de/fusiondirectory.po            |   2 +-
 ejbca/locale/el_GR/fusiondirectory.po         |   2 +-
 ejbca/locale/es/fusiondirectory.po            |   2 +-
 ejbca/locale/es_CO/fusiondirectory.po         |   2 +-
 ejbca/locale/es_VE/fusiondirectory.po         |   2 +-
 ejbca/locale/fa_IR/fusiondirectory.po         |   2 +-
 ejbca/locale/fi_FI/fusiondirectory.po         |   2 +-
 ejbca/locale/fr/fusiondirectory.po            |   2 +-
 ejbca/locale/hu_HU/fusiondirectory.po         |   2 +-
 ejbca/locale/id/fusiondirectory.po            |   2 +-
 ejbca/locale/it_IT/fusiondirectory.po         |   2 +-
 ejbca/locale/ja/fusiondirectory.po            |   2 +-
 ejbca/locale/ko/fusiondirectory.po            |   2 +-
 ejbca/locale/lv/fusiondirectory.po            |   2 +-
 ejbca/locale/nb/fusiondirectory.po            |   2 +-
 ejbca/locale/nl/fusiondirectory.po            |   2 +-
 ejbca/locale/pl/fusiondirectory.po            |   2 +-
 ejbca/locale/pt/fusiondirectory.po            |   2 +-
 ejbca/locale/pt_BR/fusiondirectory.po         |   2 +-
 ejbca/locale/ru/fusiondirectory.po            |   2 +-
 ejbca/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 ejbca/locale/sv/fusiondirectory.po            |   2 +-
 ejbca/locale/tr_TR/fusiondirectory.po         |   2 +-
 ejbca/locale/ug/fusiondirectory.po            |   2 +-
 ejbca/locale/vi_VN/fusiondirectory.po         |   2 +-
 ejbca/locale/zh/fusiondirectory.po            |   2 +-
 ejbca/locale/zh_TW/fusiondirectory.po         |   2 +-
 fai/locale/af_ZA/fusiondirectory.po           |   2 +-
 fai/locale/ar/fusiondirectory.po              |   2 +-
 fai/locale/ca/fusiondirectory.po              |   2 +-
 fai/locale/cs_CZ/fusiondirectory.po           |   2 +-
 fai/locale/de/fusiondirectory.po              |   2 +-
 fai/locale/el_GR/fusiondirectory.po           |   2 +-
 fai/locale/es/fusiondirectory.po              |   2 +-
 fai/locale/es_CO/fusiondirectory.po           |   2 +-
 fai/locale/es_VE/fusiondirectory.po           |   2 +-
 fai/locale/fa_IR/fusiondirectory.po           |   2 +-
 fai/locale/fi_FI/fusiondirectory.po           |   2 +-
 fai/locale/fr/fusiondirectory.po              |   6 +-
 fai/locale/hu_HU/fusiondirectory.po           |   2 +-
 fai/locale/id/fusiondirectory.po              |   2 +-
 fai/locale/it_IT/fusiondirectory.po           |   2 +-
 fai/locale/ja/fusiondirectory.po              |   2 +-
 fai/locale/ko/fusiondirectory.po              |   2 +-
 fai/locale/lv/fusiondirectory.po              |   2 +-
 fai/locale/nb/fusiondirectory.po              |   2 +-
 fai/locale/nl/fusiondirectory.po              |   2 +-
 fai/locale/pl/fusiondirectory.po              |   2 +-
 fai/locale/pt/fusiondirectory.po              |   2 +-
 fai/locale/pt_BR/fusiondirectory.po           |   2 +-
 fai/locale/ru/fusiondirectory.po              |   2 +-
 fai/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fai/locale/sv/fusiondirectory.po              |   2 +-
 fai/locale/tr_TR/fusiondirectory.po           |   2 +-
 fai/locale/ug/fusiondirectory.po              |   2 +-
 fai/locale/vi_VN/fusiondirectory.po           |   2 +-
 fai/locale/zh/fusiondirectory.po              |   2 +-
 fai/locale/zh_TW/fusiondirectory.po           |   2 +-
 freeradius/locale/af_ZA/fusiondirectory.po    |   2 +-
 freeradius/locale/ar/fusiondirectory.po       |   2 +-
 freeradius/locale/ca/fusiondirectory.po       |   2 +-
 freeradius/locale/cs_CZ/fusiondirectory.po    |   2 +-
 freeradius/locale/de/fusiondirectory.po       |   2 +-
 freeradius/locale/el_GR/fusiondirectory.po    |   2 +-
 freeradius/locale/es/fusiondirectory.po       |   2 +-
 freeradius/locale/es_CO/fusiondirectory.po    |   2 +-
 freeradius/locale/es_VE/fusiondirectory.po    |   2 +-
 freeradius/locale/fa_IR/fusiondirectory.po    |   2 +-
 freeradius/locale/fi_FI/fusiondirectory.po    |   2 +-
 freeradius/locale/fr/fusiondirectory.po       |   2 +-
 freeradius/locale/hu_HU/fusiondirectory.po    |   2 +-
 freeradius/locale/id/fusiondirectory.po       |   2 +-
 freeradius/locale/it_IT/fusiondirectory.po    |   2 +-
 freeradius/locale/ja/fusiondirectory.po       |   2 +-
 freeradius/locale/ko/fusiondirectory.po       |   2 +-
 freeradius/locale/lv/fusiondirectory.po       |   2 +-
 freeradius/locale/nb/fusiondirectory.po       |   2 +-
 freeradius/locale/nl/fusiondirectory.po       |   2 +-
 freeradius/locale/pl/fusiondirectory.po       |   2 +-
 freeradius/locale/pt/fusiondirectory.po       |   2 +-
 freeradius/locale/pt_BR/fusiondirectory.po    |   2 +-
 freeradius/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 freeradius/locale/sv/fusiondirectory.po       |   2 +-
 freeradius/locale/tr_TR/fusiondirectory.po    |   2 +-
 freeradius/locale/ug/fusiondirectory.po       |   2 +-
 freeradius/locale/vi_VN/fusiondirectory.po    |   2 +-
 freeradius/locale/zh/fusiondirectory.po       |   2 +-
 freeradius/locale/zh_TW/fusiondirectory.po    |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ar/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 fusioninventory/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 fusioninventory/locale/fr/fusiondirectory.po  |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 fusioninventory/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ja/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ko/fusiondirectory.po  |   2 +-
 fusioninventory/locale/lv/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nb/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fusioninventory/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 fusioninventory/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 gpg/locale/af_ZA/fusiondirectory.po           |  18 +-
 gpg/locale/ar/fusiondirectory.po              |  18 +-
 gpg/locale/ca/fusiondirectory.po              |  18 +-
 gpg/locale/cs_CZ/fusiondirectory.po           |  18 +-
 gpg/locale/de/fusiondirectory.po              |  18 +-
 gpg/locale/el_GR/fusiondirectory.po           |  18 +-
 gpg/locale/es/fusiondirectory.po              |  18 +-
 gpg/locale/es_CO/fusiondirectory.po           |  18 +-
 gpg/locale/es_VE/fusiondirectory.po           |  18 +-
 gpg/locale/fa_IR/fusiondirectory.po           |  18 +-
 gpg/locale/fi_FI/fusiondirectory.po           |  18 +-
 gpg/locale/fr/fusiondirectory.po              |  18 +-
 gpg/locale/hu_HU/fusiondirectory.po           |  18 +-
 gpg/locale/id/fusiondirectory.po              |  18 +-
 gpg/locale/it_IT/fusiondirectory.po           |  18 +-
 gpg/locale/ja/fusiondirectory.po              |  18 +-
 gpg/locale/ko/fusiondirectory.po              |  18 +-
 gpg/locale/lv/fusiondirectory.po              |  18 +-
 gpg/locale/nb/fusiondirectory.po              |  18 +-
 gpg/locale/nl/fusiondirectory.po              |  18 +-
 gpg/locale/pl/fusiondirectory.po              |  18 +-
 gpg/locale/pt/fusiondirectory.po              |  18 +-
 gpg/locale/pt_BR/fusiondirectory.po           |  18 +-
 gpg/locale/ru/fusiondirectory.po              |  18 +-
 gpg/locale/ru@petr1708/fusiondirectory.po     |  18 +-
 gpg/locale/sv/fusiondirectory.po              |  18 +-
 gpg/locale/tr_TR/fusiondirectory.po           |  18 +-
 gpg/locale/ug/fusiondirectory.po              |  18 +-
 gpg/locale/vi_VN/fusiondirectory.po           |  18 +-
 gpg/locale/zh/fusiondirectory.po              |  18 +-
 gpg/locale/zh_TW/fusiondirectory.po           |  18 +-
 ipmi/locale/af_ZA/fusiondirectory.po          |   2 +-
 ipmi/locale/ar/fusiondirectory.po             |   2 +-
 ipmi/locale/ca/fusiondirectory.po             |   2 +-
 ipmi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 ipmi/locale/de/fusiondirectory.po             |   2 +-
 ipmi/locale/el_GR/fusiondirectory.po          |   2 +-
 ipmi/locale/es/fusiondirectory.po             |   2 +-
 ipmi/locale/es_CO/fusiondirectory.po          |   2 +-
 ipmi/locale/es_VE/fusiondirectory.po          |   2 +-
 ipmi/locale/fa_IR/fusiondirectory.po          |   2 +-
 ipmi/locale/fi_FI/fusiondirectory.po          |   2 +-
 ipmi/locale/fr/fusiondirectory.po             |   2 +-
 ipmi/locale/hu_HU/fusiondirectory.po          |   2 +-
 ipmi/locale/id/fusiondirectory.po             |   2 +-
 ipmi/locale/it_IT/fusiondirectory.po          |   2 +-
 ipmi/locale/ja/fusiondirectory.po             |   2 +-
 ipmi/locale/ko/fusiondirectory.po             |   2 +-
 ipmi/locale/lv/fusiondirectory.po             |   2 +-
 ipmi/locale/nb/fusiondirectory.po             |   2 +-
 ipmi/locale/nl/fusiondirectory.po             |   2 +-
 ipmi/locale/pl/fusiondirectory.po             |   2 +-
 ipmi/locale/pt/fusiondirectory.po             |   2 +-
 ipmi/locale/pt_BR/fusiondirectory.po          |   2 +-
 ipmi/locale/ru/fusiondirectory.po             |   2 +-
 ipmi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 ipmi/locale/sv/fusiondirectory.po             |   2 +-
 ipmi/locale/tr_TR/fusiondirectory.po          |   2 +-
 ipmi/locale/ug/fusiondirectory.po             |   2 +-
 ipmi/locale/vi_VN/fusiondirectory.po          |   2 +-
 ipmi/locale/zh/fusiondirectory.po             |   2 +-
 ipmi/locale/zh_TW/fusiondirectory.po          |   2 +-
 ldapdump/locale/af_ZA/fusiondirectory.po      |   2 +-
 ldapdump/locale/ar/fusiondirectory.po         |   2 +-
 ldapdump/locale/ca/fusiondirectory.po         |   2 +-
 ldapdump/locale/cs_CZ/fusiondirectory.po      |   2 +-
 ldapdump/locale/de/fusiondirectory.po         |   2 +-
 ldapdump/locale/el_GR/fusiondirectory.po      |   2 +-
 ldapdump/locale/es/fusiondirectory.po         |   2 +-
 ldapdump/locale/es_CO/fusiondirectory.po      |   2 +-
 ldapdump/locale/es_VE/fusiondirectory.po      |   2 +-
 ldapdump/locale/fa_IR/fusiondirectory.po      |   2 +-
 ldapdump/locale/fi_FI/fusiondirectory.po      |   2 +-
 ldapdump/locale/fr/fusiondirectory.po         |   2 +-
 ldapdump/locale/hu_HU/fusiondirectory.po      |   2 +-
 ldapdump/locale/id/fusiondirectory.po         |   2 +-
 ldapdump/locale/it_IT/fusiondirectory.po      |   2 +-
 ldapdump/locale/ja/fusiondirectory.po         |   2 +-
 ldapdump/locale/ko/fusiondirectory.po         |   2 +-
 ldapdump/locale/lv/fusiondirectory.po         |   2 +-
 ldapdump/locale/nb/fusiondirectory.po         |   2 +-
 ldapdump/locale/nl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt_BR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapdump/locale/sv/fusiondirectory.po         |   2 +-
 ldapdump/locale/tr_TR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ug/fusiondirectory.po         |   2 +-
 ldapdump/locale/vi_VN/fusiondirectory.po      |   2 +-
 ldapdump/locale/zh/fusiondirectory.po         |   2 +-
 ldapdump/locale/zh_TW/fusiondirectory.po      |   2 +-
 ldapmanager/locale/af_ZA/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ar/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ca/fusiondirectory.po      |   2 +-
 ldapmanager/locale/cs_CZ/fusiondirectory.po   |   2 +-
 ldapmanager/locale/de/fusiondirectory.po      |   2 +-
 ldapmanager/locale/el_GR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es/fusiondirectory.po      |   2 +-
 ldapmanager/locale/es_CO/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es_VE/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fa_IR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fi_FI/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fr/fusiondirectory.po      |   6 +-
 ldapmanager/locale/hu_HU/fusiondirectory.po   |   2 +-
 ldapmanager/locale/id/fusiondirectory.po      |   2 +-
 ldapmanager/locale/it_IT/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ja/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ko/fusiondirectory.po      |   2 +-
 ldapmanager/locale/lv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nb/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nl/fusiondirectory.po      |   6 +-
 ldapmanager/locale/pl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt_BR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapmanager/locale/sv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/tr_TR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ug/fusiondirectory.po      |   2 +-
 ldapmanager/locale/vi_VN/fusiondirectory.po   |   2 +-
 ldapmanager/locale/zh/fusiondirectory.po      |   2 +-
 ldapmanager/locale/zh_TW/fusiondirectory.po   |   2 +-
 mail/locale/af_ZA/fusiondirectory.po          |  15 +-
 mail/locale/ar/fusiondirectory.po             |  15 +-
 mail/locale/ca/fusiondirectory.po             |  15 +-
 mail/locale/cs_CZ/fusiondirectory.po          |  25 +-
 mail/locale/de/fusiondirectory.po             |  25 +-
 mail/locale/el_GR/fusiondirectory.po          |  15 +-
 mail/locale/es/fusiondirectory.po             |  15 +-
 mail/locale/es_CO/fusiondirectory.po          |  15 +-
 mail/locale/es_VE/fusiondirectory.po          |  15 +-
 mail/locale/fa_IR/fusiondirectory.po          |  15 +-
 mail/locale/fi_FI/fusiondirectory.po          |  15 +-
 mail/locale/fr/fusiondirectory.po             |  30 ++-
 mail/locale/hu_HU/fusiondirectory.po          |  15 +-
 mail/locale/id/fusiondirectory.po             |  15 +-
 mail/locale/it_IT/fusiondirectory.po          |  34 +--
 mail/locale/ja/fusiondirectory.po             |  15 +-
 mail/locale/ko/fusiondirectory.po             |  25 +-
 mail/locale/lv/fusiondirectory.po             |  15 +-
 mail/locale/nb/fusiondirectory.po             |  15 +-
 mail/locale/nl/fusiondirectory.po             |  25 +-
 mail/locale/pl/fusiondirectory.po             |  15 +-
 mail/locale/pt/fusiondirectory.po             |  15 +-
 mail/locale/pt_BR/fusiondirectory.po          |  15 +-
 mail/locale/ru/fusiondirectory.po             |  15 +-
 mail/locale/ru@petr1708/fusiondirectory.po    |  15 +-
 mail/locale/sv/fusiondirectory.po             |  15 +-
 mail/locale/tr_TR/fusiondirectory.po          |  15 +-
 mail/locale/ug/fusiondirectory.po             |  15 +-
 mail/locale/vi_VN/fusiondirectory.po          |  15 +-
 mail/locale/zh/fusiondirectory.po             |  15 +-
 mail/locale/zh_TW/fusiondirectory.po          |  15 +-
 mixedgroups/locale/af_ZA/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ar/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ca/fusiondirectory.po      |   2 +-
 mixedgroups/locale/cs_CZ/fusiondirectory.po   |   2 +-
 mixedgroups/locale/de/fusiondirectory.po      |   2 +-
 mixedgroups/locale/el_GR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es/fusiondirectory.po      |   2 +-
 mixedgroups/locale/es_CO/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es_VE/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fa_IR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fi_FI/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fr/fusiondirectory.po      |   2 +-
 mixedgroups/locale/hu_HU/fusiondirectory.po   |   2 +-
 mixedgroups/locale/id/fusiondirectory.po      |   2 +-
 mixedgroups/locale/it_IT/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ja/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ko/fusiondirectory.po      |   2 +-
 mixedgroups/locale/lv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nb/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt_BR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 mixedgroups/locale/sv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/tr_TR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ug/fusiondirectory.po      |   2 +-
 mixedgroups/locale/vi_VN/fusiondirectory.po   |   2 +-
 mixedgroups/locale/zh/fusiondirectory.po      |   2 +-
 mixedgroups/locale/zh_TW/fusiondirectory.po   |   2 +-
 nagios/locale/af_ZA/fusiondirectory.po        |   2 +-
 nagios/locale/ar/fusiondirectory.po           |   2 +-
 nagios/locale/ca/fusiondirectory.po           |   2 +-
 nagios/locale/cs_CZ/fusiondirectory.po        |   2 +-
 nagios/locale/de/fusiondirectory.po           |   2 +-
 nagios/locale/el_GR/fusiondirectory.po        |   2 +-
 nagios/locale/es/fusiondirectory.po           |   2 +-
 nagios/locale/es_CO/fusiondirectory.po        |   2 +-
 nagios/locale/es_VE/fusiondirectory.po        |   2 +-
 nagios/locale/fa_IR/fusiondirectory.po        |   2 +-
 nagios/locale/fi_FI/fusiondirectory.po        |   2 +-
 nagios/locale/fr/fusiondirectory.po           |   2 +-
 nagios/locale/hu_HU/fusiondirectory.po        |   2 +-
 nagios/locale/id/fusiondirectory.po           |   2 +-
 nagios/locale/it_IT/fusiondirectory.po        |   2 +-
 nagios/locale/ja/fusiondirectory.po           |   2 +-
 nagios/locale/ko/fusiondirectory.po           |   2 +-
 nagios/locale/lv/fusiondirectory.po           |   2 +-
 nagios/locale/nb/fusiondirectory.po           |   2 +-
 nagios/locale/nl/fusiondirectory.po           |   2 +-
 nagios/locale/pl/fusiondirectory.po           |   2 +-
 nagios/locale/pt/fusiondirectory.po           |   2 +-
 nagios/locale/pt_BR/fusiondirectory.po        |   2 +-
 nagios/locale/ru/fusiondirectory.po           |   2 +-
 nagios/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 nagios/locale/sv/fusiondirectory.po           |   2 +-
 nagios/locale/tr_TR/fusiondirectory.po        |   2 +-
 nagios/locale/ug/fusiondirectory.po           |   2 +-
 nagios/locale/vi_VN/fusiondirectory.po        |   2 +-
 nagios/locale/zh/fusiondirectory.po           |   2 +-
 nagios/locale/zh_TW/fusiondirectory.po        |   2 +-
 netgroups/locale/af_ZA/fusiondirectory.po     |   2 +-
 netgroups/locale/ar/fusiondirectory.po        |   2 +-
 netgroups/locale/ca/fusiondirectory.po        |   2 +-
 netgroups/locale/cs_CZ/fusiondirectory.po     |   2 +-
 netgroups/locale/de/fusiondirectory.po        |   2 +-
 netgroups/locale/el_GR/fusiondirectory.po     |   2 +-
 netgroups/locale/es/fusiondirectory.po        |   2 +-
 netgroups/locale/es_CO/fusiondirectory.po     |   2 +-
 netgroups/locale/es_VE/fusiondirectory.po     |   2 +-
 netgroups/locale/fa_IR/fusiondirectory.po     |   2 +-
 netgroups/locale/fi_FI/fusiondirectory.po     |   2 +-
 netgroups/locale/fr/fusiondirectory.po        |   2 +-
 netgroups/locale/hu_HU/fusiondirectory.po     |   2 +-
 netgroups/locale/id/fusiondirectory.po        |   2 +-
 netgroups/locale/it_IT/fusiondirectory.po     |   2 +-
 netgroups/locale/ja/fusiondirectory.po        |   2 +-
 netgroups/locale/ko/fusiondirectory.po        |   2 +-
 netgroups/locale/lv/fusiondirectory.po        |   2 +-
 netgroups/locale/nb/fusiondirectory.po        |   2 +-
 netgroups/locale/nl/fusiondirectory.po        |   2 +-
 netgroups/locale/pl/fusiondirectory.po        |   2 +-
 netgroups/locale/pt/fusiondirectory.po        |   2 +-
 netgroups/locale/pt_BR/fusiondirectory.po     |   2 +-
 netgroups/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 netgroups/locale/sv/fusiondirectory.po        |   2 +-
 netgroups/locale/tr_TR/fusiondirectory.po     |   2 +-
 netgroups/locale/ug/fusiondirectory.po        |   2 +-
 netgroups/locale/vi_VN/fusiondirectory.po     |   2 +-
 netgroups/locale/zh/fusiondirectory.po        |   2 +-
 netgroups/locale/zh_TW/fusiondirectory.po     |   2 +-
 newsletter/locale/af_ZA/fusiondirectory.po    |   2 +-
 newsletter/locale/ar/fusiondirectory.po       |   2 +-
 newsletter/locale/ca/fusiondirectory.po       |   2 +-
 newsletter/locale/cs_CZ/fusiondirectory.po    |   2 +-
 newsletter/locale/de/fusiondirectory.po       |   2 +-
 newsletter/locale/el_GR/fusiondirectory.po    |   2 +-
 newsletter/locale/es/fusiondirectory.po       |   2 +-
 newsletter/locale/es_CO/fusiondirectory.po    |   2 +-
 newsletter/locale/es_VE/fusiondirectory.po    |   2 +-
 newsletter/locale/fa_IR/fusiondirectory.po    |   2 +-
 newsletter/locale/fi_FI/fusiondirectory.po    |   2 +-
 newsletter/locale/fr/fusiondirectory.po       |   2 +-
 newsletter/locale/hu_HU/fusiondirectory.po    |   2 +-
 newsletter/locale/id/fusiondirectory.po       |   2 +-
 newsletter/locale/it_IT/fusiondirectory.po    |   2 +-
 newsletter/locale/ja/fusiondirectory.po       |   2 +-
 newsletter/locale/ko/fusiondirectory.po       |   2 +-
 newsletter/locale/lv/fusiondirectory.po       |   2 +-
 newsletter/locale/nb/fusiondirectory.po       |   2 +-
 newsletter/locale/nl/fusiondirectory.po       |   2 +-
 newsletter/locale/pl/fusiondirectory.po       |   2 +-
 newsletter/locale/pt/fusiondirectory.po       |   2 +-
 newsletter/locale/pt_BR/fusiondirectory.po    |   2 +-
 newsletter/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 newsletter/locale/sv/fusiondirectory.po       |   2 +-
 newsletter/locale/tr_TR/fusiondirectory.po    |   2 +-
 newsletter/locale/ug/fusiondirectory.po       |   2 +-
 newsletter/locale/vi_VN/fusiondirectory.po    |   2 +-
 newsletter/locale/zh/fusiondirectory.po       |   2 +-
 newsletter/locale/zh_TW/fusiondirectory.po    |   2 +-
 opsi/locale/af_ZA/fusiondirectory.po          |   2 +-
 opsi/locale/ar/fusiondirectory.po             |   2 +-
 opsi/locale/ca/fusiondirectory.po             |   2 +-
 opsi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 opsi/locale/de/fusiondirectory.po             |   2 +-
 opsi/locale/el_GR/fusiondirectory.po          |   2 +-
 opsi/locale/es/fusiondirectory.po             |   2 +-
 opsi/locale/es_CO/fusiondirectory.po          |   2 +-
 opsi/locale/es_VE/fusiondirectory.po          |   2 +-
 opsi/locale/fa_IR/fusiondirectory.po          |   2 +-
 opsi/locale/fi_FI/fusiondirectory.po          |   2 +-
 opsi/locale/fr/fusiondirectory.po             |   6 +-
 opsi/locale/hu_HU/fusiondirectory.po          |   2 +-
 opsi/locale/id/fusiondirectory.po             |   2 +-
 opsi/locale/it_IT/fusiondirectory.po          |   2 +-
 opsi/locale/ja/fusiondirectory.po             |   2 +-
 opsi/locale/ko/fusiondirectory.po             |   2 +-
 opsi/locale/lv/fusiondirectory.po             |   2 +-
 opsi/locale/nb/fusiondirectory.po             |   2 +-
 opsi/locale/nl/fusiondirectory.po             |   6 +-
 opsi/locale/pl/fusiondirectory.po             |   2 +-
 opsi/locale/pt/fusiondirectory.po             |   2 +-
 opsi/locale/pt_BR/fusiondirectory.po          |   2 +-
 opsi/locale/ru/fusiondirectory.po             |   2 +-
 opsi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 opsi/locale/sv/fusiondirectory.po             |   2 +-
 opsi/locale/tr_TR/fusiondirectory.po          |   2 +-
 opsi/locale/ug/fusiondirectory.po             |   2 +-
 opsi/locale/vi_VN/fusiondirectory.po          |   2 +-
 opsi/locale/zh/fusiondirectory.po             |   2 +-
 opsi/locale/zh_TW/fusiondirectory.po          |   2 +-
 personal/locale/af_ZA/fusiondirectory.po      |   6 +-
 personal/locale/ar/fusiondirectory.po         |   6 +-
 personal/locale/ca/fusiondirectory.po         |   6 +-
 personal/locale/cs_CZ/fusiondirectory.po      |   6 +-
 personal/locale/de/fusiondirectory.po         |   6 +-
 personal/locale/el_GR/fusiondirectory.po      |   6 +-
 personal/locale/es/fusiondirectory.po         |   6 +-
 personal/locale/es_CO/fusiondirectory.po      |   6 +-
 personal/locale/es_VE/fusiondirectory.po      |   6 +-
 personal/locale/fa_IR/fusiondirectory.po      |   6 +-
 personal/locale/fi_FI/fusiondirectory.po      |   6 +-
 personal/locale/fr/fusiondirectory.po         |  10 +-
 personal/locale/hu_HU/fusiondirectory.po      |   6 +-
 personal/locale/id/fusiondirectory.po         |   6 +-
 personal/locale/it_IT/fusiondirectory.po      |   9 +-
 personal/locale/ja/fusiondirectory.po         |   6 +-
 personal/locale/ko/fusiondirectory.po         |   6 +-
 personal/locale/lv/fusiondirectory.po         |   6 +-
 personal/locale/nb/fusiondirectory.po         |   6 +-
 personal/locale/nl/fusiondirectory.po         |   6 +-
 personal/locale/pl/fusiondirectory.po         |   6 +-
 personal/locale/pt/fusiondirectory.po         |   6 +-
 personal/locale/pt_BR/fusiondirectory.po      |   6 +-
 personal/locale/ru/fusiondirectory.po         |   6 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   6 +-
 personal/locale/sv/fusiondirectory.po         |   6 +-
 personal/locale/tr_TR/fusiondirectory.po      |   6 +-
 personal/locale/ug/fusiondirectory.po         |   6 +-
 personal/locale/vi_VN/fusiondirectory.po      |   6 +-
 personal/locale/zh/fusiondirectory.po         |   6 +-
 personal/locale/zh_TW/fusiondirectory.po      |   6 +-
 posix/locale/af_ZA/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/ar/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/ca/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/cs_CZ/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/de/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/el_GR/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/es/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/es_CO/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/es_VE/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/fa_IR/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/fi_FI/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/fr/fusiondirectory.po            | 214 +++++++++---------
 posix/locale/hu_HU/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/id/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/it_IT/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/ja/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/ko/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/lv/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/nb/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/nl/fusiondirectory.po            | 214 +++++++++---------
 posix/locale/pl/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/pt/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/pt_BR/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/ru/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/ru@petr1708/fusiondirectory.po   | 210 +++++++++--------
 posix/locale/sv/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/tr_TR/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/ug/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/vi_VN/fusiondirectory.po         | 210 +++++++++--------
 posix/locale/zh/fusiondirectory.po            | 210 +++++++++--------
 posix/locale/zh_TW/fusiondirectory.po         | 210 +++++++++--------
 postfix/locale/af_ZA/fusiondirectory.po       |   2 +-
 postfix/locale/ar/fusiondirectory.po          |   2 +-
 postfix/locale/ca/fusiondirectory.po          |   2 +-
 postfix/locale/cs_CZ/fusiondirectory.po       |   2 +-
 postfix/locale/de/fusiondirectory.po          |   2 +-
 postfix/locale/el_GR/fusiondirectory.po       |   2 +-
 postfix/locale/es/fusiondirectory.po          |   2 +-
 postfix/locale/es_CO/fusiondirectory.po       |   2 +-
 postfix/locale/es_VE/fusiondirectory.po       |   2 +-
 postfix/locale/fa_IR/fusiondirectory.po       |   2 +-
 postfix/locale/fi_FI/fusiondirectory.po       |   2 +-
 postfix/locale/fr/fusiondirectory.po          |   6 +-
 postfix/locale/hu_HU/fusiondirectory.po       |   2 +-
 postfix/locale/id/fusiondirectory.po          |   2 +-
 postfix/locale/it_IT/fusiondirectory.po       |   2 +-
 postfix/locale/ja/fusiondirectory.po          |   2 +-
 postfix/locale/ko/fusiondirectory.po          |   2 +-
 postfix/locale/lv/fusiondirectory.po          |   2 +-
 postfix/locale/nb/fusiondirectory.po          |   2 +-
 postfix/locale/nl/fusiondirectory.po          |   2 +-
 postfix/locale/pl/fusiondirectory.po          |   2 +-
 postfix/locale/pt/fusiondirectory.po          |   2 +-
 postfix/locale/pt_BR/fusiondirectory.po       |   2 +-
 postfix/locale/ru/fusiondirectory.po          |   2 +-
 postfix/locale/ru@petr1708/fusiondirectory.po |   2 +-
 postfix/locale/sv/fusiondirectory.po          |   2 +-
 postfix/locale/tr_TR/fusiondirectory.po       |   2 +-
 postfix/locale/ug/fusiondirectory.po          |   2 +-
 postfix/locale/vi_VN/fusiondirectory.po       |   2 +-
 postfix/locale/zh/fusiondirectory.po          |   2 +-
 postfix/locale/zh_TW/fusiondirectory.po       |   2 +-
 ppolicy/locale/af_ZA/fusiondirectory.po       |   2 +-
 ppolicy/locale/ar/fusiondirectory.po          |   2 +-
 ppolicy/locale/ca/fusiondirectory.po          |   2 +-
 ppolicy/locale/cs_CZ/fusiondirectory.po       |   2 +-
 ppolicy/locale/de/fusiondirectory.po          |   2 +-
 ppolicy/locale/el_GR/fusiondirectory.po       |   2 +-
 ppolicy/locale/es/fusiondirectory.po          |   2 +-
 ppolicy/locale/es_CO/fusiondirectory.po       |   2 +-
 ppolicy/locale/es_VE/fusiondirectory.po       |   2 +-
 ppolicy/locale/fa_IR/fusiondirectory.po       |   2 +-
 ppolicy/locale/fi_FI/fusiondirectory.po       |   2 +-
 ppolicy/locale/fr/fusiondirectory.po          |   2 +-
 ppolicy/locale/hu_HU/fusiondirectory.po       |   2 +-
 ppolicy/locale/id/fusiondirectory.po          |   2 +-
 ppolicy/locale/it_IT/fusiondirectory.po       |   2 +-
 ppolicy/locale/ja/fusiondirectory.po          |   2 +-
 ppolicy/locale/ko/fusiondirectory.po          |   2 +-
 ppolicy/locale/lv/fusiondirectory.po          |   2 +-
 ppolicy/locale/nb/fusiondirectory.po          |   2 +-
 ppolicy/locale/nl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt_BR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ru/fusiondirectory.po          |   2 +-
 ppolicy/locale/ru@petr1708/fusiondirectory.po |   2 +-
 ppolicy/locale/sv/fusiondirectory.po          |   2 +-
 ppolicy/locale/tr_TR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ug/fusiondirectory.po          |   2 +-
 ppolicy/locale/vi_VN/fusiondirectory.po       |   2 +-
 ppolicy/locale/zh/fusiondirectory.po          |   2 +-
 ppolicy/locale/zh_TW/fusiondirectory.po       |   2 +-
 puppet/locale/af_ZA/fusiondirectory.po        |   2 +-
 puppet/locale/ar/fusiondirectory.po           |   2 +-
 puppet/locale/ca/fusiondirectory.po           |   2 +-
 puppet/locale/cs_CZ/fusiondirectory.po        |   2 +-
 puppet/locale/de/fusiondirectory.po           |   2 +-
 puppet/locale/el_GR/fusiondirectory.po        |   2 +-
 puppet/locale/es/fusiondirectory.po           |   2 +-
 puppet/locale/es_CO/fusiondirectory.po        |   2 +-
 puppet/locale/es_VE/fusiondirectory.po        |   2 +-
 puppet/locale/fa_IR/fusiondirectory.po        |   2 +-
 puppet/locale/fi_FI/fusiondirectory.po        |   2 +-
 puppet/locale/fr/fusiondirectory.po           |   2 +-
 puppet/locale/hu_HU/fusiondirectory.po        |   2 +-
 puppet/locale/id/fusiondirectory.po           |   2 +-
 puppet/locale/it_IT/fusiondirectory.po        |   2 +-
 puppet/locale/ja/fusiondirectory.po           |   2 +-
 puppet/locale/ko/fusiondirectory.po           |   2 +-
 puppet/locale/lv/fusiondirectory.po           |   2 +-
 puppet/locale/nb/fusiondirectory.po           |   2 +-
 puppet/locale/nl/fusiondirectory.po           |   2 +-
 puppet/locale/pl/fusiondirectory.po           |   2 +-
 puppet/locale/pt/fusiondirectory.po           |   2 +-
 puppet/locale/pt_BR/fusiondirectory.po        |   2 +-
 puppet/locale/ru/fusiondirectory.po           |   2 +-
 puppet/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 puppet/locale/sv/fusiondirectory.po           |   2 +-
 puppet/locale/tr_TR/fusiondirectory.po        |   2 +-
 puppet/locale/ug/fusiondirectory.po           |   2 +-
 puppet/locale/vi_VN/fusiondirectory.po        |   2 +-
 puppet/locale/zh/fusiondirectory.po           |   2 +-
 puppet/locale/zh_TW/fusiondirectory.po        |   2 +-
 pureftpd/locale/af_ZA/fusiondirectory.po      |   2 +-
 pureftpd/locale/ar/fusiondirectory.po         |   2 +-
 pureftpd/locale/ca/fusiondirectory.po         |   2 +-
 pureftpd/locale/cs_CZ/fusiondirectory.po      |   2 +-
 pureftpd/locale/de/fusiondirectory.po         |   2 +-
 pureftpd/locale/el_GR/fusiondirectory.po      |   2 +-
 pureftpd/locale/es/fusiondirectory.po         |   2 +-
 pureftpd/locale/es_CO/fusiondirectory.po      |   2 +-
 pureftpd/locale/es_VE/fusiondirectory.po      |   2 +-
 pureftpd/locale/fa_IR/fusiondirectory.po      |   2 +-
 pureftpd/locale/fi_FI/fusiondirectory.po      |   2 +-
 pureftpd/locale/fr/fusiondirectory.po         |   2 +-
 pureftpd/locale/hu_HU/fusiondirectory.po      |   2 +-
 pureftpd/locale/id/fusiondirectory.po         |   2 +-
 pureftpd/locale/it_IT/fusiondirectory.po      |   2 +-
 pureftpd/locale/ja/fusiondirectory.po         |   2 +-
 pureftpd/locale/ko/fusiondirectory.po         |   2 +-
 pureftpd/locale/lv/fusiondirectory.po         |   2 +-
 pureftpd/locale/nb/fusiondirectory.po         |   2 +-
 pureftpd/locale/nl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt_BR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 pureftpd/locale/sv/fusiondirectory.po         |   2 +-
 pureftpd/locale/tr_TR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ug/fusiondirectory.po         |   2 +-
 pureftpd/locale/vi_VN/fusiondirectory.po      |   2 +-
 pureftpd/locale/zh/fusiondirectory.po         |   2 +-
 pureftpd/locale/zh_TW/fusiondirectory.po      |   2 +-
 quota/locale/af_ZA/fusiondirectory.po         |   2 +-
 quota/locale/ar/fusiondirectory.po            |   2 +-
 quota/locale/ca/fusiondirectory.po            |   2 +-
 quota/locale/cs_CZ/fusiondirectory.po         |   2 +-
 quota/locale/de/fusiondirectory.po            |   2 +-
 quota/locale/el_GR/fusiondirectory.po         |   2 +-
 quota/locale/es/fusiondirectory.po            |   2 +-
 quota/locale/es_CO/fusiondirectory.po         |   2 +-
 quota/locale/es_VE/fusiondirectory.po         |   2 +-
 quota/locale/fa_IR/fusiondirectory.po         |   2 +-
 quota/locale/fi_FI/fusiondirectory.po         |   2 +-
 quota/locale/fr/fusiondirectory.po            |   2 +-
 quota/locale/hu_HU/fusiondirectory.po         |   2 +-
 quota/locale/id/fusiondirectory.po            |   2 +-
 quota/locale/it_IT/fusiondirectory.po         |   2 +-
 quota/locale/ja/fusiondirectory.po            |   2 +-
 quota/locale/ko/fusiondirectory.po            |   2 +-
 quota/locale/lv/fusiondirectory.po            |   2 +-
 quota/locale/nb/fusiondirectory.po            |   2 +-
 quota/locale/nl/fusiondirectory.po            |   2 +-
 quota/locale/pl/fusiondirectory.po            |   2 +-
 quota/locale/pt/fusiondirectory.po            |   2 +-
 quota/locale/pt_BR/fusiondirectory.po         |   2 +-
 quota/locale/ru/fusiondirectory.po            |   2 +-
 quota/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 quota/locale/sv/fusiondirectory.po            |   2 +-
 quota/locale/tr_TR/fusiondirectory.po         |   2 +-
 quota/locale/ug/fusiondirectory.po            |   2 +-
 quota/locale/vi_VN/fusiondirectory.po         |   2 +-
 quota/locale/zh/fusiondirectory.po            |   2 +-
 quota/locale/zh_TW/fusiondirectory.po         |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 renater-partage/locale/ar/fusiondirectory.po  |   2 +-
 renater-partage/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 renater-partage/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 renater-partage/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 renater-partage/locale/fr/fusiondirectory.po  |   6 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 renater-partage/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 renater-partage/locale/ja/fusiondirectory.po  |   2 +-
 renater-partage/locale/ko/fusiondirectory.po  |   2 +-
 renater-partage/locale/lv/fusiondirectory.po  |   2 +-
 renater-partage/locale/nb/fusiondirectory.po  |   2 +-
 renater-partage/locale/nl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 renater-partage/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 renater-partage/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 renater-partage/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 renater-partage/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 repository/locale/af_ZA/fusiondirectory.po    |   2 +-
 repository/locale/ar/fusiondirectory.po       |   2 +-
 repository/locale/ca/fusiondirectory.po       |   2 +-
 repository/locale/cs_CZ/fusiondirectory.po    |   2 +-
 repository/locale/de/fusiondirectory.po       |   2 +-
 repository/locale/el_GR/fusiondirectory.po    |   2 +-
 repository/locale/es/fusiondirectory.po       |   2 +-
 repository/locale/es_CO/fusiondirectory.po    |   2 +-
 repository/locale/es_VE/fusiondirectory.po    |   2 +-
 repository/locale/fa_IR/fusiondirectory.po    |   2 +-
 repository/locale/fi_FI/fusiondirectory.po    |   2 +-
 repository/locale/fr/fusiondirectory.po       |   2 +-
 repository/locale/hu_HU/fusiondirectory.po    |   2 +-
 repository/locale/id/fusiondirectory.po       |   2 +-
 repository/locale/it_IT/fusiondirectory.po    |   2 +-
 repository/locale/ja/fusiondirectory.po       |   2 +-
 repository/locale/ko/fusiondirectory.po       |   2 +-
 repository/locale/lv/fusiondirectory.po       |   2 +-
 repository/locale/nb/fusiondirectory.po       |   2 +-
 repository/locale/nl/fusiondirectory.po       |   2 +-
 repository/locale/pl/fusiondirectory.po       |   2 +-
 repository/locale/pt/fusiondirectory.po       |   2 +-
 repository/locale/pt_BR/fusiondirectory.po    |   2 +-
 repository/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 repository/locale/sv/fusiondirectory.po       |   2 +-
 repository/locale/tr_TR/fusiondirectory.po    |   2 +-
 repository/locale/ug/fusiondirectory.po       |   2 +-
 repository/locale/vi_VN/fusiondirectory.po    |   2 +-
 repository/locale/zh/fusiondirectory.po       |   2 +-
 repository/locale/zh_TW/fusiondirectory.po    |   2 +-
 samba/locale/af_ZA/fusiondirectory.po         |   2 +-
 samba/locale/ar/fusiondirectory.po            |   2 +-
 samba/locale/ca/fusiondirectory.po            |   2 +-
 samba/locale/cs_CZ/fusiondirectory.po         |   2 +-
 samba/locale/de/fusiondirectory.po            |   2 +-
 samba/locale/el_GR/fusiondirectory.po         |   2 +-
 samba/locale/es/fusiondirectory.po            |   2 +-
 samba/locale/es_CO/fusiondirectory.po         |   2 +-
 samba/locale/es_VE/fusiondirectory.po         |   2 +-
 samba/locale/fa_IR/fusiondirectory.po         |   2 +-
 samba/locale/fi_FI/fusiondirectory.po         |   2 +-
 samba/locale/fr/fusiondirectory.po            |   2 +-
 samba/locale/hu_HU/fusiondirectory.po         |   2 +-
 samba/locale/id/fusiondirectory.po            |   2 +-
 samba/locale/it_IT/fusiondirectory.po         |   2 +-
 samba/locale/ja/fusiondirectory.po            |   2 +-
 samba/locale/ko/fusiondirectory.po            |   2 +-
 samba/locale/lv/fusiondirectory.po            |   2 +-
 samba/locale/nb/fusiondirectory.po            |   2 +-
 samba/locale/nl/fusiondirectory.po            |   2 +-
 samba/locale/pl/fusiondirectory.po            |   2 +-
 samba/locale/pt/fusiondirectory.po            |   2 +-
 samba/locale/pt_BR/fusiondirectory.po         |   2 +-
 samba/locale/ru/fusiondirectory.po            |   2 +-
 samba/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 samba/locale/sv/fusiondirectory.po            |   2 +-
 samba/locale/tr_TR/fusiondirectory.po         |   2 +-
 samba/locale/ug/fusiondirectory.po            |   2 +-
 samba/locale/vi_VN/fusiondirectory.po         |   2 +-
 samba/locale/zh/fusiondirectory.po            |   2 +-
 samba/locale/zh_TW/fusiondirectory.po         |   2 +-
 sinaps/locale/af_ZA/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/ar/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/ca/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/cs_CZ/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/de/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/el_GR/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/es/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/es_CO/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/es_VE/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/fa_IR/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/fi_FI/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/fr/fusiondirectory.po           | 129 +++++++----
 sinaps/locale/hu_HU/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/id/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/it_IT/fusiondirectory.po        | 128 +++++++----
 sinaps/locale/ja/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/ko/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/lv/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/nb/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/nl/fusiondirectory.po           | 125 ++++++----
 sinaps/locale/pl/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/pt/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/pt_BR/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/ru/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/ru@petr1708/fusiondirectory.po  | 121 +++++++---
 sinaps/locale/sv/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/tr_TR/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/ug/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/vi_VN/fusiondirectory.po        | 121 +++++++---
 sinaps/locale/zh/fusiondirectory.po           | 121 +++++++---
 sinaps/locale/zh_TW/fusiondirectory.po        | 121 +++++++---
 sogo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sogo/locale/ar/fusiondirectory.po             |   2 +-
 sogo/locale/ca/fusiondirectory.po             |   2 +-
 sogo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sogo/locale/de/fusiondirectory.po             |   2 +-
 sogo/locale/el_GR/fusiondirectory.po          |   2 +-
 sogo/locale/es/fusiondirectory.po             |   2 +-
 sogo/locale/es_CO/fusiondirectory.po          |   2 +-
 sogo/locale/es_VE/fusiondirectory.po          |   2 +-
 sogo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sogo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sogo/locale/fr/fusiondirectory.po             |   2 +-
 sogo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sogo/locale/id/fusiondirectory.po             |   2 +-
 sogo/locale/it_IT/fusiondirectory.po          |   2 +-
 sogo/locale/ja/fusiondirectory.po             |   2 +-
 sogo/locale/ko/fusiondirectory.po             |   2 +-
 sogo/locale/lv/fusiondirectory.po             |   2 +-
 sogo/locale/nb/fusiondirectory.po             |   2 +-
 sogo/locale/nl/fusiondirectory.po             |   2 +-
 sogo/locale/pl/fusiondirectory.po             |   2 +-
 sogo/locale/pt/fusiondirectory.po             |   2 +-
 sogo/locale/pt_BR/fusiondirectory.po          |   2 +-
 sogo/locale/ru/fusiondirectory.po             |   2 +-
 sogo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sogo/locale/sv/fusiondirectory.po             |   2 +-
 sogo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sogo/locale/ug/fusiondirectory.po             |   2 +-
 sogo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sogo/locale/zh/fusiondirectory.po             |   2 +-
 sogo/locale/zh_TW/fusiondirectory.po          |   2 +-
 spamassassin/locale/af_ZA/fusiondirectory.po  |   2 +-
 spamassassin/locale/ar/fusiondirectory.po     |   2 +-
 spamassassin/locale/ca/fusiondirectory.po     |   2 +-
 spamassassin/locale/cs_CZ/fusiondirectory.po  |   2 +-
 spamassassin/locale/de/fusiondirectory.po     |   2 +-
 spamassassin/locale/el_GR/fusiondirectory.po  |   2 +-
 spamassassin/locale/es/fusiondirectory.po     |   2 +-
 spamassassin/locale/es_CO/fusiondirectory.po  |   2 +-
 spamassassin/locale/es_VE/fusiondirectory.po  |   2 +-
 spamassassin/locale/fa_IR/fusiondirectory.po  |   2 +-
 spamassassin/locale/fi_FI/fusiondirectory.po  |   2 +-
 spamassassin/locale/fr/fusiondirectory.po     |   2 +-
 spamassassin/locale/hu_HU/fusiondirectory.po  |   2 +-
 spamassassin/locale/id/fusiondirectory.po     |   2 +-
 spamassassin/locale/it_IT/fusiondirectory.po  |   2 +-
 spamassassin/locale/ja/fusiondirectory.po     |   2 +-
 spamassassin/locale/ko/fusiondirectory.po     |   2 +-
 spamassassin/locale/lv/fusiondirectory.po     |   2 +-
 spamassassin/locale/nb/fusiondirectory.po     |   2 +-
 spamassassin/locale/nl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt_BR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 spamassassin/locale/sv/fusiondirectory.po     |   2 +-
 spamassassin/locale/tr_TR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ug/fusiondirectory.po     |   2 +-
 spamassassin/locale/vi_VN/fusiondirectory.po  |   2 +-
 spamassassin/locale/zh/fusiondirectory.po     |   2 +-
 spamassassin/locale/zh_TW/fusiondirectory.po  |   2 +-
 squid/locale/af_ZA/fusiondirectory.po         |   2 +-
 squid/locale/ar/fusiondirectory.po            |   2 +-
 squid/locale/ca/fusiondirectory.po            |   2 +-
 squid/locale/cs_CZ/fusiondirectory.po         |   2 +-
 squid/locale/de/fusiondirectory.po            |   2 +-
 squid/locale/el_GR/fusiondirectory.po         |   2 +-
 squid/locale/es/fusiondirectory.po            |   2 +-
 squid/locale/es_CO/fusiondirectory.po         |   2 +-
 squid/locale/es_VE/fusiondirectory.po         |   2 +-
 squid/locale/fa_IR/fusiondirectory.po         |   2 +-
 squid/locale/fi_FI/fusiondirectory.po         |   2 +-
 squid/locale/fr/fusiondirectory.po            |   2 +-
 squid/locale/hu_HU/fusiondirectory.po         |   2 +-
 squid/locale/id/fusiondirectory.po            |   2 +-
 squid/locale/it_IT/fusiondirectory.po         |   2 +-
 squid/locale/ja/fusiondirectory.po            |   2 +-
 squid/locale/ko/fusiondirectory.po            |   2 +-
 squid/locale/lv/fusiondirectory.po            |   2 +-
 squid/locale/nb/fusiondirectory.po            |   2 +-
 squid/locale/nl/fusiondirectory.po            |   2 +-
 squid/locale/pl/fusiondirectory.po            |   2 +-
 squid/locale/pt/fusiondirectory.po            |   2 +-
 squid/locale/pt_BR/fusiondirectory.po         |   2 +-
 squid/locale/ru/fusiondirectory.po            |   2 +-
 squid/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 squid/locale/sv/fusiondirectory.po            |   2 +-
 squid/locale/tr_TR/fusiondirectory.po         |   2 +-
 squid/locale/ug/fusiondirectory.po            |   2 +-
 squid/locale/vi_VN/fusiondirectory.po         |   2 +-
 squid/locale/zh/fusiondirectory.po            |   2 +-
 squid/locale/zh_TW/fusiondirectory.po         |   2 +-
 ssh/locale/af_ZA/fusiondirectory.po           |   2 +-
 ssh/locale/ar/fusiondirectory.po              |   2 +-
 ssh/locale/ca/fusiondirectory.po              |   2 +-
 ssh/locale/cs_CZ/fusiondirectory.po           |   2 +-
 ssh/locale/de/fusiondirectory.po              |   2 +-
 ssh/locale/el_GR/fusiondirectory.po           |   2 +-
 ssh/locale/es/fusiondirectory.po              |   2 +-
 ssh/locale/es_CO/fusiondirectory.po           |   2 +-
 ssh/locale/es_VE/fusiondirectory.po           |   2 +-
 ssh/locale/fa_IR/fusiondirectory.po           |   2 +-
 ssh/locale/fi_FI/fusiondirectory.po           |   2 +-
 ssh/locale/fr/fusiondirectory.po              |   2 +-
 ssh/locale/hu_HU/fusiondirectory.po           |   2 +-
 ssh/locale/id/fusiondirectory.po              |   2 +-
 ssh/locale/it_IT/fusiondirectory.po           |   2 +-
 ssh/locale/ja/fusiondirectory.po              |   2 +-
 ssh/locale/ko/fusiondirectory.po              |   2 +-
 ssh/locale/lv/fusiondirectory.po              |   2 +-
 ssh/locale/nb/fusiondirectory.po              |   2 +-
 ssh/locale/nl/fusiondirectory.po              |   2 +-
 ssh/locale/pl/fusiondirectory.po              |   2 +-
 ssh/locale/pt/fusiondirectory.po              |   2 +-
 ssh/locale/pt_BR/fusiondirectory.po           |   2 +-
 ssh/locale/ru/fusiondirectory.po              |   2 +-
 ssh/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ssh/locale/sv/fusiondirectory.po              |   2 +-
 ssh/locale/tr_TR/fusiondirectory.po           |   2 +-
 ssh/locale/ug/fusiondirectory.po              |   2 +-
 ssh/locale/vi_VN/fusiondirectory.po           |   2 +-
 ssh/locale/zh/fusiondirectory.po              |   2 +-
 ssh/locale/zh_TW/fusiondirectory.po           |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 subcontracting/locale/ar/fusiondirectory.po   |   2 +-
 subcontracting/locale/ca/fusiondirectory.po   |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 subcontracting/locale/de/fusiondirectory.po   |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 subcontracting/locale/es/fusiondirectory.po   |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 subcontracting/locale/fr/fusiondirectory.po   |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 subcontracting/locale/id/fusiondirectory.po   |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 subcontracting/locale/ja/fusiondirectory.po   |   2 +-
 subcontracting/locale/ko/fusiondirectory.po   |   2 +-
 subcontracting/locale/lv/fusiondirectory.po   |   2 +-
 subcontracting/locale/nb/fusiondirectory.po   |   2 +-
 subcontracting/locale/nl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pt/fusiondirectory.po   |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ru/fusiondirectory.po   |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 subcontracting/locale/sv/fusiondirectory.po   |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ug/fusiondirectory.po   |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 subcontracting/locale/zh/fusiondirectory.po   |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 sudo/locale/af_ZA/fusiondirectory.po          |   6 +-
 sudo/locale/ar/fusiondirectory.po             |   6 +-
 sudo/locale/ca/fusiondirectory.po             |   6 +-
 sudo/locale/cs_CZ/fusiondirectory.po          |   6 +-
 sudo/locale/de/fusiondirectory.po             |   6 +-
 sudo/locale/el_GR/fusiondirectory.po          |   6 +-
 sudo/locale/es/fusiondirectory.po             |   6 +-
 sudo/locale/es_CO/fusiondirectory.po          |   6 +-
 sudo/locale/es_VE/fusiondirectory.po          |   6 +-
 sudo/locale/fa_IR/fusiondirectory.po          |   6 +-
 sudo/locale/fi_FI/fusiondirectory.po          |   6 +-
 sudo/locale/fr/fusiondirectory.po             |  10 +-
 sudo/locale/hu_HU/fusiondirectory.po          |   6 +-
 sudo/locale/id/fusiondirectory.po             |   6 +-
 sudo/locale/it_IT/fusiondirectory.po          |   6 +-
 sudo/locale/ja/fusiondirectory.po             |   6 +-
 sudo/locale/ko/fusiondirectory.po             |   6 +-
 sudo/locale/lv/fusiondirectory.po             |   6 +-
 sudo/locale/nb/fusiondirectory.po             |   6 +-
 sudo/locale/nl/fusiondirectory.po             |   6 +-
 sudo/locale/pl/fusiondirectory.po             |   6 +-
 sudo/locale/pt/fusiondirectory.po             |   6 +-
 sudo/locale/pt_BR/fusiondirectory.po          |   6 +-
 sudo/locale/ru/fusiondirectory.po             |   6 +-
 sudo/locale/ru@petr1708/fusiondirectory.po    |   6 +-
 sudo/locale/sv/fusiondirectory.po             |   6 +-
 sudo/locale/tr_TR/fusiondirectory.po          |   6 +-
 sudo/locale/ug/fusiondirectory.po             |   6 +-
 sudo/locale/vi_VN/fusiondirectory.po          |   6 +-
 sudo/locale/zh/fusiondirectory.po             |   6 +-
 sudo/locale/zh_TW/fusiondirectory.po          |   6 +-
 supann/locale/af_ZA/fusiondirectory.po        |   2 +-
 supann/locale/ar/fusiondirectory.po           |   2 +-
 supann/locale/ca/fusiondirectory.po           |   2 +-
 supann/locale/cs_CZ/fusiondirectory.po        |   2 +-
 supann/locale/de/fusiondirectory.po           |   2 +-
 supann/locale/el_GR/fusiondirectory.po        |   2 +-
 supann/locale/es/fusiondirectory.po           |   2 +-
 supann/locale/es_CO/fusiondirectory.po        |   2 +-
 supann/locale/es_VE/fusiondirectory.po        |   2 +-
 supann/locale/fa_IR/fusiondirectory.po        |   2 +-
 supann/locale/fi_FI/fusiondirectory.po        |   2 +-
 supann/locale/fr/fusiondirectory.po           |   6 +-
 supann/locale/hu_HU/fusiondirectory.po        |   2 +-
 supann/locale/id/fusiondirectory.po           |   2 +-
 supann/locale/it_IT/fusiondirectory.po        |   2 +-
 supann/locale/ja/fusiondirectory.po           |   2 +-
 supann/locale/ko/fusiondirectory.po           |   2 +-
 supann/locale/lv/fusiondirectory.po           |   2 +-
 supann/locale/nb/fusiondirectory.po           |   2 +-
 supann/locale/nl/fusiondirectory.po           |   2 +-
 supann/locale/pl/fusiondirectory.po           |   2 +-
 supann/locale/pt/fusiondirectory.po           |   2 +-
 supann/locale/pt_BR/fusiondirectory.po        |   2 +-
 supann/locale/ru/fusiondirectory.po           |   2 +-
 supann/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 supann/locale/sv/fusiondirectory.po           |   2 +-
 supann/locale/tr_TR/fusiondirectory.po        |   2 +-
 supann/locale/ug/fusiondirectory.po           |   2 +-
 supann/locale/vi_VN/fusiondirectory.po        |   2 +-
 supann/locale/zh/fusiondirectory.po           |   2 +-
 supann/locale/zh_TW/fusiondirectory.po        |   2 +-
 sympa/locale/af_ZA/fusiondirectory.po         |   2 +-
 sympa/locale/ar/fusiondirectory.po            |   2 +-
 sympa/locale/ca/fusiondirectory.po            |   2 +-
 sympa/locale/cs_CZ/fusiondirectory.po         |   2 +-
 sympa/locale/de/fusiondirectory.po            |   2 +-
 sympa/locale/el_GR/fusiondirectory.po         |   2 +-
 sympa/locale/es/fusiondirectory.po            |   2 +-
 sympa/locale/es_CO/fusiondirectory.po         |   2 +-
 sympa/locale/es_VE/fusiondirectory.po         |   2 +-
 sympa/locale/fa_IR/fusiondirectory.po         |   2 +-
 sympa/locale/fi_FI/fusiondirectory.po         |   2 +-
 sympa/locale/fr/fusiondirectory.po            |   2 +-
 sympa/locale/hu_HU/fusiondirectory.po         |   2 +-
 sympa/locale/id/fusiondirectory.po            |   2 +-
 sympa/locale/it_IT/fusiondirectory.po         |   2 +-
 sympa/locale/ja/fusiondirectory.po            |   2 +-
 sympa/locale/ko/fusiondirectory.po            |   2 +-
 sympa/locale/lv/fusiondirectory.po            |   2 +-
 sympa/locale/nb/fusiondirectory.po            |   2 +-
 sympa/locale/nl/fusiondirectory.po            |   2 +-
 sympa/locale/pl/fusiondirectory.po            |   2 +-
 sympa/locale/pt/fusiondirectory.po            |   2 +-
 sympa/locale/pt_BR/fusiondirectory.po         |   2 +-
 sympa/locale/ru/fusiondirectory.po            |   2 +-
 sympa/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 sympa/locale/sv/fusiondirectory.po            |   2 +-
 sympa/locale/tr_TR/fusiondirectory.po         |   2 +-
 sympa/locale/ug/fusiondirectory.po            |   2 +-
 sympa/locale/vi_VN/fusiondirectory.po         |   2 +-
 sympa/locale/zh/fusiondirectory.po            |   2 +-
 sympa/locale/zh_TW/fusiondirectory.po         |   2 +-
 systems/locale/af_ZA/fusiondirectory.po       |   2 +-
 systems/locale/ar/fusiondirectory.po          |   2 +-
 systems/locale/ca/fusiondirectory.po          |   2 +-
 systems/locale/cs_CZ/fusiondirectory.po       |   2 +-
 systems/locale/de/fusiondirectory.po          |   2 +-
 systems/locale/el_GR/fusiondirectory.po       |   2 +-
 systems/locale/es/fusiondirectory.po          |   2 +-
 systems/locale/es_CO/fusiondirectory.po       |   2 +-
 systems/locale/es_VE/fusiondirectory.po       |   2 +-
 systems/locale/fa_IR/fusiondirectory.po       |   2 +-
 systems/locale/fi_FI/fusiondirectory.po       |   2 +-
 systems/locale/fr/fusiondirectory.po          |   6 +-
 systems/locale/hu_HU/fusiondirectory.po       |   2 +-
 systems/locale/id/fusiondirectory.po          |   2 +-
 systems/locale/it_IT/fusiondirectory.po       |   2 +-
 systems/locale/ja/fusiondirectory.po          |   2 +-
 systems/locale/ko/fusiondirectory.po          |   2 +-
 systems/locale/lv/fusiondirectory.po          |   2 +-
 systems/locale/nb/fusiondirectory.po          |   2 +-
 systems/locale/nl/fusiondirectory.po          |   6 +-
 systems/locale/pl/fusiondirectory.po          |   2 +-
 systems/locale/pt/fusiondirectory.po          |   2 +-
 systems/locale/pt_BR/fusiondirectory.po       |   2 +-
 systems/locale/ru/fusiondirectory.po          |   2 +-
 systems/locale/ru@petr1708/fusiondirectory.po |   2 +-
 systems/locale/sv/fusiondirectory.po          |   2 +-
 systems/locale/tr_TR/fusiondirectory.po       |   2 +-
 systems/locale/ug/fusiondirectory.po          |   2 +-
 systems/locale/vi_VN/fusiondirectory.po       |   2 +-
 systems/locale/zh/fusiondirectory.po          |   2 +-
 systems/locale/zh_TW/fusiondirectory.po       |   2 +-
 user-reminder/locale/af_ZA/fusiondirectory.po |   2 +-
 user-reminder/locale/ar/fusiondirectory.po    |   2 +-
 user-reminder/locale/ca/fusiondirectory.po    |   2 +-
 user-reminder/locale/cs_CZ/fusiondirectory.po |   2 +-
 user-reminder/locale/de/fusiondirectory.po    |   2 +-
 user-reminder/locale/el_GR/fusiondirectory.po |   2 +-
 user-reminder/locale/es/fusiondirectory.po    |   2 +-
 user-reminder/locale/es_CO/fusiondirectory.po |   2 +-
 user-reminder/locale/es_VE/fusiondirectory.po |   2 +-
 user-reminder/locale/fa_IR/fusiondirectory.po |   2 +-
 user-reminder/locale/fi_FI/fusiondirectory.po |   2 +-
 user-reminder/locale/fr/fusiondirectory.po    |   6 +-
 user-reminder/locale/hu_HU/fusiondirectory.po |   2 +-
 user-reminder/locale/id/fusiondirectory.po    |   2 +-
 user-reminder/locale/it_IT/fusiondirectory.po |   2 +-
 user-reminder/locale/ja/fusiondirectory.po    |   2 +-
 user-reminder/locale/ko/fusiondirectory.po    |   2 +-
 user-reminder/locale/lv/fusiondirectory.po    |   2 +-
 user-reminder/locale/nb/fusiondirectory.po    |   2 +-
 user-reminder/locale/nl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt_BR/fusiondirectory.po |   2 +-
 user-reminder/locale/ru/fusiondirectory.po    |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 user-reminder/locale/sv/fusiondirectory.po    |   2 +-
 user-reminder/locale/tr_TR/fusiondirectory.po |   2 +-
 user-reminder/locale/ug/fusiondirectory.po    |   2 +-
 user-reminder/locale/vi_VN/fusiondirectory.po |   2 +-
 user-reminder/locale/zh/fusiondirectory.po    |   2 +-
 user-reminder/locale/zh_TW/fusiondirectory.po |   2 +-
 weblink/locale/af_ZA/fusiondirectory.po       |   2 +-
 weblink/locale/ar/fusiondirectory.po          |   2 +-
 weblink/locale/ca/fusiondirectory.po          |   2 +-
 weblink/locale/cs_CZ/fusiondirectory.po       |   2 +-
 weblink/locale/de/fusiondirectory.po          |   2 +-
 weblink/locale/el_GR/fusiondirectory.po       |   2 +-
 weblink/locale/es/fusiondirectory.po          |   2 +-
 weblink/locale/es_CO/fusiondirectory.po       |   2 +-
 weblink/locale/es_VE/fusiondirectory.po       |   2 +-
 weblink/locale/fa_IR/fusiondirectory.po       |   2 +-
 weblink/locale/fi_FI/fusiondirectory.po       |   2 +-
 weblink/locale/fr/fusiondirectory.po          |   6 +-
 weblink/locale/hu_HU/fusiondirectory.po       |   2 +-
 weblink/locale/id/fusiondirectory.po          |   2 +-
 weblink/locale/it_IT/fusiondirectory.po       |   2 +-
 weblink/locale/ja/fusiondirectory.po          |   2 +-
 weblink/locale/ko/fusiondirectory.po          |   2 +-
 weblink/locale/lv/fusiondirectory.po          |   2 +-
 weblink/locale/nb/fusiondirectory.po          |   2 +-
 weblink/locale/nl/fusiondirectory.po          |   2 +-
 weblink/locale/pl/fusiondirectory.po          |   2 +-
 weblink/locale/pt/fusiondirectory.po          |   2 +-
 weblink/locale/pt_BR/fusiondirectory.po       |   2 +-
 weblink/locale/ru/fusiondirectory.po          |   2 +-
 weblink/locale/ru@petr1708/fusiondirectory.po |   2 +-
 weblink/locale/sv/fusiondirectory.po          |   2 +-
 weblink/locale/tr_TR/fusiondirectory.po       |   2 +-
 weblink/locale/ug/fusiondirectory.po          |   2 +-
 weblink/locale/vi_VN/fusiondirectory.po       |   2 +-
 weblink/locale/zh/fusiondirectory.po          |   2 +-
 weblink/locale/zh_TW/fusiondirectory.po       |   2 +-
 webservice/locale/af_ZA/fusiondirectory.po    |   2 +-
 webservice/locale/ar/fusiondirectory.po       |   2 +-
 webservice/locale/ca/fusiondirectory.po       |   2 +-
 webservice/locale/cs_CZ/fusiondirectory.po    |   2 +-
 webservice/locale/de/fusiondirectory.po       |   2 +-
 webservice/locale/el_GR/fusiondirectory.po    |   2 +-
 webservice/locale/es/fusiondirectory.po       |   2 +-
 webservice/locale/es_CO/fusiondirectory.po    |   2 +-
 webservice/locale/es_VE/fusiondirectory.po    |   2 +-
 webservice/locale/fa_IR/fusiondirectory.po    |   2 +-
 webservice/locale/fi_FI/fusiondirectory.po    |   2 +-
 webservice/locale/fr/fusiondirectory.po       |   2 +-
 webservice/locale/hu_HU/fusiondirectory.po    |   2 +-
 webservice/locale/id/fusiondirectory.po       |   2 +-
 webservice/locale/it_IT/fusiondirectory.po    |   2 +-
 webservice/locale/ja/fusiondirectory.po       |   2 +-
 webservice/locale/ko/fusiondirectory.po       |   2 +-
 webservice/locale/lv/fusiondirectory.po       |   2 +-
 webservice/locale/nb/fusiondirectory.po       |   2 +-
 webservice/locale/nl/fusiondirectory.po       |   2 +-
 webservice/locale/pl/fusiondirectory.po       |   2 +-
 webservice/locale/pt/fusiondirectory.po       |   2 +-
 webservice/locale/pt_BR/fusiondirectory.po    |   2 +-
 webservice/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 webservice/locale/sv/fusiondirectory.po       |   2 +-
 webservice/locale/tr_TR/fusiondirectory.po    |   2 +-
 webservice/locale/ug/fusiondirectory.po       |   2 +-
 webservice/locale/vi_VN/fusiondirectory.po    |   2 +-
 webservice/locale/zh/fusiondirectory.po       |   2 +-
 webservice/locale/zh_TW/fusiondirectory.po    |   2 +-
 1581 files changed, 8054 insertions(+), 6622 deletions(-)

diff --git a/alias/locale/af_ZA/fusiondirectory.po b/alias/locale/af_ZA/fusiondirectory.po
index 9e374850a0..3218b68fe7 100644
--- a/alias/locale/af_ZA/fusiondirectory.po
+++ b/alias/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po
index 7ab4f53b62..e91535ad93 100644
--- a/alias/locale/ar/fusiondirectory.po
+++ b/alias/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po
index 77826e7156..d8a800cdd5 100644
--- a/alias/locale/ca/fusiondirectory.po
+++ b/alias/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po
index 6b6648f9db..60cc9aae59 100644
--- a/alias/locale/cs_CZ/fusiondirectory.po
+++ b/alias/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po
index 82410d807e..f6ac903b45 100644
--- a/alias/locale/de/fusiondirectory.po
+++ b/alias/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po
index fd61443316..cd43132abb 100644
--- a/alias/locale/el_GR/fusiondirectory.po
+++ b/alias/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po
index 8570fcf3fe..de7c2abac4 100644
--- a/alias/locale/es/fusiondirectory.po
+++ b/alias/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po
index 9cf14a20d9..1a4a33c32e 100644
--- a/alias/locale/es_CO/fusiondirectory.po
+++ b/alias/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po
index e4ef03e7f7..689d302d2d 100644
--- a/alias/locale/es_VE/fusiondirectory.po
+++ b/alias/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po
index 34c2e9f090..4d7d216407 100644
--- a/alias/locale/fa_IR/fusiondirectory.po
+++ b/alias/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po
index 089d0115a1..7d6f5eddc8 100644
--- a/alias/locale/fi_FI/fusiondirectory.po
+++ b/alias/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po
index 90bb3d4b9b..c553fc1dfd 100644
--- a/alias/locale/fr/fusiondirectory.po
+++ b/alias/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po
index 500ebacdba..0975f35361 100644
--- a/alias/locale/hu_HU/fusiondirectory.po
+++ b/alias/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po
index 5850d81fea..5a0aa5e442 100644
--- a/alias/locale/id/fusiondirectory.po
+++ b/alias/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index 3b16b3c161..3c8439a159 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/alias/locale/ja/fusiondirectory.po b/alias/locale/ja/fusiondirectory.po
index 4bf9314950..b0722d1529 100644
--- a/alias/locale/ja/fusiondirectory.po
+++ b/alias/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ko/fusiondirectory.po b/alias/locale/ko/fusiondirectory.po
index 49bb99c5e3..8c06f11ec1 100644
--- a/alias/locale/ko/fusiondirectory.po
+++ b/alias/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po
index 2ebbfd396e..593ca78a99 100644
--- a/alias/locale/lv/fusiondirectory.po
+++ b/alias/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po
index af79e6e053..75856d1106 100644
--- a/alias/locale/nb/fusiondirectory.po
+++ b/alias/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po
index b8404367c3..61225e27f9 100644
--- a/alias/locale/nl/fusiondirectory.po
+++ b/alias/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po
index 042cd0b341..ea9016d82c 100644
--- a/alias/locale/pl/fusiondirectory.po
+++ b/alias/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po
index c212dd88fa..2c8eae8442 100644
--- a/alias/locale/pt/fusiondirectory.po
+++ b/alias/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po
index b7761509d2..70a0b08b02 100644
--- a/alias/locale/pt_BR/fusiondirectory.po
+++ b/alias/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po
index 0f71aeec54..9186bb32af 100644
--- a/alias/locale/ru/fusiondirectory.po
+++ b/alias/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po
index af3ad693c2..9e2392ab31 100644
--- a/alias/locale/ru@petr1708/fusiondirectory.po
+++ b/alias/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po
index 0e4901d90f..9b9a1fb65b 100644
--- a/alias/locale/sv/fusiondirectory.po
+++ b/alias/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/alias/locale/tr_TR/fusiondirectory.po b/alias/locale/tr_TR/fusiondirectory.po
index 68e06bb3f8..6c34d31813 100644
--- a/alias/locale/tr_TR/fusiondirectory.po
+++ b/alias/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po
index ec5fa009e5..277dc36868 100644
--- a/alias/locale/ug/fusiondirectory.po
+++ b/alias/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po
index 9a1e541c7f..31533ebf4b 100644
--- a/alias/locale/vi_VN/fusiondirectory.po
+++ b/alias/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po
index 7e698a17c9..1a87af1443 100644
--- a/alias/locale/zh/fusiondirectory.po
+++ b/alias/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/alias/locale/zh_TW/fusiondirectory.po b/alias/locale/zh_TW/fusiondirectory.po
index a86f836458..963a1a129f 100644
--- a/alias/locale/zh_TW/fusiondirectory.po
+++ b/alias/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/af_ZA/fusiondirectory.po b/applications/locale/af_ZA/fusiondirectory.po
index c032659ec4..ddb81d1f36 100644
--- a/applications/locale/af_ZA/fusiondirectory.po
+++ b/applications/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po
index d123ad1319..ba93a34ea8 100644
--- a/applications/locale/ar/fusiondirectory.po
+++ b/applications/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po
index 4537e269b7..01fe26f204 100644
--- a/applications/locale/ca/fusiondirectory.po
+++ b/applications/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po
index e8440e59a0..ee032dc281 100644
--- a/applications/locale/cs_CZ/fusiondirectory.po
+++ b/applications/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po
index 3d845517d3..ce9a4cdb63 100644
--- a/applications/locale/de/fusiondirectory.po
+++ b/applications/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po
index c01e2fea2c..8b7715a29b 100644
--- a/applications/locale/el_GR/fusiondirectory.po
+++ b/applications/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po
index 6ac1d928a0..fb920685a8 100644
--- a/applications/locale/es/fusiondirectory.po
+++ b/applications/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po
index ba1a4c1c62..f7fdcdb88f 100644
--- a/applications/locale/es_CO/fusiondirectory.po
+++ b/applications/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po
index 2a70cb2fa6..d4c2c2d1df 100644
--- a/applications/locale/es_VE/fusiondirectory.po
+++ b/applications/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po
index db85b04f10..bbc7c4e632 100644
--- a/applications/locale/fa_IR/fusiondirectory.po
+++ b/applications/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po
index 936522bb39..626cd131ee 100644
--- a/applications/locale/fi_FI/fusiondirectory.po
+++ b/applications/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po
index 01c458abf8..e3ecfdcc78 100644
--- a/applications/locale/fr/fusiondirectory.po
+++ b/applications/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po
index ab2d9143f7..fe3df17c10 100644
--- a/applications/locale/hu_HU/fusiondirectory.po
+++ b/applications/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po
index 9db1260cd4..0d647f4b4f 100644
--- a/applications/locale/id/fusiondirectory.po
+++ b/applications/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po
index 434bd6148f..93c565bc11 100644
--- a/applications/locale/it_IT/fusiondirectory.po
+++ b/applications/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/applications/locale/ja/fusiondirectory.po b/applications/locale/ja/fusiondirectory.po
index 0bf959ad8c..296c823963 100644
--- a/applications/locale/ja/fusiondirectory.po
+++ b/applications/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ko/fusiondirectory.po b/applications/locale/ko/fusiondirectory.po
index 7f81b4f0cb..43bf1f3451 100644
--- a/applications/locale/ko/fusiondirectory.po
+++ b/applications/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po
index 82e7b75583..af5baea0a6 100644
--- a/applications/locale/lv/fusiondirectory.po
+++ b/applications/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po
index 3cebae7b10..e8f4f0c6e3 100644
--- a/applications/locale/nb/fusiondirectory.po
+++ b/applications/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po
index a834a938b2..d8978dd276 100644
--- a/applications/locale/nl/fusiondirectory.po
+++ b/applications/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po
index 4c79654cd1..acbd0cc3c1 100644
--- a/applications/locale/pl/fusiondirectory.po
+++ b/applications/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po
index fcf6e98758..be0e937dc0 100644
--- a/applications/locale/pt/fusiondirectory.po
+++ b/applications/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po
index bb4efde1a9..5536a2b8b0 100644
--- a/applications/locale/pt_BR/fusiondirectory.po
+++ b/applications/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po
index a45919ace0..dc2cf83813 100644
--- a/applications/locale/ru/fusiondirectory.po
+++ b/applications/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po
index 66382916d0..dc1ac40b76 100644
--- a/applications/locale/ru@petr1708/fusiondirectory.po
+++ b/applications/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po
index 98a0d91b4f..2aa61b7b6f 100644
--- a/applications/locale/sv/fusiondirectory.po
+++ b/applications/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/applications/locale/tr_TR/fusiondirectory.po b/applications/locale/tr_TR/fusiondirectory.po
index ca5a94b3a3..36399eb8f9 100644
--- a/applications/locale/tr_TR/fusiondirectory.po
+++ b/applications/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po
index db7d13da54..927fedbd8a 100644
--- a/applications/locale/ug/fusiondirectory.po
+++ b/applications/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po
index 8e02f3af6e..b6e5c48357 100644
--- a/applications/locale/vi_VN/fusiondirectory.po
+++ b/applications/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po
index a11bffdb42..c93e2e5a70 100644
--- a/applications/locale/zh/fusiondirectory.po
+++ b/applications/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/applications/locale/zh_TW/fusiondirectory.po b/applications/locale/zh_TW/fusiondirectory.po
index 2823698277..688de6fd10 100644
--- a/applications/locale/zh_TW/fusiondirectory.po
+++ b/applications/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/af_ZA/fusiondirectory.po b/argonaut/locale/af_ZA/fusiondirectory.po
index da9ffd1e92..e8a762fa6f 100644
--- a/argonaut/locale/af_ZA/fusiondirectory.po
+++ b/argonaut/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po
index 7fcfdec92d..f7e248bbb0 100644
--- a/argonaut/locale/ar/fusiondirectory.po
+++ b/argonaut/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po
index 6a6d7c723f..b4b4b28866 100644
--- a/argonaut/locale/ca/fusiondirectory.po
+++ b/argonaut/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po
index 6681b7468e..4d7d124bf6 100644
--- a/argonaut/locale/cs_CZ/fusiondirectory.po
+++ b/argonaut/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po
index 97d186d60e..e216b90de2 100644
--- a/argonaut/locale/de/fusiondirectory.po
+++ b/argonaut/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po
index 51488ba33e..b169cfd165 100644
--- a/argonaut/locale/el_GR/fusiondirectory.po
+++ b/argonaut/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po
index 2c46da67dd..d0fd8b3711 100644
--- a/argonaut/locale/es/fusiondirectory.po
+++ b/argonaut/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po
index c0e33f695e..75c16ba3b1 100644
--- a/argonaut/locale/es_CO/fusiondirectory.po
+++ b/argonaut/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po
index 414b60ec8e..d48ba2d2d0 100644
--- a/argonaut/locale/es_VE/fusiondirectory.po
+++ b/argonaut/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po
index 28e9e4b98c..87d956b426 100644
--- a/argonaut/locale/fa_IR/fusiondirectory.po
+++ b/argonaut/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po
index fe324c56ca..74dfb8e4fe 100644
--- a/argonaut/locale/fi_FI/fusiondirectory.po
+++ b/argonaut/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po
index e3dc9e2d09..01043b39ed 100644
--- a/argonaut/locale/fr/fusiondirectory.po
+++ b/argonaut/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2019
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2019\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po
index 899912618a..b80112312d 100644
--- a/argonaut/locale/hu_HU/fusiondirectory.po
+++ b/argonaut/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po
index 2398ba146c..6aeeae634e 100644
--- a/argonaut/locale/id/fusiondirectory.po
+++ b/argonaut/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index c514b91ded..8d9f626057 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/argonaut/locale/ja/fusiondirectory.po b/argonaut/locale/ja/fusiondirectory.po
index b69f41b35b..5370da44f2 100644
--- a/argonaut/locale/ja/fusiondirectory.po
+++ b/argonaut/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ko/fusiondirectory.po b/argonaut/locale/ko/fusiondirectory.po
index 534fae9d26..022612d019 100644
--- a/argonaut/locale/ko/fusiondirectory.po
+++ b/argonaut/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po
index 8057e99960..8b01d6e1c4 100644
--- a/argonaut/locale/lv/fusiondirectory.po
+++ b/argonaut/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po
index c0d42406c5..c37025de14 100644
--- a/argonaut/locale/nb/fusiondirectory.po
+++ b/argonaut/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po
index 8b65c73c99..3206ddcad7 100644
--- a/argonaut/locale/nl/fusiondirectory.po
+++ b/argonaut/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po
index 4d9714d38a..08b536d9c8 100644
--- a/argonaut/locale/pl/fusiondirectory.po
+++ b/argonaut/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po
index d4908ad4f8..8337ede1d9 100644
--- a/argonaut/locale/pt/fusiondirectory.po
+++ b/argonaut/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po
index ad8bef31f6..29323cd780 100644
--- a/argonaut/locale/pt_BR/fusiondirectory.po
+++ b/argonaut/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po
index 561ee404a9..e5a728f68d 100644
--- a/argonaut/locale/ru/fusiondirectory.po
+++ b/argonaut/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po
index 812f8d309a..0f7fe31ace 100644
--- a/argonaut/locale/ru@petr1708/fusiondirectory.po
+++ b/argonaut/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po
index 6efc07e623..35c5946d65 100644
--- a/argonaut/locale/sv/fusiondirectory.po
+++ b/argonaut/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/argonaut/locale/tr_TR/fusiondirectory.po b/argonaut/locale/tr_TR/fusiondirectory.po
index d034c4abce..777c285b35 100644
--- a/argonaut/locale/tr_TR/fusiondirectory.po
+++ b/argonaut/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po
index ccd02c6287..45e23585e4 100644
--- a/argonaut/locale/ug/fusiondirectory.po
+++ b/argonaut/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po
index 2fc769d8a4..84de9b3471 100644
--- a/argonaut/locale/vi_VN/fusiondirectory.po
+++ b/argonaut/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po
index c7a728e66b..e40000e1a2 100644
--- a/argonaut/locale/zh/fusiondirectory.po
+++ b/argonaut/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/argonaut/locale/zh_TW/fusiondirectory.po b/argonaut/locale/zh_TW/fusiondirectory.po
index 5cf6a1a007..8f65baa49d 100644
--- a/argonaut/locale/zh_TW/fusiondirectory.po
+++ b/argonaut/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/af_ZA/fusiondirectory.po b/audit/locale/af_ZA/fusiondirectory.po
index a9e4e7f2d7..4a6a9df533 100644
--- a/audit/locale/af_ZA/fusiondirectory.po
+++ b/audit/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po
index cab930809c..4bdb739936 100644
--- a/audit/locale/ar/fusiondirectory.po
+++ b/audit/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po
index fb49fb7ef2..3045090f9f 100644
--- a/audit/locale/ca/fusiondirectory.po
+++ b/audit/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po
index 2b1611d2d5..04ca5a6d94 100644
--- a/audit/locale/cs_CZ/fusiondirectory.po
+++ b/audit/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po
index 53caf93fc0..3af8f49f3d 100644
--- a/audit/locale/de/fusiondirectory.po
+++ b/audit/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po
index 369852e988..9d203825a8 100644
--- a/audit/locale/el_GR/fusiondirectory.po
+++ b/audit/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po
index ab93af7587..8cb59cff3e 100644
--- a/audit/locale/es/fusiondirectory.po
+++ b/audit/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po
index 60a590ebea..fee89d7a63 100644
--- a/audit/locale/es_CO/fusiondirectory.po
+++ b/audit/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po
index 109a897f12..308ecfe59b 100644
--- a/audit/locale/es_VE/fusiondirectory.po
+++ b/audit/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po
index 22322d4319..43e6ecf43e 100644
--- a/audit/locale/fa_IR/fusiondirectory.po
+++ b/audit/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po
index 75f50d62cd..7f246addc5 100644
--- a/audit/locale/fi_FI/fusiondirectory.po
+++ b/audit/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po
index 297377c554..c18fe8a027 100644
--- a/audit/locale/fr/fusiondirectory.po
+++ b/audit/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po
index 4b39184c8e..0e11707149 100644
--- a/audit/locale/hu_HU/fusiondirectory.po
+++ b/audit/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po
index bf587e9611..aabc88ccc4 100644
--- a/audit/locale/id/fusiondirectory.po
+++ b/audit/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index ec3f0b1510..31eb4b0225 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/audit/locale/ja/fusiondirectory.po b/audit/locale/ja/fusiondirectory.po
index 36e202b25e..11661d7065 100644
--- a/audit/locale/ja/fusiondirectory.po
+++ b/audit/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ko/fusiondirectory.po b/audit/locale/ko/fusiondirectory.po
index d54eaed192..75843d2fa2 100644
--- a/audit/locale/ko/fusiondirectory.po
+++ b/audit/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po
index ceed036b1e..8d43268d82 100644
--- a/audit/locale/lv/fusiondirectory.po
+++ b/audit/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po
index d80a2c1089..44e1c36ca8 100644
--- a/audit/locale/nb/fusiondirectory.po
+++ b/audit/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po
index 0af2fcf09d..142eb8901d 100644
--- a/audit/locale/nl/fusiondirectory.po
+++ b/audit/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po
index 0c9e9dd4e2..9ef1430b7e 100644
--- a/audit/locale/pl/fusiondirectory.po
+++ b/audit/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po
index 786f7cbf78..4e2366932d 100644
--- a/audit/locale/pt/fusiondirectory.po
+++ b/audit/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po
index 216f9142fb..16f77f4d6d 100644
--- a/audit/locale/pt_BR/fusiondirectory.po
+++ b/audit/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po
index a3c2a492fb..489afdc62b 100644
--- a/audit/locale/ru/fusiondirectory.po
+++ b/audit/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po
index e06ebb8bef..0f9ab40562 100644
--- a/audit/locale/ru@petr1708/fusiondirectory.po
+++ b/audit/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po
index cb6ffc17ef..121c372784 100644
--- a/audit/locale/sv/fusiondirectory.po
+++ b/audit/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/audit/locale/tr_TR/fusiondirectory.po b/audit/locale/tr_TR/fusiondirectory.po
index 3193b3a3f1..61bb8a897c 100644
--- a/audit/locale/tr_TR/fusiondirectory.po
+++ b/audit/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po
index 269b808538..afe2397f45 100644
--- a/audit/locale/ug/fusiondirectory.po
+++ b/audit/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po
index 7a0f470a9d..69bb54a4ba 100644
--- a/audit/locale/vi_VN/fusiondirectory.po
+++ b/audit/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po
index 1447cd9663..c35a21c306 100644
--- a/audit/locale/zh/fusiondirectory.po
+++ b/audit/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/audit/locale/zh_TW/fusiondirectory.po b/audit/locale/zh_TW/fusiondirectory.po
index 412fa1e4e9..5d7995c02f 100644
--- a/audit/locale/zh_TW/fusiondirectory.po
+++ b/audit/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/af_ZA/fusiondirectory.po b/autofs/locale/af_ZA/fusiondirectory.po
index f17cd1866f..e280b3a198 100644
--- a/autofs/locale/af_ZA/fusiondirectory.po
+++ b/autofs/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po
index b88ee8ae41..e5f845abc7 100644
--- a/autofs/locale/ar/fusiondirectory.po
+++ b/autofs/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po
index 92f9191c67..0d297ce1f9 100644
--- a/autofs/locale/ca/fusiondirectory.po
+++ b/autofs/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po
index 28a9d9ab64..2b0b345463 100644
--- a/autofs/locale/cs_CZ/fusiondirectory.po
+++ b/autofs/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po
index a0c1e2e62b..9a6b53fe29 100644
--- a/autofs/locale/de/fusiondirectory.po
+++ b/autofs/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po
index 6507ba388a..f9ef885280 100644
--- a/autofs/locale/el_GR/fusiondirectory.po
+++ b/autofs/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po
index 24608673d6..871989faa6 100644
--- a/autofs/locale/es/fusiondirectory.po
+++ b/autofs/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po
index 2acb5b8f25..74ec882286 100644
--- a/autofs/locale/es_CO/fusiondirectory.po
+++ b/autofs/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po
index 8c914c62db..7b7685f24b 100644
--- a/autofs/locale/es_VE/fusiondirectory.po
+++ b/autofs/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po
index fb19900fec..73c3dc4dbd 100644
--- a/autofs/locale/fa_IR/fusiondirectory.po
+++ b/autofs/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po
index 8e1d14bd62..ca4292eff6 100644
--- a/autofs/locale/fi_FI/fusiondirectory.po
+++ b/autofs/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po
index 2989cec513..b87e3aed12 100644
--- a/autofs/locale/fr/fusiondirectory.po
+++ b/autofs/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po
index 0456284d24..cbcaa01c8e 100644
--- a/autofs/locale/hu_HU/fusiondirectory.po
+++ b/autofs/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po
index 33fca0b892..2b826491ec 100644
--- a/autofs/locale/id/fusiondirectory.po
+++ b/autofs/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po
index d409856be8..50f0c63ee4 100644
--- a/autofs/locale/it_IT/fusiondirectory.po
+++ b/autofs/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/autofs/locale/ja/fusiondirectory.po b/autofs/locale/ja/fusiondirectory.po
index 187d5e449a..76b57eee6f 100644
--- a/autofs/locale/ja/fusiondirectory.po
+++ b/autofs/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ko/fusiondirectory.po b/autofs/locale/ko/fusiondirectory.po
index 123cf6dd29..d26abb435a 100644
--- a/autofs/locale/ko/fusiondirectory.po
+++ b/autofs/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po
index dbb20977fe..bb051d5a3b 100644
--- a/autofs/locale/lv/fusiondirectory.po
+++ b/autofs/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po
index 31d82ac4ae..2f91e71fa8 100644
--- a/autofs/locale/nb/fusiondirectory.po
+++ b/autofs/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po
index 1a826ae230..fd405c6abd 100644
--- a/autofs/locale/nl/fusiondirectory.po
+++ b/autofs/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po
index 6da84a69a4..5b3ae549b1 100644
--- a/autofs/locale/pl/fusiondirectory.po
+++ b/autofs/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po
index 54284b640f..76113c9183 100644
--- a/autofs/locale/pt/fusiondirectory.po
+++ b/autofs/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po
index 5561d88e7d..ecca0a5a38 100644
--- a/autofs/locale/pt_BR/fusiondirectory.po
+++ b/autofs/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po
index c1a80a3714..447115c6c9 100644
--- a/autofs/locale/ru/fusiondirectory.po
+++ b/autofs/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po
index 15d4955869..91099ea485 100644
--- a/autofs/locale/ru@petr1708/fusiondirectory.po
+++ b/autofs/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po
index 9e35964d9c..8bec96caca 100644
--- a/autofs/locale/sv/fusiondirectory.po
+++ b/autofs/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/autofs/locale/tr_TR/fusiondirectory.po b/autofs/locale/tr_TR/fusiondirectory.po
index ca4e98c2a5..09fa417318 100644
--- a/autofs/locale/tr_TR/fusiondirectory.po
+++ b/autofs/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po
index b3982b4d1f..1563b55ffa 100644
--- a/autofs/locale/ug/fusiondirectory.po
+++ b/autofs/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po
index f7a9a37cc2..7e520a39fa 100644
--- a/autofs/locale/vi_VN/fusiondirectory.po
+++ b/autofs/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po
index e3eb32acd2..5d66992a52 100644
--- a/autofs/locale/zh/fusiondirectory.po
+++ b/autofs/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/autofs/locale/zh_TW/fusiondirectory.po b/autofs/locale/zh_TW/fusiondirectory.po
index 07191e00fa..9751b90b1f 100644
--- a/autofs/locale/zh_TW/fusiondirectory.po
+++ b/autofs/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/af_ZA/fusiondirectory.po b/certificates/locale/af_ZA/fusiondirectory.po
index 4223bfba72..386021e35b 100644
--- a/certificates/locale/af_ZA/fusiondirectory.po
+++ b/certificates/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po
index 8fbdfdb9ef..e8a1054b6d 100644
--- a/certificates/locale/ar/fusiondirectory.po
+++ b/certificates/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po
index f91ee190b1..b069794b0a 100644
--- a/certificates/locale/ca/fusiondirectory.po
+++ b/certificates/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po
index 6c67d3e596..b70912c212 100644
--- a/certificates/locale/cs_CZ/fusiondirectory.po
+++ b/certificates/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po
index 9efb331b3f..02dab93384 100644
--- a/certificates/locale/de/fusiondirectory.po
+++ b/certificates/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po
index 114cf569c4..a35578daad 100644
--- a/certificates/locale/el_GR/fusiondirectory.po
+++ b/certificates/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po
index 858c02c1e6..89aa652632 100644
--- a/certificates/locale/es/fusiondirectory.po
+++ b/certificates/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po
index 6afb6311b6..363cb5aae7 100644
--- a/certificates/locale/es_CO/fusiondirectory.po
+++ b/certificates/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po
index 68a4619c94..78f5c84f2d 100644
--- a/certificates/locale/es_VE/fusiondirectory.po
+++ b/certificates/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po
index be282ca2d4..cb01d6f6f6 100644
--- a/certificates/locale/fa_IR/fusiondirectory.po
+++ b/certificates/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po
index 56fc306498..705db17d39 100644
--- a/certificates/locale/fi_FI/fusiondirectory.po
+++ b/certificates/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po
index 1f104ae8e8..169100d02d 100644
--- a/certificates/locale/fr/fusiondirectory.po
+++ b/certificates/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po
index c6a77f526b..0b4143f471 100644
--- a/certificates/locale/hu_HU/fusiondirectory.po
+++ b/certificates/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po
index e14474a742..baa513518b 100644
--- a/certificates/locale/id/fusiondirectory.po
+++ b/certificates/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po
index 6e0efb711a..cd388ad541 100644
--- a/certificates/locale/it_IT/fusiondirectory.po
+++ b/certificates/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/certificates/locale/ja/fusiondirectory.po b/certificates/locale/ja/fusiondirectory.po
index 82a74f6d8a..af451f520e 100644
--- a/certificates/locale/ja/fusiondirectory.po
+++ b/certificates/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ko/fusiondirectory.po b/certificates/locale/ko/fusiondirectory.po
index 11c5c943c6..731bb427dd 100644
--- a/certificates/locale/ko/fusiondirectory.po
+++ b/certificates/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po
index 0809be7905..6c5355bd0c 100644
--- a/certificates/locale/lv/fusiondirectory.po
+++ b/certificates/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po
index 372585b769..7d7be8a090 100644
--- a/certificates/locale/nb/fusiondirectory.po
+++ b/certificates/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po
index 3fc8e5e611..57ea11c65d 100644
--- a/certificates/locale/nl/fusiondirectory.po
+++ b/certificates/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po
index e4a9cf0029..ecd84b19de 100644
--- a/certificates/locale/pl/fusiondirectory.po
+++ b/certificates/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po
index 4881ec3b31..d50e3ae3be 100644
--- a/certificates/locale/pt/fusiondirectory.po
+++ b/certificates/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po
index 917b977a8f..9d0b162d6e 100644
--- a/certificates/locale/pt_BR/fusiondirectory.po
+++ b/certificates/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po
index b4c4395f8b..4811437037 100644
--- a/certificates/locale/ru/fusiondirectory.po
+++ b/certificates/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po
index 5ce9bed2df..c8bc25917c 100644
--- a/certificates/locale/ru@petr1708/fusiondirectory.po
+++ b/certificates/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po
index 8cae7519e7..6b55c68d6d 100644
--- a/certificates/locale/sv/fusiondirectory.po
+++ b/certificates/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/certificates/locale/tr_TR/fusiondirectory.po b/certificates/locale/tr_TR/fusiondirectory.po
index 4907a2e9cb..f4af4d3283 100644
--- a/certificates/locale/tr_TR/fusiondirectory.po
+++ b/certificates/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po
index 4bfce196c4..418762ab1b 100644
--- a/certificates/locale/ug/fusiondirectory.po
+++ b/certificates/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po
index b5e91d57fc..2c8e29ba4a 100644
--- a/certificates/locale/vi_VN/fusiondirectory.po
+++ b/certificates/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po
index abe952bb0b..3db4a4624f 100644
--- a/certificates/locale/zh/fusiondirectory.po
+++ b/certificates/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/certificates/locale/zh_TW/fusiondirectory.po b/certificates/locale/zh_TW/fusiondirectory.po
index fe58d3efad..c83295741c 100644
--- a/certificates/locale/zh_TW/fusiondirectory.po
+++ b/certificates/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/af_ZA/fusiondirectory.po b/community/locale/af_ZA/fusiondirectory.po
index 58b02d0ecb..055c84f7b8 100644
--- a/community/locale/af_ZA/fusiondirectory.po
+++ b/community/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po
index f9ca5522ca..27b3711c2b 100644
--- a/community/locale/ar/fusiondirectory.po
+++ b/community/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po
index 7dc967690f..2748d54028 100644
--- a/community/locale/ca/fusiondirectory.po
+++ b/community/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po
index b02d326ef8..c83070e415 100644
--- a/community/locale/cs_CZ/fusiondirectory.po
+++ b/community/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po
index 93a24c157e..b9a5e87dd0 100644
--- a/community/locale/de/fusiondirectory.po
+++ b/community/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po
index b571ba5d19..e258ac64c1 100644
--- a/community/locale/el_GR/fusiondirectory.po
+++ b/community/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po
index f6a18c622c..f3886a9610 100644
--- a/community/locale/es/fusiondirectory.po
+++ b/community/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po
index c815f6683d..f22749a332 100644
--- a/community/locale/es_CO/fusiondirectory.po
+++ b/community/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po
index 79b92e3659..f6c99209c6 100644
--- a/community/locale/es_VE/fusiondirectory.po
+++ b/community/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po
index 4dfd6b792f..dd29448065 100644
--- a/community/locale/fa_IR/fusiondirectory.po
+++ b/community/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po
index 2dd27c7afd..eb461a3641 100644
--- a/community/locale/fi_FI/fusiondirectory.po
+++ b/community/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po
index e821abfdaa..dc4f3516cd 100644
--- a/community/locale/fr/fusiondirectory.po
+++ b/community/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po
index 61ec5b1d0c..df47ee292b 100644
--- a/community/locale/hu_HU/fusiondirectory.po
+++ b/community/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po
index e61f7ade73..241095e1a6 100644
--- a/community/locale/id/fusiondirectory.po
+++ b/community/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index 626621a88f..4a86e610d2 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/community/locale/ja/fusiondirectory.po b/community/locale/ja/fusiondirectory.po
index ea27177c26..df551fa34f 100644
--- a/community/locale/ja/fusiondirectory.po
+++ b/community/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ko/fusiondirectory.po b/community/locale/ko/fusiondirectory.po
index 833b013324..811dae8ec3 100644
--- a/community/locale/ko/fusiondirectory.po
+++ b/community/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po
index 0b655b0225..945e15adb4 100644
--- a/community/locale/lv/fusiondirectory.po
+++ b/community/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po
index c84c594b93..04ab681741 100644
--- a/community/locale/nb/fusiondirectory.po
+++ b/community/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po
index f4e14d1b35..0521b3fec9 100644
--- a/community/locale/nl/fusiondirectory.po
+++ b/community/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po
index dd44e993ce..2bda20fab2 100644
--- a/community/locale/pl/fusiondirectory.po
+++ b/community/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po
index 300d358a17..4e5470a6d4 100644
--- a/community/locale/pt/fusiondirectory.po
+++ b/community/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po
index e73eb629b4..ed9e3d6b36 100644
--- a/community/locale/pt_BR/fusiondirectory.po
+++ b/community/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po
index 9904ae21c4..d04751fedb 100644
--- a/community/locale/ru/fusiondirectory.po
+++ b/community/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po
index 8d9fb925cb..d5abb0c022 100644
--- a/community/locale/ru@petr1708/fusiondirectory.po
+++ b/community/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po
index fe9be89e68..889d8b1b49 100644
--- a/community/locale/sv/fusiondirectory.po
+++ b/community/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/community/locale/tr_TR/fusiondirectory.po b/community/locale/tr_TR/fusiondirectory.po
index cc6e462c81..eb69799a11 100644
--- a/community/locale/tr_TR/fusiondirectory.po
+++ b/community/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po
index 0936c7fa69..8ba317bef6 100644
--- a/community/locale/ug/fusiondirectory.po
+++ b/community/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po
index d10112480b..90caf535ab 100644
--- a/community/locale/vi_VN/fusiondirectory.po
+++ b/community/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po
index 2b0359b99c..8e5b2f39e4 100644
--- a/community/locale/zh/fusiondirectory.po
+++ b/community/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/community/locale/zh_TW/fusiondirectory.po b/community/locale/zh_TW/fusiondirectory.po
index 5990db173a..eb99c87322 100644
--- a/community/locale/zh_TW/fusiondirectory.po
+++ b/community/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/af_ZA/fusiondirectory.po b/cyrus/locale/af_ZA/fusiondirectory.po
index 765d8e4eb2..601136f351 100644
--- a/cyrus/locale/af_ZA/fusiondirectory.po
+++ b/cyrus/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po
index 056b7bae68..1ae74d505c 100644
--- a/cyrus/locale/ar/fusiondirectory.po
+++ b/cyrus/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po
index ca231b590f..3046dc4964 100644
--- a/cyrus/locale/ca/fusiondirectory.po
+++ b/cyrus/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po
index ccca9b4456..cd337f3dea 100644
--- a/cyrus/locale/cs_CZ/fusiondirectory.po
+++ b/cyrus/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po
index e4a1a260b3..bfdf82854e 100644
--- a/cyrus/locale/de/fusiondirectory.po
+++ b/cyrus/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po
index 2e5f20c857..eaa5adbadd 100644
--- a/cyrus/locale/el_GR/fusiondirectory.po
+++ b/cyrus/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po
index c41fa4b8fc..b4efd7abb5 100644
--- a/cyrus/locale/es/fusiondirectory.po
+++ b/cyrus/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po
index 46f452ed36..46d454262f 100644
--- a/cyrus/locale/es_CO/fusiondirectory.po
+++ b/cyrus/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po
index 3615a365a9..8d0612ff14 100644
--- a/cyrus/locale/es_VE/fusiondirectory.po
+++ b/cyrus/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po
index 7a501937be..d4e6c52388 100644
--- a/cyrus/locale/fa_IR/fusiondirectory.po
+++ b/cyrus/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po
index db0a309c1a..f9dba9f03f 100644
--- a/cyrus/locale/fi_FI/fusiondirectory.po
+++ b/cyrus/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po
index d38a7c5f5b..247e5af6ad 100644
--- a/cyrus/locale/fr/fusiondirectory.po
+++ b/cyrus/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po
index 30e0df9c51..0852121688 100644
--- a/cyrus/locale/hu_HU/fusiondirectory.po
+++ b/cyrus/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po
index 5a0f896791..7049fe2374 100644
--- a/cyrus/locale/id/fusiondirectory.po
+++ b/cyrus/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po
index 98b9fcc18e..725e90e48b 100644
--- a/cyrus/locale/it_IT/fusiondirectory.po
+++ b/cyrus/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/cyrus/locale/ja/fusiondirectory.po b/cyrus/locale/ja/fusiondirectory.po
index 747aec762a..adc8da3889 100644
--- a/cyrus/locale/ja/fusiondirectory.po
+++ b/cyrus/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ko/fusiondirectory.po b/cyrus/locale/ko/fusiondirectory.po
index d6786c3e84..f703ba96ef 100644
--- a/cyrus/locale/ko/fusiondirectory.po
+++ b/cyrus/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po
index 17422f763e..b316e3092b 100644
--- a/cyrus/locale/lv/fusiondirectory.po
+++ b/cyrus/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po
index 43d93faefa..53e66e3a07 100644
--- a/cyrus/locale/nb/fusiondirectory.po
+++ b/cyrus/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po
index bc740d31a7..993323a9ba 100644
--- a/cyrus/locale/nl/fusiondirectory.po
+++ b/cyrus/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po
index 396bf4aa9f..38727c5cc8 100644
--- a/cyrus/locale/pl/fusiondirectory.po
+++ b/cyrus/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po
index cf121d3166..d026391858 100644
--- a/cyrus/locale/pt/fusiondirectory.po
+++ b/cyrus/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po
index a98739c21c..0bdddce58a 100644
--- a/cyrus/locale/pt_BR/fusiondirectory.po
+++ b/cyrus/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po
index 797039c2f7..6cd9f67f01 100644
--- a/cyrus/locale/ru/fusiondirectory.po
+++ b/cyrus/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po
index 04647fd250..465addacfd 100644
--- a/cyrus/locale/ru@petr1708/fusiondirectory.po
+++ b/cyrus/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po
index 5d207f725d..a68b1ded0c 100644
--- a/cyrus/locale/sv/fusiondirectory.po
+++ b/cyrus/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/cyrus/locale/tr_TR/fusiondirectory.po b/cyrus/locale/tr_TR/fusiondirectory.po
index 95b002b29f..43883fe29d 100644
--- a/cyrus/locale/tr_TR/fusiondirectory.po
+++ b/cyrus/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po
index e65667117e..9038c577c7 100644
--- a/cyrus/locale/ug/fusiondirectory.po
+++ b/cyrus/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po
index 210dde67cd..aef9d3d06e 100644
--- a/cyrus/locale/vi_VN/fusiondirectory.po
+++ b/cyrus/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po
index ccd971d706..7418490499 100644
--- a/cyrus/locale/zh/fusiondirectory.po
+++ b/cyrus/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/cyrus/locale/zh_TW/fusiondirectory.po b/cyrus/locale/zh_TW/fusiondirectory.po
index 5058c995d3..871bc4b08a 100644
--- a/cyrus/locale/zh_TW/fusiondirectory.po
+++ b/cyrus/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/af_ZA/fusiondirectory.po b/debconf/locale/af_ZA/fusiondirectory.po
index a31fb55991..6d65b95026 100644
--- a/debconf/locale/af_ZA/fusiondirectory.po
+++ b/debconf/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po
index 76966b0251..ed7c472356 100644
--- a/debconf/locale/ar/fusiondirectory.po
+++ b/debconf/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po
index 7bfeb13325..67f88b8a2a 100644
--- a/debconf/locale/ca/fusiondirectory.po
+++ b/debconf/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po
index b7656d3c91..38bbcefd17 100644
--- a/debconf/locale/cs_CZ/fusiondirectory.po
+++ b/debconf/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po
index 3fe8768829..c42c518381 100644
--- a/debconf/locale/de/fusiondirectory.po
+++ b/debconf/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po
index fb2cadd395..fa81e8adee 100644
--- a/debconf/locale/el_GR/fusiondirectory.po
+++ b/debconf/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po
index 7cc40da191..e1772147a0 100644
--- a/debconf/locale/es/fusiondirectory.po
+++ b/debconf/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po
index a98a140769..ef57c32f4d 100644
--- a/debconf/locale/es_CO/fusiondirectory.po
+++ b/debconf/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po
index 33aa33af02..4b605ce132 100644
--- a/debconf/locale/es_VE/fusiondirectory.po
+++ b/debconf/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po
index 9fd1eccd59..a31484cc86 100644
--- a/debconf/locale/fa_IR/fusiondirectory.po
+++ b/debconf/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po
index ce742ba38f..f546c9e087 100644
--- a/debconf/locale/fi_FI/fusiondirectory.po
+++ b/debconf/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po
index e5521a56d6..652c46aa7f 100644
--- a/debconf/locale/fr/fusiondirectory.po
+++ b/debconf/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po
index 6977c79914..4ebda909dc 100644
--- a/debconf/locale/hu_HU/fusiondirectory.po
+++ b/debconf/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po
index efe0db280b..ba20982f2d 100644
--- a/debconf/locale/id/fusiondirectory.po
+++ b/debconf/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po
index 5310e5c692..7432571138 100644
--- a/debconf/locale/it_IT/fusiondirectory.po
+++ b/debconf/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/debconf/locale/ja/fusiondirectory.po b/debconf/locale/ja/fusiondirectory.po
index e927f0cd11..4ee6b0fa98 100644
--- a/debconf/locale/ja/fusiondirectory.po
+++ b/debconf/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ko/fusiondirectory.po b/debconf/locale/ko/fusiondirectory.po
index 7c665d36ba..95de2cb719 100644
--- a/debconf/locale/ko/fusiondirectory.po
+++ b/debconf/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po
index 7944c0a13e..5a49270658 100644
--- a/debconf/locale/lv/fusiondirectory.po
+++ b/debconf/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po
index 45456ad219..994cc7ff9e 100644
--- a/debconf/locale/nb/fusiondirectory.po
+++ b/debconf/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po
index 4190ab3e30..79b981a57e 100644
--- a/debconf/locale/nl/fusiondirectory.po
+++ b/debconf/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po
index a0c92a6ae5..9f2893391e 100644
--- a/debconf/locale/pl/fusiondirectory.po
+++ b/debconf/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po
index 171d6b8398..f768ba34dd 100644
--- a/debconf/locale/pt/fusiondirectory.po
+++ b/debconf/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po
index 6d34e5f1d4..1973c2520d 100644
--- a/debconf/locale/pt_BR/fusiondirectory.po
+++ b/debconf/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po
index b56a07b2e1..b75a33abaf 100644
--- a/debconf/locale/ru/fusiondirectory.po
+++ b/debconf/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po
index c152c0751b..fe8ec77a40 100644
--- a/debconf/locale/ru@petr1708/fusiondirectory.po
+++ b/debconf/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po
index 39d4be5cb2..a1fcb63eba 100644
--- a/debconf/locale/sv/fusiondirectory.po
+++ b/debconf/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/debconf/locale/tr_TR/fusiondirectory.po b/debconf/locale/tr_TR/fusiondirectory.po
index b3baf69ce7..06a09844d5 100644
--- a/debconf/locale/tr_TR/fusiondirectory.po
+++ b/debconf/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po
index dec1930d68..a8c4ef0756 100644
--- a/debconf/locale/ug/fusiondirectory.po
+++ b/debconf/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po
index d257655f7f..e7346e25df 100644
--- a/debconf/locale/vi_VN/fusiondirectory.po
+++ b/debconf/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po
index a8a8c3d75b..dfec07277b 100644
--- a/debconf/locale/zh/fusiondirectory.po
+++ b/debconf/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/debconf/locale/zh_TW/fusiondirectory.po b/debconf/locale/zh_TW/fusiondirectory.po
index 3ff4d7e7cf..f8e06ff421 100644
--- a/debconf/locale/zh_TW/fusiondirectory.po
+++ b/debconf/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/af_ZA/fusiondirectory.po b/developers/locale/af_ZA/fusiondirectory.po
index 11311183aa..ff5309e62d 100644
--- a/developers/locale/af_ZA/fusiondirectory.po
+++ b/developers/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po
index 96a79b28cf..ed6d745584 100644
--- a/developers/locale/ar/fusiondirectory.po
+++ b/developers/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po
index 54eeb696a7..a805ee2853 100644
--- a/developers/locale/ca/fusiondirectory.po
+++ b/developers/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po
index 0ff5879e4d..387ddd0af2 100644
--- a/developers/locale/cs_CZ/fusiondirectory.po
+++ b/developers/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po
index 6af8db7769..0dc2287aed 100644
--- a/developers/locale/de/fusiondirectory.po
+++ b/developers/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po
index f9280900a0..267159c791 100644
--- a/developers/locale/el_GR/fusiondirectory.po
+++ b/developers/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po
index 581b61e66d..19a5d0a460 100644
--- a/developers/locale/es/fusiondirectory.po
+++ b/developers/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po
index b2927a8ead..3394f7d007 100644
--- a/developers/locale/es_CO/fusiondirectory.po
+++ b/developers/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po
index 4931c372e0..9e864cfaa5 100644
--- a/developers/locale/es_VE/fusiondirectory.po
+++ b/developers/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po
index e8f8a444c0..763950e4b3 100644
--- a/developers/locale/fa_IR/fusiondirectory.po
+++ b/developers/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po
index f51915eb57..e10c44308b 100644
--- a/developers/locale/fi_FI/fusiondirectory.po
+++ b/developers/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po
index 59439bfa76..d062c5da3a 100644
--- a/developers/locale/fr/fusiondirectory.po
+++ b/developers/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po
index 0f244e9fdc..45f60eb1fc 100644
--- a/developers/locale/hu_HU/fusiondirectory.po
+++ b/developers/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po
index f4fffb2ace..afcc99a954 100644
--- a/developers/locale/id/fusiondirectory.po
+++ b/developers/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po
index ac944b6043..7383ea9197 100644
--- a/developers/locale/it_IT/fusiondirectory.po
+++ b/developers/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/developers/locale/ja/fusiondirectory.po b/developers/locale/ja/fusiondirectory.po
index e4fe9bd337..e7425e3c36 100644
--- a/developers/locale/ja/fusiondirectory.po
+++ b/developers/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ko/fusiondirectory.po b/developers/locale/ko/fusiondirectory.po
index c6af435d6e..3eab07f34c 100644
--- a/developers/locale/ko/fusiondirectory.po
+++ b/developers/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po
index 8552927587..727a932d35 100644
--- a/developers/locale/lv/fusiondirectory.po
+++ b/developers/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po
index 1639a93f80..fa9246353f 100644
--- a/developers/locale/nb/fusiondirectory.po
+++ b/developers/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po
index 6a4592ad07..b175cb4c6e 100644
--- a/developers/locale/nl/fusiondirectory.po
+++ b/developers/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po
index 32207ba3a0..31237d31aa 100644
--- a/developers/locale/pl/fusiondirectory.po
+++ b/developers/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po
index b26b8f515a..d3599afd68 100644
--- a/developers/locale/pt/fusiondirectory.po
+++ b/developers/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po
index 47ed2e8437..92d3eb8d5f 100644
--- a/developers/locale/pt_BR/fusiondirectory.po
+++ b/developers/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po
index 24574e2340..2074a3e6ff 100644
--- a/developers/locale/ru/fusiondirectory.po
+++ b/developers/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po
index ace5d8dbd0..e5eb033283 100644
--- a/developers/locale/ru@petr1708/fusiondirectory.po
+++ b/developers/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po
index 87f81aaf88..3c5f82b286 100644
--- a/developers/locale/sv/fusiondirectory.po
+++ b/developers/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/developers/locale/tr_TR/fusiondirectory.po b/developers/locale/tr_TR/fusiondirectory.po
index 6ae25cf116..994e360272 100644
--- a/developers/locale/tr_TR/fusiondirectory.po
+++ b/developers/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po
index f4714061de..be7ce30686 100644
--- a/developers/locale/ug/fusiondirectory.po
+++ b/developers/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po
index febc3f2f7e..fe061345e8 100644
--- a/developers/locale/vi_VN/fusiondirectory.po
+++ b/developers/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po
index ee0860cf47..c9edf97fd3 100644
--- a/developers/locale/zh/fusiondirectory.po
+++ b/developers/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh_TW/fusiondirectory.po b/developers/locale/zh_TW/fusiondirectory.po
index baadad1855..4f392da059 100644
--- a/developers/locale/zh_TW/fusiondirectory.po
+++ b/developers/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/af_ZA/fusiondirectory.po b/dhcp/locale/af_ZA/fusiondirectory.po
index 1f9e81c521..1b00268ef7 100644
--- a/dhcp/locale/af_ZA/fusiondirectory.po
+++ b/dhcp/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po
index 82cc8dadfc..872aee87b0 100644
--- a/dhcp/locale/ar/fusiondirectory.po
+++ b/dhcp/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po
index 9c2e652da2..236de97c0d 100644
--- a/dhcp/locale/ca/fusiondirectory.po
+++ b/dhcp/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po
index a39ac3e1cc..d71bc2b3ae 100644
--- a/dhcp/locale/cs_CZ/fusiondirectory.po
+++ b/dhcp/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po
index 9cfb492723..bab87d2526 100644
--- a/dhcp/locale/de/fusiondirectory.po
+++ b/dhcp/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Jonah Bohlmann <jokabo66@gmail.com>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po
index 86ec285ff5..024d3dd5a9 100644
--- a/dhcp/locale/el_GR/fusiondirectory.po
+++ b/dhcp/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po
index 2b9dd4eddf..7653d7d3dd 100644
--- a/dhcp/locale/es/fusiondirectory.po
+++ b/dhcp/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po
index 8190f7c87a..0218dd2ffb 100644
--- a/dhcp/locale/es_CO/fusiondirectory.po
+++ b/dhcp/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po
index e50b35e461..4085177e8c 100644
--- a/dhcp/locale/es_VE/fusiondirectory.po
+++ b/dhcp/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po
index eb1c8a8c01..1ce1164d1c 100644
--- a/dhcp/locale/fa_IR/fusiondirectory.po
+++ b/dhcp/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po
index 0e16ba1a08..3d4571f3b6 100644
--- a/dhcp/locale/fi_FI/fusiondirectory.po
+++ b/dhcp/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po
index 0ded76a901..e677714236 100644
--- a/dhcp/locale/fr/fusiondirectory.po
+++ b/dhcp/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po
index f9090df5ec..765992134f 100644
--- a/dhcp/locale/hu_HU/fusiondirectory.po
+++ b/dhcp/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po
index 7ed00d3663..d228bb8440 100644
--- a/dhcp/locale/id/fusiondirectory.po
+++ b/dhcp/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index 574bae2952..19819356e2 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dhcp/locale/ja/fusiondirectory.po b/dhcp/locale/ja/fusiondirectory.po
index 5b302d6dbb..cf9bdb624c 100644
--- a/dhcp/locale/ja/fusiondirectory.po
+++ b/dhcp/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ko/fusiondirectory.po b/dhcp/locale/ko/fusiondirectory.po
index 0fa4ef5980..74176f8102 100644
--- a/dhcp/locale/ko/fusiondirectory.po
+++ b/dhcp/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po
index a4e0f81553..a746c7c32f 100644
--- a/dhcp/locale/lv/fusiondirectory.po
+++ b/dhcp/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po
index 49417d9680..5de6268741 100644
--- a/dhcp/locale/nb/fusiondirectory.po
+++ b/dhcp/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po
index 6eed94d99a..635ba49418 100644
--- a/dhcp/locale/nl/fusiondirectory.po
+++ b/dhcp/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po
index f2ab549212..acd2fd4bac 100644
--- a/dhcp/locale/pl/fusiondirectory.po
+++ b/dhcp/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po
index 74f2a41755..28f8b08cce 100644
--- a/dhcp/locale/pt/fusiondirectory.po
+++ b/dhcp/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po
index 45ad5cee5f..0776701122 100644
--- a/dhcp/locale/pt_BR/fusiondirectory.po
+++ b/dhcp/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po
index d35a551f29..ad6bf5f227 100644
--- a/dhcp/locale/ru/fusiondirectory.po
+++ b/dhcp/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po
index efa8eb434a..6e1968ee42 100644
--- a/dhcp/locale/ru@petr1708/fusiondirectory.po
+++ b/dhcp/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po
index eb6a68e5e8..6f4706e41c 100644
--- a/dhcp/locale/sv/fusiondirectory.po
+++ b/dhcp/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dhcp/locale/tr_TR/fusiondirectory.po b/dhcp/locale/tr_TR/fusiondirectory.po
index 8e9ede81ec..f093a537bc 100644
--- a/dhcp/locale/tr_TR/fusiondirectory.po
+++ b/dhcp/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po
index 1546bb5e18..eb187ac308 100644
--- a/dhcp/locale/ug/fusiondirectory.po
+++ b/dhcp/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po
index 4e4feaf713..3e71707398 100644
--- a/dhcp/locale/vi_VN/fusiondirectory.po
+++ b/dhcp/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po
index b4abdaff71..6a37764a34 100644
--- a/dhcp/locale/zh/fusiondirectory.po
+++ b/dhcp/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dhcp/locale/zh_TW/fusiondirectory.po b/dhcp/locale/zh_TW/fusiondirectory.po
index 79fc3f3507..a94f5832b6 100644
--- a/dhcp/locale/zh_TW/fusiondirectory.po
+++ b/dhcp/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/af_ZA/fusiondirectory.po b/dns/locale/af_ZA/fusiondirectory.po
index 16b5ef7afd..f8560c07de 100644
--- a/dns/locale/af_ZA/fusiondirectory.po
+++ b/dns/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po
index b7c0955da6..e0728b4e8e 100644
--- a/dns/locale/ar/fusiondirectory.po
+++ b/dns/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po
index eb64020787..885ff1e700 100644
--- a/dns/locale/ca/fusiondirectory.po
+++ b/dns/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po
index 484d6ec28b..a61a62e9de 100644
--- a/dns/locale/cs_CZ/fusiondirectory.po
+++ b/dns/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po
index d7cd328858..47535441e8 100644
--- a/dns/locale/de/fusiondirectory.po
+++ b/dns/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po
index 1cb264ff30..62ea5fcb70 100644
--- a/dns/locale/el_GR/fusiondirectory.po
+++ b/dns/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po
index 17d606d646..bed4ca99d4 100644
--- a/dns/locale/es/fusiondirectory.po
+++ b/dns/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po
index 8b7dda88db..b9127b1a70 100644
--- a/dns/locale/es_CO/fusiondirectory.po
+++ b/dns/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po
index 6c26b22235..2735321a8d 100644
--- a/dns/locale/es_VE/fusiondirectory.po
+++ b/dns/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po
index 89c7e9a55a..5455dcdc75 100644
--- a/dns/locale/fa_IR/fusiondirectory.po
+++ b/dns/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po
index 167302c7ba..260d95393d 100644
--- a/dns/locale/fi_FI/fusiondirectory.po
+++ b/dns/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po
index 67175582bd..04db322ffd 100644
--- a/dns/locale/fr/fusiondirectory.po
+++ b/dns/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po
index 2a0c2e9ac3..855e810203 100644
--- a/dns/locale/hu_HU/fusiondirectory.po
+++ b/dns/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po
index 589462f602..98474bd737 100644
--- a/dns/locale/id/fusiondirectory.po
+++ b/dns/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index de9c96ffd3..8b538be4dd 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dns/locale/ja/fusiondirectory.po b/dns/locale/ja/fusiondirectory.po
index b9ee1b8032..afb8b368a9 100644
--- a/dns/locale/ja/fusiondirectory.po
+++ b/dns/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ko/fusiondirectory.po b/dns/locale/ko/fusiondirectory.po
index 30c5d0f77f..d7f4490d3f 100644
--- a/dns/locale/ko/fusiondirectory.po
+++ b/dns/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po
index f2adb1cbda..9b29f86489 100644
--- a/dns/locale/lv/fusiondirectory.po
+++ b/dns/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po
index aff0097815..e9d4158bd9 100644
--- a/dns/locale/nb/fusiondirectory.po
+++ b/dns/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po
index 81bc190e5e..fa8a3f9000 100644
--- a/dns/locale/nl/fusiondirectory.po
+++ b/dns/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po
index 9db2821f2f..f36fdb9438 100644
--- a/dns/locale/pl/fusiondirectory.po
+++ b/dns/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po
index f4baeaa384..da920d555b 100644
--- a/dns/locale/pt/fusiondirectory.po
+++ b/dns/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po
index 58fc8781d0..8c989900e0 100644
--- a/dns/locale/pt_BR/fusiondirectory.po
+++ b/dns/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po
index 5d363d9973..5d2399b59f 100644
--- a/dns/locale/ru/fusiondirectory.po
+++ b/dns/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po
index 8fbb01615b..f3c725815b 100644
--- a/dns/locale/ru@petr1708/fusiondirectory.po
+++ b/dns/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po
index 93bfe0b56b..d64035fb2b 100644
--- a/dns/locale/sv/fusiondirectory.po
+++ b/dns/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dns/locale/tr_TR/fusiondirectory.po b/dns/locale/tr_TR/fusiondirectory.po
index eb8e3d8eb8..245bc538a4 100644
--- a/dns/locale/tr_TR/fusiondirectory.po
+++ b/dns/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po
index cf718c7d69..ffe97f2e3e 100644
--- a/dns/locale/ug/fusiondirectory.po
+++ b/dns/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po
index 55147c7646..b91b3bc682 100644
--- a/dns/locale/vi_VN/fusiondirectory.po
+++ b/dns/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po
index 7a6021cf20..c245899422 100644
--- a/dns/locale/zh/fusiondirectory.po
+++ b/dns/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dns/locale/zh_TW/fusiondirectory.po b/dns/locale/zh_TW/fusiondirectory.po
index c9ed93881a..97c0f76ed3 100644
--- a/dns/locale/zh_TW/fusiondirectory.po
+++ b/dns/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/af_ZA/fusiondirectory.po b/dovecot/locale/af_ZA/fusiondirectory.po
index 589ae94f66..f4442b5852 100644
--- a/dovecot/locale/af_ZA/fusiondirectory.po
+++ b/dovecot/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po
index fac7b9f44e..b4602d2036 100644
--- a/dovecot/locale/ar/fusiondirectory.po
+++ b/dovecot/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po
index 91c9c4cb6e..bcc8b06b54 100644
--- a/dovecot/locale/ca/fusiondirectory.po
+++ b/dovecot/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po
index bef34ba198..cf4e3f81e6 100644
--- a/dovecot/locale/cs_CZ/fusiondirectory.po
+++ b/dovecot/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -121,7 +121,7 @@ msgstr "Nejsou určeny žádné poštovní servery slučitelné s protokolem IMA
 msgid "Mail server for this account is invalid!"
 msgstr "Poštovní server pro tento účet je neplatný!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po
index 13206ee1c2..558bda5fd0 100644
--- a/dovecot/locale/de/fusiondirectory.po
+++ b/dovecot/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -118,7 +118,7 @@ msgstr "Es sind keine IMAP-kompatible Mail-Server definiert!"
 msgid "Mail server for this account is invalid!"
 msgstr "Der Mail-Server für dieses Konto ist ungültig!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po
index bff5bf5604..75951f8c9e 100644
--- a/dovecot/locale/el_GR/fusiondirectory.po
+++ b/dovecot/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -121,7 +121,7 @@ msgstr "Δεν έχουν ορισθεί συμβατοί διακομιστές
 msgid "Mail server for this account is invalid!"
 msgstr " διακομιστής αλληλογραφίας για αυτόν το λογαριασμό είναι άκυρος!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po
index 894d6fbee5..963bed8ef4 100644
--- a/dovecot/locale/es/fusiondirectory.po
+++ b/dovecot/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -118,7 +118,7 @@ msgstr "¡No se han definido servidores IMAP compatibles!"
 msgid "Mail server for this account is invalid!"
 msgstr "¡El servidor de correo para esta cuenta no es válido!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po
index dee94379d9..b92b04b351 100644
--- a/dovecot/locale/es_CO/fusiondirectory.po
+++ b/dovecot/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po
index 5f7e27c39c..914fa00b47 100644
--- a/dovecot/locale/es_VE/fusiondirectory.po
+++ b/dovecot/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -118,7 +118,7 @@ msgstr "¡No se han definido servidores IMAP compatibles!"
 msgid "Mail server for this account is invalid!"
 msgstr "¡El servidor de correo para esta cuenta no es válido!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po
index 0967c91b8f..84bcfa33ea 100644
--- a/dovecot/locale/fa_IR/fusiondirectory.po
+++ b/dovecot/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po
index 4eaac86b8f..d57579a4dd 100644
--- a/dovecot/locale/fi_FI/fusiondirectory.po
+++ b/dovecot/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po
index b4e4f66927..e64e658ccd 100644
--- a/dovecot/locale/fr/fusiondirectory.po
+++ b/dovecot/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -120,7 +120,7 @@ msgstr "Il n'y a aucun serveur IMAP compatibles définis !"
 msgid "Mail server for this account is invalid!"
 msgstr "Le serveur de messagerie pour ce compte est non valide !"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr "Erreur lors de la connexion au serveur Dovecot via Argonaut : %s"
diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po
index 8647274798..57a6c38a83 100644
--- a/dovecot/locale/hu_HU/fusiondirectory.po
+++ b/dovecot/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po
index ffac8e4101..0c6fcd8815 100644
--- a/dovecot/locale/id/fusiondirectory.po
+++ b/dovecot/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po
index e4aa48e636..abb305f92d 100644
--- a/dovecot/locale/it_IT/fusiondirectory.po
+++ b/dovecot/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -118,7 +118,7 @@ msgstr "Non è stato definito nessun server IMAP compatibile !"
 msgid "Mail server for this account is invalid!"
 msgstr "Il server di posta elettronica di questo account non è valido !"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ja/fusiondirectory.po b/dovecot/locale/ja/fusiondirectory.po
index 1fd7cc8183..83d5bcbe49 100644
--- a/dovecot/locale/ja/fusiondirectory.po
+++ b/dovecot/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ko/fusiondirectory.po b/dovecot/locale/ko/fusiondirectory.po
index 99c8539ecc..678a438418 100644
--- a/dovecot/locale/ko/fusiondirectory.po
+++ b/dovecot/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -118,7 +118,7 @@ msgstr "정의된 IMAP 호환 메일 서버가 없습니다!"
 msgid "Mail server for this account is invalid!"
 msgstr "이 계정의 메일 서버가 유효하지 않습니다!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr "Argonaut를 통해 Dovecot 서버에 접속하는 동안 오류가 발생했습니다: %s"
diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po
index 6b732f8bd6..50441fc28f 100644
--- a/dovecot/locale/lv/fusiondirectory.po
+++ b/dovecot/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po
index ad9037ef7a..04e8cab75b 100644
--- a/dovecot/locale/nb/fusiondirectory.po
+++ b/dovecot/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po
index 2020c4b591..b3e8df9f67 100644
--- a/dovecot/locale/nl/fusiondirectory.po
+++ b/dovecot/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -121,7 +121,7 @@ msgstr "Er zijn geen IMAP compatibele mail servers gedefinieerd!"
 msgid "Mail server for this account is invalid!"
 msgstr "Mail server voor dit account is ongeldig!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po
index 2b29d4570c..9d60813775 100644
--- a/dovecot/locale/pl/fusiondirectory.po
+++ b/dovecot/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po
index 2aeea58a41..2dcce38e0d 100644
--- a/dovecot/locale/pt/fusiondirectory.po
+++ b/dovecot/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po
index 51a462b42a..a1e000ec81 100644
--- a/dovecot/locale/pt_BR/fusiondirectory.po
+++ b/dovecot/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -118,7 +118,7 @@ msgstr "Não existem servidores de correio IMAP compatíveis!"
 msgid "Mail server for this account is invalid!"
 msgstr "Servidor de correio para esta conta é inválido!"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po
index e60c658ed7..4a2532b1f2 100644
--- a/dovecot/locale/ru/fusiondirectory.po
+++ b/dovecot/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -120,7 +120,7 @@ msgstr "Не определен IMAP совместимый почтовый с
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po
index 41d12a6417..fa3bf7ad09 100644
--- a/dovecot/locale/ru@petr1708/fusiondirectory.po
+++ b/dovecot/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po
index 43d5573f48..f3f29e393f 100644
--- a/dovecot/locale/sv/fusiondirectory.po
+++ b/dovecot/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/tr_TR/fusiondirectory.po b/dovecot/locale/tr_TR/fusiondirectory.po
index 29fc26c8f1..76bd047891 100644
--- a/dovecot/locale/tr_TR/fusiondirectory.po
+++ b/dovecot/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po
index 641b59c726..ab48c48a90 100644
--- a/dovecot/locale/ug/fusiondirectory.po
+++ b/dovecot/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po
index d020330040..372c4cd5ed 100644
--- a/dovecot/locale/vi_VN/fusiondirectory.po
+++ b/dovecot/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po
index ae92e42347..79e2a5ea86 100644
--- a/dovecot/locale/zh/fusiondirectory.po
+++ b/dovecot/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dovecot/locale/zh_TW/fusiondirectory.po b/dovecot/locale/zh_TW/fusiondirectory.po
index 7929d7bdf4..74b423e083 100644
--- a/dovecot/locale/zh_TW/fusiondirectory.po
+++ b/dovecot/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "Mail server for this account is invalid!"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
 #, php-format
 msgid "Error while trying to contact Dovecot server through Argonaut: %s"
 msgstr ""
diff --git a/dsa/locale/af_ZA/fusiondirectory.po b/dsa/locale/af_ZA/fusiondirectory.po
index c33c6eec70..16c246fdd4 100644
--- a/dsa/locale/af_ZA/fusiondirectory.po
+++ b/dsa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po
index c9c405911f..e7f48de347 100644
--- a/dsa/locale/ar/fusiondirectory.po
+++ b/dsa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po
index 3dfd7b2baf..5519380fe1 100644
--- a/dsa/locale/ca/fusiondirectory.po
+++ b/dsa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po
index 6e025d3be8..3de9b5ec0d 100644
--- a/dsa/locale/cs_CZ/fusiondirectory.po
+++ b/dsa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po
index 7bfb3a7f6e..111b6cd812 100644
--- a/dsa/locale/de/fusiondirectory.po
+++ b/dsa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po
index 016cc1e29e..98ba3b91ff 100644
--- a/dsa/locale/el_GR/fusiondirectory.po
+++ b/dsa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po
index 4c725da259..9bc0f501a9 100644
--- a/dsa/locale/es/fusiondirectory.po
+++ b/dsa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po
index bc4f9e2486..4b30870b0b 100644
--- a/dsa/locale/es_CO/fusiondirectory.po
+++ b/dsa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po
index 286c4fa9a2..14fbfd7498 100644
--- a/dsa/locale/es_VE/fusiondirectory.po
+++ b/dsa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po
index 4a5bbc1c07..fbb51b4794 100644
--- a/dsa/locale/fa_IR/fusiondirectory.po
+++ b/dsa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po
index 05c9e71169..466d32330f 100644
--- a/dsa/locale/fi_FI/fusiondirectory.po
+++ b/dsa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po
index 0bb911a0cc..c5946635cd 100644
--- a/dsa/locale/fr/fusiondirectory.po
+++ b/dsa/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po
index e4996b6dd2..3a832194b8 100644
--- a/dsa/locale/hu_HU/fusiondirectory.po
+++ b/dsa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po
index ad384c7d10..03033a7177 100644
--- a/dsa/locale/id/fusiondirectory.po
+++ b/dsa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po
index b8efc58ec1..a88c02379a 100644
--- a/dsa/locale/it_IT/fusiondirectory.po
+++ b/dsa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dsa/locale/ja/fusiondirectory.po b/dsa/locale/ja/fusiondirectory.po
index be2e4372b2..6427fe8fc1 100644
--- a/dsa/locale/ja/fusiondirectory.po
+++ b/dsa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ko/fusiondirectory.po b/dsa/locale/ko/fusiondirectory.po
index 644f432bc3..f3c86641bf 100644
--- a/dsa/locale/ko/fusiondirectory.po
+++ b/dsa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po
index 89aa37e78b..bd4b814b8e 100644
--- a/dsa/locale/lv/fusiondirectory.po
+++ b/dsa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po
index d590b5b98f..5697b47ec7 100644
--- a/dsa/locale/nb/fusiondirectory.po
+++ b/dsa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po
index a21a7c8bde..b69978a2fd 100644
--- a/dsa/locale/nl/fusiondirectory.po
+++ b/dsa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po
index c50199a5f5..d7e8e55e46 100644
--- a/dsa/locale/pl/fusiondirectory.po
+++ b/dsa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po
index 3a39ccaad1..15bd6dc054 100644
--- a/dsa/locale/pt/fusiondirectory.po
+++ b/dsa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po
index 64c7eee310..a7c2998816 100644
--- a/dsa/locale/pt_BR/fusiondirectory.po
+++ b/dsa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po
index e6bb2dcab9..de050aece2 100644
--- a/dsa/locale/ru/fusiondirectory.po
+++ b/dsa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po
index 6cb9e59913..d08e7486fc 100644
--- a/dsa/locale/ru@petr1708/fusiondirectory.po
+++ b/dsa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po
index ef0a868e30..ee606c51ad 100644
--- a/dsa/locale/sv/fusiondirectory.po
+++ b/dsa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dsa/locale/tr_TR/fusiondirectory.po b/dsa/locale/tr_TR/fusiondirectory.po
index 9268354afd..e34377ff21 100644
--- a/dsa/locale/tr_TR/fusiondirectory.po
+++ b/dsa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po
index 6774ef1d88..35ecf1d744 100644
--- a/dsa/locale/ug/fusiondirectory.po
+++ b/dsa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po
index 34887a104d..d58dd9e45d 100644
--- a/dsa/locale/vi_VN/fusiondirectory.po
+++ b/dsa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po
index cc786446e1..38a261d6b7 100644
--- a/dsa/locale/zh/fusiondirectory.po
+++ b/dsa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dsa/locale/zh_TW/fusiondirectory.po b/dsa/locale/zh_TW/fusiondirectory.po
index 078a398cd6..36cbfe1e39 100644
--- a/dsa/locale/zh_TW/fusiondirectory.po
+++ b/dsa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/af_ZA/fusiondirectory.po b/ejbca/locale/af_ZA/fusiondirectory.po
index 9271eb3818..509903608f 100644
--- a/ejbca/locale/af_ZA/fusiondirectory.po
+++ b/ejbca/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po
index 4f5838ab01..b1830390a3 100644
--- a/ejbca/locale/ar/fusiondirectory.po
+++ b/ejbca/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po
index 3174d4c98c..2132c33807 100644
--- a/ejbca/locale/ca/fusiondirectory.po
+++ b/ejbca/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po
index f38cd4598d..90dce1859b 100644
--- a/ejbca/locale/cs_CZ/fusiondirectory.po
+++ b/ejbca/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po
index 2281e40e1a..475ea95533 100644
--- a/ejbca/locale/de/fusiondirectory.po
+++ b/ejbca/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po
index 8fdd9db4e1..8f2612207f 100644
--- a/ejbca/locale/el_GR/fusiondirectory.po
+++ b/ejbca/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po
index e92d9cd60d..caa775163b 100644
--- a/ejbca/locale/es/fusiondirectory.po
+++ b/ejbca/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po
index 9e12a29ec3..a496dcfb39 100644
--- a/ejbca/locale/es_CO/fusiondirectory.po
+++ b/ejbca/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po
index 41de2a714f..5f3c523cf0 100644
--- a/ejbca/locale/es_VE/fusiondirectory.po
+++ b/ejbca/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po
index 7e4e436353..3aa5cde1f4 100644
--- a/ejbca/locale/fa_IR/fusiondirectory.po
+++ b/ejbca/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po
index 9400c26ee7..e67934cd90 100644
--- a/ejbca/locale/fi_FI/fusiondirectory.po
+++ b/ejbca/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po
index 51e3515146..a5f38b4451 100644
--- a/ejbca/locale/fr/fusiondirectory.po
+++ b/ejbca/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po
index a42b1ee600..5ab5d1116f 100644
--- a/ejbca/locale/hu_HU/fusiondirectory.po
+++ b/ejbca/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po
index 4a7dbc9c73..86f7b6d1c3 100644
--- a/ejbca/locale/id/fusiondirectory.po
+++ b/ejbca/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po
index 67b732b8ed..d86af6758e 100644
--- a/ejbca/locale/it_IT/fusiondirectory.po
+++ b/ejbca/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ejbca/locale/ja/fusiondirectory.po b/ejbca/locale/ja/fusiondirectory.po
index 754256a188..838638e6f5 100644
--- a/ejbca/locale/ja/fusiondirectory.po
+++ b/ejbca/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ko/fusiondirectory.po b/ejbca/locale/ko/fusiondirectory.po
index d10c444096..5e7a419d29 100644
--- a/ejbca/locale/ko/fusiondirectory.po
+++ b/ejbca/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po
index 00023120b1..717747be13 100644
--- a/ejbca/locale/lv/fusiondirectory.po
+++ b/ejbca/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po
index 8b2d38ec33..2a44524f58 100644
--- a/ejbca/locale/nb/fusiondirectory.po
+++ b/ejbca/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po
index 12f332a3e8..b7750c5bdc 100644
--- a/ejbca/locale/nl/fusiondirectory.po
+++ b/ejbca/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po
index 832cc59726..b0455057b0 100644
--- a/ejbca/locale/pl/fusiondirectory.po
+++ b/ejbca/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po
index 1abb8c63e4..6729594594 100644
--- a/ejbca/locale/pt/fusiondirectory.po
+++ b/ejbca/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po
index fdf1e8eb85..5dd47145cb 100644
--- a/ejbca/locale/pt_BR/fusiondirectory.po
+++ b/ejbca/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po
index 0f84e29d01..3715bc9dd8 100644
--- a/ejbca/locale/ru/fusiondirectory.po
+++ b/ejbca/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po
index 175578981e..4e419ec286 100644
--- a/ejbca/locale/ru@petr1708/fusiondirectory.po
+++ b/ejbca/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po
index 40241f2196..1b7a68841c 100644
--- a/ejbca/locale/sv/fusiondirectory.po
+++ b/ejbca/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ejbca/locale/tr_TR/fusiondirectory.po b/ejbca/locale/tr_TR/fusiondirectory.po
index c320947e17..f53fa9a393 100644
--- a/ejbca/locale/tr_TR/fusiondirectory.po
+++ b/ejbca/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po
index 6e3ef0bfcf..abd8e25315 100644
--- a/ejbca/locale/ug/fusiondirectory.po
+++ b/ejbca/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po
index a1c87a59ed..8767bdc6d2 100644
--- a/ejbca/locale/vi_VN/fusiondirectory.po
+++ b/ejbca/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po
index 7f01653ee0..4698402f5b 100644
--- a/ejbca/locale/zh/fusiondirectory.po
+++ b/ejbca/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ejbca/locale/zh_TW/fusiondirectory.po b/ejbca/locale/zh_TW/fusiondirectory.po
index 7866e73b53..098c4bd5ab 100644
--- a/ejbca/locale/zh_TW/fusiondirectory.po
+++ b/ejbca/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/af_ZA/fusiondirectory.po b/fai/locale/af_ZA/fusiondirectory.po
index 14c629ae40..89af30dca7 100644
--- a/fai/locale/af_ZA/fusiondirectory.po
+++ b/fai/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po
index 49bb75d4a3..0f3bfae7e2 100644
--- a/fai/locale/ar/fusiondirectory.po
+++ b/fai/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po
index 2cec6fdb8b..1ea441657b 100644
--- a/fai/locale/ca/fusiondirectory.po
+++ b/fai/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po
index 8eb97d7d84..127f5bc521 100644
--- a/fai/locale/cs_CZ/fusiondirectory.po
+++ b/fai/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po
index ab1848b7ce..b2c8296e54 100644
--- a/fai/locale/de/fusiondirectory.po
+++ b/fai/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po
index c45ffb7564..b229a793e2 100644
--- a/fai/locale/el_GR/fusiondirectory.po
+++ b/fai/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po
index dc48a326ae..62d86545ad 100644
--- a/fai/locale/es/fusiondirectory.po
+++ b/fai/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po
index 729b751110..fffe43e02f 100644
--- a/fai/locale/es_CO/fusiondirectory.po
+++ b/fai/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po
index 80bd2168df..505ba0b5b4 100644
--- a/fai/locale/es_VE/fusiondirectory.po
+++ b/fai/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po
index 6285554976..9231c8c2d3 100644
--- a/fai/locale/fa_IR/fusiondirectory.po
+++ b/fai/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po
index 7ccae15f40..941c4b21a9 100644
--- a/fai/locale/fi_FI/fusiondirectory.po
+++ b/fai/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po
index 912ad6d688..84c84408b5 100644
--- a/fai/locale/fr/fusiondirectory.po
+++ b/fai/locale/fr/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # MCMic, 2018
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po
index a29b6e3af5..95049c839f 100644
--- a/fai/locale/hu_HU/fusiondirectory.po
+++ b/fai/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po
index d0727bb7c0..ace3894a4b 100644
--- a/fai/locale/id/fusiondirectory.po
+++ b/fai/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index 264e9ea662..46d9ab6890 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fai/locale/ja/fusiondirectory.po b/fai/locale/ja/fusiondirectory.po
index 3b5a016079..bf217ffe2f 100644
--- a/fai/locale/ja/fusiondirectory.po
+++ b/fai/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ko/fusiondirectory.po b/fai/locale/ko/fusiondirectory.po
index 36d8782cb9..7d6fa96dad 100644
--- a/fai/locale/ko/fusiondirectory.po
+++ b/fai/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po
index f26856e706..4596f85928 100644
--- a/fai/locale/lv/fusiondirectory.po
+++ b/fai/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po
index 881288f409..050ec6e75a 100644
--- a/fai/locale/nb/fusiondirectory.po
+++ b/fai/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po
index 3e22bf8ef6..ab2c6b6f22 100644
--- a/fai/locale/nl/fusiondirectory.po
+++ b/fai/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po
index 7ed3bbda4c..369ca56a3e 100644
--- a/fai/locale/pl/fusiondirectory.po
+++ b/fai/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po
index 991710d532..262c4bfbf8 100644
--- a/fai/locale/pt/fusiondirectory.po
+++ b/fai/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po
index dbbaac5e1e..bf04278920 100644
--- a/fai/locale/pt_BR/fusiondirectory.po
+++ b/fai/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po
index 98298340ef..c885be1cfc 100644
--- a/fai/locale/ru/fusiondirectory.po
+++ b/fai/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po
index b0ce012766..9a7700ac84 100644
--- a/fai/locale/ru@petr1708/fusiondirectory.po
+++ b/fai/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po
index 937ec9e5ec..b612166333 100644
--- a/fai/locale/sv/fusiondirectory.po
+++ b/fai/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fai/locale/tr_TR/fusiondirectory.po b/fai/locale/tr_TR/fusiondirectory.po
index 5f6827c8e0..98a1568c56 100644
--- a/fai/locale/tr_TR/fusiondirectory.po
+++ b/fai/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po
index bff76fb550..bed59910bd 100644
--- a/fai/locale/ug/fusiondirectory.po
+++ b/fai/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po
index a3079936b8..0970f832a4 100644
--- a/fai/locale/vi_VN/fusiondirectory.po
+++ b/fai/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po
index 0f7f314865..6b44a053df 100644
--- a/fai/locale/zh/fusiondirectory.po
+++ b/fai/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fai/locale/zh_TW/fusiondirectory.po b/fai/locale/zh_TW/fusiondirectory.po
index 032715cefb..fe324bc49e 100644
--- a/fai/locale/zh_TW/fusiondirectory.po
+++ b/fai/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/af_ZA/fusiondirectory.po b/freeradius/locale/af_ZA/fusiondirectory.po
index 704e3106b9..c74453a566 100644
--- a/freeradius/locale/af_ZA/fusiondirectory.po
+++ b/freeradius/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po
index 9e0fc10328..14ff24888c 100644
--- a/freeradius/locale/ar/fusiondirectory.po
+++ b/freeradius/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po
index f3e4fd954a..55a414afc1 100644
--- a/freeradius/locale/ca/fusiondirectory.po
+++ b/freeradius/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po
index 3ef5d65a45..73494bcf15 100644
--- a/freeradius/locale/cs_CZ/fusiondirectory.po
+++ b/freeradius/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po
index cc1bd2b39f..2c5ce23d12 100644
--- a/freeradius/locale/de/fusiondirectory.po
+++ b/freeradius/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po
index 6c54880532..1c61f89a23 100644
--- a/freeradius/locale/el_GR/fusiondirectory.po
+++ b/freeradius/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po
index 842dd49ebe..8e156363a2 100644
--- a/freeradius/locale/es/fusiondirectory.po
+++ b/freeradius/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po
index 8181238ed4..bea4cd644b 100644
--- a/freeradius/locale/es_CO/fusiondirectory.po
+++ b/freeradius/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po
index 8be98dea86..52bb36ac86 100644
--- a/freeradius/locale/es_VE/fusiondirectory.po
+++ b/freeradius/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po
index 843677e504..e0463f285e 100644
--- a/freeradius/locale/fa_IR/fusiondirectory.po
+++ b/freeradius/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po
index 0bdb5780f9..9be706b5a4 100644
--- a/freeradius/locale/fi_FI/fusiondirectory.po
+++ b/freeradius/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po
index 8da8d12ee3..656dd6784f 100644
--- a/freeradius/locale/fr/fusiondirectory.po
+++ b/freeradius/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po
index 782b6cf6f6..9c4838fd57 100644
--- a/freeradius/locale/hu_HU/fusiondirectory.po
+++ b/freeradius/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po
index e6de37436c..21f99942d3 100644
--- a/freeradius/locale/id/fusiondirectory.po
+++ b/freeradius/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po
index ffa973a002..2d3f170d5f 100644
--- a/freeradius/locale/it_IT/fusiondirectory.po
+++ b/freeradius/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/freeradius/locale/ja/fusiondirectory.po b/freeradius/locale/ja/fusiondirectory.po
index 5435366612..c56fe02bd3 100644
--- a/freeradius/locale/ja/fusiondirectory.po
+++ b/freeradius/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ko/fusiondirectory.po b/freeradius/locale/ko/fusiondirectory.po
index c9110e7617..c51ded38fe 100644
--- a/freeradius/locale/ko/fusiondirectory.po
+++ b/freeradius/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po
index 3cec5e58dd..bcbce51f25 100644
--- a/freeradius/locale/lv/fusiondirectory.po
+++ b/freeradius/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po
index 3c3ae9c37b..035dad38eb 100644
--- a/freeradius/locale/nb/fusiondirectory.po
+++ b/freeradius/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po
index 832cf3621d..37e94d8fbb 100644
--- a/freeradius/locale/nl/fusiondirectory.po
+++ b/freeradius/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po
index 76a7ab94ab..0faf5fecdc 100644
--- a/freeradius/locale/pl/fusiondirectory.po
+++ b/freeradius/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po
index d665e9e3b2..9a098d19f8 100644
--- a/freeradius/locale/pt/fusiondirectory.po
+++ b/freeradius/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po
index f16828c14f..6bdeab8de4 100644
--- a/freeradius/locale/pt_BR/fusiondirectory.po
+++ b/freeradius/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po
index b11537050f..5ff4777567 100644
--- a/freeradius/locale/ru/fusiondirectory.po
+++ b/freeradius/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po
index ea0c42955b..d0918b37d3 100644
--- a/freeradius/locale/ru@petr1708/fusiondirectory.po
+++ b/freeradius/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po
index 2dfda20fd4..28e7ff4c41 100644
--- a/freeradius/locale/sv/fusiondirectory.po
+++ b/freeradius/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/freeradius/locale/tr_TR/fusiondirectory.po b/freeradius/locale/tr_TR/fusiondirectory.po
index ea2f5009bf..a5e803e577 100644
--- a/freeradius/locale/tr_TR/fusiondirectory.po
+++ b/freeradius/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po
index ab6aa1452a..83808e7391 100644
--- a/freeradius/locale/ug/fusiondirectory.po
+++ b/freeradius/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po
index 75794bb9f3..2d7f2f7a02 100644
--- a/freeradius/locale/vi_VN/fusiondirectory.po
+++ b/freeradius/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po
index 7eb7376596..fe399dd7f4 100644
--- a/freeradius/locale/zh/fusiondirectory.po
+++ b/freeradius/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/freeradius/locale/zh_TW/fusiondirectory.po b/freeradius/locale/zh_TW/fusiondirectory.po
index 1f29236772..be6a9f694d 100644
--- a/freeradius/locale/zh_TW/fusiondirectory.po
+++ b/freeradius/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/af_ZA/fusiondirectory.po b/fusioninventory/locale/af_ZA/fusiondirectory.po
index 10cf928a54..c5fb255886 100644
--- a/fusioninventory/locale/af_ZA/fusiondirectory.po
+++ b/fusioninventory/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po
index 349f6c7ad0..8512016550 100644
--- a/fusioninventory/locale/ar/fusiondirectory.po
+++ b/fusioninventory/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po
index 7b3b129a26..22075cfaf5 100644
--- a/fusioninventory/locale/ca/fusiondirectory.po
+++ b/fusioninventory/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po
index afdcdd2d87..539fbb5254 100644
--- a/fusioninventory/locale/cs_CZ/fusiondirectory.po
+++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po
index 63f7c4b9bc..65c1e362e4 100644
--- a/fusioninventory/locale/de/fusiondirectory.po
+++ b/fusioninventory/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po
index 7aa568301e..347bdddc71 100644
--- a/fusioninventory/locale/el_GR/fusiondirectory.po
+++ b/fusioninventory/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po
index b0a96d42bc..85fe891fd2 100644
--- a/fusioninventory/locale/es/fusiondirectory.po
+++ b/fusioninventory/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po
index cf618e2646..08bc59161e 100644
--- a/fusioninventory/locale/es_CO/fusiondirectory.po
+++ b/fusioninventory/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po
index 10fac64187..75b4157716 100644
--- a/fusioninventory/locale/es_VE/fusiondirectory.po
+++ b/fusioninventory/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po
index 56076a33d8..4960ee58fe 100644
--- a/fusioninventory/locale/fa_IR/fusiondirectory.po
+++ b/fusioninventory/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po
index 7f14037339..f8b5ac81fa 100644
--- a/fusioninventory/locale/fi_FI/fusiondirectory.po
+++ b/fusioninventory/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po
index 924c26e528..473bc6d9a9 100644
--- a/fusioninventory/locale/fr/fusiondirectory.po
+++ b/fusioninventory/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po
index a795a7a10d..dcfb27f2e2 100644
--- a/fusioninventory/locale/hu_HU/fusiondirectory.po
+++ b/fusioninventory/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po
index bcc6602bba..69d35092c4 100644
--- a/fusioninventory/locale/id/fusiondirectory.po
+++ b/fusioninventory/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po
index 04537e9932..a349e2b8b1 100644
--- a/fusioninventory/locale/it_IT/fusiondirectory.po
+++ b/fusioninventory/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fusioninventory/locale/ja/fusiondirectory.po b/fusioninventory/locale/ja/fusiondirectory.po
index 32ba38e51d..0f100a9b3e 100644
--- a/fusioninventory/locale/ja/fusiondirectory.po
+++ b/fusioninventory/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ko/fusiondirectory.po b/fusioninventory/locale/ko/fusiondirectory.po
index 807137c657..339dd37ae9 100644
--- a/fusioninventory/locale/ko/fusiondirectory.po
+++ b/fusioninventory/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po
index 4a86d584cd..9d3c097cab 100644
--- a/fusioninventory/locale/lv/fusiondirectory.po
+++ b/fusioninventory/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po
index 4ae5110812..fa23bae0cd 100644
--- a/fusioninventory/locale/nb/fusiondirectory.po
+++ b/fusioninventory/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po
index 5ff8339f8f..0a5b60d201 100644
--- a/fusioninventory/locale/nl/fusiondirectory.po
+++ b/fusioninventory/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po
index 7a155d3962..7ee2c8f5ee 100644
--- a/fusioninventory/locale/pl/fusiondirectory.po
+++ b/fusioninventory/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po
index 6b8dec2ae5..a85dfd9be8 100644
--- a/fusioninventory/locale/pt/fusiondirectory.po
+++ b/fusioninventory/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po
index 5055fd8d88..d4bbca2063 100644
--- a/fusioninventory/locale/pt_BR/fusiondirectory.po
+++ b/fusioninventory/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po
index 8f81e493bc..48f4c01c58 100644
--- a/fusioninventory/locale/ru/fusiondirectory.po
+++ b/fusioninventory/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
index 7eadba0426..ef33fad4f6 100644
--- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po
+++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po
index ed851b410b..9a2aaba804 100644
--- a/fusioninventory/locale/sv/fusiondirectory.po
+++ b/fusioninventory/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fusioninventory/locale/tr_TR/fusiondirectory.po b/fusioninventory/locale/tr_TR/fusiondirectory.po
index 8f05dee8d2..c9dbcea1cb 100644
--- a/fusioninventory/locale/tr_TR/fusiondirectory.po
+++ b/fusioninventory/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po
index 0ac31929f7..1fda4a08dc 100644
--- a/fusioninventory/locale/ug/fusiondirectory.po
+++ b/fusioninventory/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po
index aed5e77947..c310807c62 100644
--- a/fusioninventory/locale/vi_VN/fusiondirectory.po
+++ b/fusioninventory/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po
index 2a7866478b..b8e1cd9d28 100644
--- a/fusioninventory/locale/zh/fusiondirectory.po
+++ b/fusioninventory/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fusioninventory/locale/zh_TW/fusiondirectory.po b/fusioninventory/locale/zh_TW/fusiondirectory.po
index 52ed0a4627..7e2582141f 100644
--- a/fusioninventory/locale/zh_TW/fusiondirectory.po
+++ b/fusioninventory/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/af_ZA/fusiondirectory.po b/gpg/locale/af_ZA/fusiondirectory.po
index 01e76ba62d..76480cf27b 100644
--- a/gpg/locale/af_ZA/fusiondirectory.po
+++ b/gpg/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po
index f57813cebd..629695601e 100644
--- a/gpg/locale/ar/fusiondirectory.po
+++ b/gpg/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -78,38 +78,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po
index c899ff02d7..249ac3df69 100644
--- a/gpg/locale/ca/fusiondirectory.po
+++ b/gpg/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -78,38 +78,38 @@ msgstr "Error de la configuració"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po
index 378c44dfd3..61ba09c1ef 100644
--- a/gpg/locale/cs_CZ/fusiondirectory.po
+++ b/gpg/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -79,38 +79,38 @@ msgstr "Chyba v nastavení"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr "Nejprve je třeba prostřednictvím sekce přídavky nastavit základ GPG"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "Identifikátor klíče"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Identifikátor uživatele"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Čas vytvoření"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Skončení platnosti"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Algoritmus"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Velikost"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Platnost odvolána"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "zakázáno"
diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po
index 447713915c..0ff4369ea9 100644
--- a/gpg/locale/de/fusiondirectory.po
+++ b/gpg/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -78,38 +78,38 @@ msgstr "Konfigurationsfehler"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "Schlüsselkennung"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Benutzer-ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Erstellungszeitpunkt"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Ablauf"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Algorithmus"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Größe"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Widerrufen"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Deaktiviert"
diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po
index 105728f189..52f28e6905 100644
--- a/gpg/locale/el_GR/fusiondirectory.po
+++ b/gpg/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -79,38 +79,38 @@ msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 "Θα πρέπει να ρυθμίσετε την GPG base dn μέσω την ενότητας προσθέτωβ πρώτα"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "Αναγνωριστικό κλειδιού"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Αναγνωριστικό χρήστη"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Ημερομηνία δημιουργίας"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Λήξη"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Αλγόριθμος"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Μέγεθος"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Ανεκλήθη"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Απενεργοποιημένο"
diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po
index 23e651e8b4..5a34b9db6f 100644
--- a/gpg/locale/es/fusiondirectory.po
+++ b/gpg/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -78,38 +78,38 @@ msgstr "Error en la configuración"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Identificador (ID) de usuario"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Tamaño"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Desactivado"
diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po
index 5b2e1cd602..12dd203039 100644
--- a/gpg/locale/es_CO/fusiondirectory.po
+++ b/gpg/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -78,38 +78,38 @@ msgstr "Error de configuración"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID de usuario"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po
index 80a3cc03c4..478ba95d18 100644
--- a/gpg/locale/es_VE/fusiondirectory.po
+++ b/gpg/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -78,38 +78,38 @@ msgstr "Error en la configuración"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Identificador (ID) de usuario"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Tamaño"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Desactivado"
diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po
index a401e2f69e..4ce75f570b 100644
--- a/gpg/locale/fa_IR/fusiondirectory.po
+++ b/gpg/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po
index 07d0009a42..569d45aba4 100644
--- a/gpg/locale/fi_FI/fusiondirectory.po
+++ b/gpg/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -78,38 +78,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Käyttäjätunnus"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po
index c38f544803..778259ec40 100644
--- a/gpg/locale/fr/fusiondirectory.po
+++ b/gpg/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -80,38 +80,38 @@ msgstr ""
 "Vous devez configurer d'abord le DN de base de GPG, dans la section "
 "«Configuration»"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "ID de la clef"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID de l'utilisateur"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Date de création"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Date d'expiration"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Algorithme"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Taille"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Révoquée"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Désactivée"
diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po
index 5193d008b0..50ec5544d0 100644
--- a/gpg/locale/hu_HU/fusiondirectory.po
+++ b/gpg/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po
index 57f7af6a80..da3fc7e338 100644
--- a/gpg/locale/id/fusiondirectory.po
+++ b/gpg/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po
index b3c82adbd6..771fbacf30 100644
--- a/gpg/locale/it_IT/fusiondirectory.po
+++ b/gpg/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -79,38 +79,38 @@ msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 "Devi prima di tutto configurare la bse dn per GPG, nella sezione addons"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "ID della chiave"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID dell'utente"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Data di creazione"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Data di scadenza"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Algoritmo"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Dimensione"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Revocato"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Disabilitato"
diff --git a/gpg/locale/ja/fusiondirectory.po b/gpg/locale/ja/fusiondirectory.po
index 8a1bedd9df..cc145dc960 100644
--- a/gpg/locale/ja/fusiondirectory.po
+++ b/gpg/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/ko/fusiondirectory.po b/gpg/locale/ko/fusiondirectory.po
index c13d8b1f56..82ae75e654 100644
--- a/gpg/locale/ko/fusiondirectory.po
+++ b/gpg/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -78,38 +78,38 @@ msgstr "설정 에러"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr "먼저 addons 섹션을 통해 GPG 기반 dn을 구성해야합니다."
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "키 ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "사용자 ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "생성시간"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "만료"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "알고리즘"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "크기"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "철회"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "미사용"
diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po
index d0e6e259be..b66fb43293 100644
--- a/gpg/locale/lv/fusiondirectory.po
+++ b/gpg/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -78,38 +78,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Lietotāja ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po
index 875c6bab20..443e0e54a3 100644
--- a/gpg/locale/nb/fusiondirectory.po
+++ b/gpg/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -78,38 +78,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po
index 2bbec9613c..d2ebd0ead5 100644
--- a/gpg/locale/nl/fusiondirectory.po
+++ b/gpg/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -79,38 +79,38 @@ msgstr "Configuratiefout"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr "Je moet GPG basis dn eerst configureren in de add-ons sectie "
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "Sleutel-ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Gebruikers-ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Tijd van aanmaak"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Verval"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Algoritme"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Grootte"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Ingetrokken"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Niet actief"
diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po
index a203e0a346..b303faab2e 100644
--- a/gpg/locale/pl/fusiondirectory.po
+++ b/gpg/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -78,38 +78,38 @@ msgstr "Błąd konfiguracji"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Identyfikator użytkownika"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Rozmiar"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Wyłączone"
diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po
index 6680184109..afc8bab716 100644
--- a/gpg/locale/pt/fusiondirectory.po
+++ b/gpg/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -78,38 +78,38 @@ msgstr "Erro de configuração"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID do usuário"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po
index e6e47959f0..c02a0c74ec 100644
--- a/gpg/locale/pt_BR/fusiondirectory.po
+++ b/gpg/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -78,38 +78,38 @@ msgstr "Erro de configuração"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID de usuário"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Tamanho"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po
index 1d214ef661..baa0d9e108 100644
--- a/gpg/locale/ru/fusiondirectory.po
+++ b/gpg/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -78,38 +78,38 @@ msgstr "Ошибка конфигурации"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr "ID ключа"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Идентификатор пользователя"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr "Время создания"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr "Когда истекает"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr "Алгоритм"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Размер"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr "Отозван"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Отключен"
diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po
index c7a9f8266f..7a0f618fef 100644
--- a/gpg/locale/ru@petr1708/fusiondirectory.po
+++ b/gpg/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po
index 3e2a0fb55d..f6be836afe 100644
--- a/gpg/locale/sv/fusiondirectory.po
+++ b/gpg/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -78,38 +78,38 @@ msgstr "Konfigurationsfel"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "Användar-ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "Storlek"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Avaktiverad"
diff --git a/gpg/locale/tr_TR/fusiondirectory.po b/gpg/locale/tr_TR/fusiondirectory.po
index 36d12c5a5c..731e1b058e 100644
--- a/gpg/locale/tr_TR/fusiondirectory.po
+++ b/gpg/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po
index b19130a7f6..924438a845 100644
--- a/gpg/locale/ug/fusiondirectory.po
+++ b/gpg/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po
index d41fbe4826..af38c4075a 100644
--- a/gpg/locale/vi_VN/fusiondirectory.po
+++ b/gpg/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -78,38 +78,38 @@ msgstr "Lỗi cấu hình"
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "ID người dùng"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr "Vô hiệu hóa/ Tắt chức năng"
diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po
index 2a34910eab..59062f53ab 100644
--- a/gpg/locale/zh/fusiondirectory.po
+++ b/gpg/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -78,38 +78,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr "用户 ID"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr "大小"
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/gpg/locale/zh_TW/fusiondirectory.po b/gpg/locale/zh_TW/fusiondirectory.po
index 1212e766d9..6974ab8554 100644
--- a/gpg/locale/zh_TW/fusiondirectory.po
+++ b/gpg/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -74,38 +74,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
diff --git a/ipmi/locale/af_ZA/fusiondirectory.po b/ipmi/locale/af_ZA/fusiondirectory.po
index 086962dac9..79e862c39a 100644
--- a/ipmi/locale/af_ZA/fusiondirectory.po
+++ b/ipmi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po
index 4c63eaa9a6..2d627482bf 100644
--- a/ipmi/locale/ar/fusiondirectory.po
+++ b/ipmi/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po
index 8487b38163..5498efc879 100644
--- a/ipmi/locale/ca/fusiondirectory.po
+++ b/ipmi/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po
index 682bbe6818..bf6a96b968 100644
--- a/ipmi/locale/cs_CZ/fusiondirectory.po
+++ b/ipmi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po
index 4d137b2d55..e60f12d30d 100644
--- a/ipmi/locale/de/fusiondirectory.po
+++ b/ipmi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po
index 1af8643185..9bcedc192c 100644
--- a/ipmi/locale/el_GR/fusiondirectory.po
+++ b/ipmi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po
index 969af16d1d..3a425186e4 100644
--- a/ipmi/locale/es/fusiondirectory.po
+++ b/ipmi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po
index 6691f4b5f6..e9f03f780b 100644
--- a/ipmi/locale/es_CO/fusiondirectory.po
+++ b/ipmi/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po
index 007173c534..82a582ffba 100644
--- a/ipmi/locale/es_VE/fusiondirectory.po
+++ b/ipmi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po
index ac91cc1af6..2009e17a91 100644
--- a/ipmi/locale/fa_IR/fusiondirectory.po
+++ b/ipmi/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po
index 1f13f57f7c..174d934fca 100644
--- a/ipmi/locale/fi_FI/fusiondirectory.po
+++ b/ipmi/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po
index 0027779036..8438bf39aa 100644
--- a/ipmi/locale/fr/fusiondirectory.po
+++ b/ipmi/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po
index 2611fd26f4..c3e1e705d6 100644
--- a/ipmi/locale/hu_HU/fusiondirectory.po
+++ b/ipmi/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po
index 8b0f81cd54..e3bc937354 100644
--- a/ipmi/locale/id/fusiondirectory.po
+++ b/ipmi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po
index fac80e2cb8..514df57378 100644
--- a/ipmi/locale/it_IT/fusiondirectory.po
+++ b/ipmi/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ipmi/locale/ja/fusiondirectory.po b/ipmi/locale/ja/fusiondirectory.po
index 93612d4cd5..a0ed1f5343 100644
--- a/ipmi/locale/ja/fusiondirectory.po
+++ b/ipmi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ko/fusiondirectory.po b/ipmi/locale/ko/fusiondirectory.po
index b0a32f88f8..1d71019ce8 100644
--- a/ipmi/locale/ko/fusiondirectory.po
+++ b/ipmi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po
index ea7e019e27..2153c57552 100644
--- a/ipmi/locale/lv/fusiondirectory.po
+++ b/ipmi/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po
index 3bf614c3cb..80daa52037 100644
--- a/ipmi/locale/nb/fusiondirectory.po
+++ b/ipmi/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po
index f0a3cace35..4e0d5e8cfa 100644
--- a/ipmi/locale/nl/fusiondirectory.po
+++ b/ipmi/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po
index 1b025e0da9..cd344f29ae 100644
--- a/ipmi/locale/pl/fusiondirectory.po
+++ b/ipmi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po
index 447c8e3875..bcb46a3beb 100644
--- a/ipmi/locale/pt/fusiondirectory.po
+++ b/ipmi/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po
index 2feba39ea6..504da6b282 100644
--- a/ipmi/locale/pt_BR/fusiondirectory.po
+++ b/ipmi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po
index 7d16187cb5..9bdc018109 100644
--- a/ipmi/locale/ru/fusiondirectory.po
+++ b/ipmi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po
index bd92c15a78..1c8d1cd965 100644
--- a/ipmi/locale/ru@petr1708/fusiondirectory.po
+++ b/ipmi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po
index 0193de0108..721a44c925 100644
--- a/ipmi/locale/sv/fusiondirectory.po
+++ b/ipmi/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/tr_TR/fusiondirectory.po b/ipmi/locale/tr_TR/fusiondirectory.po
index 33362137d9..e2cb8326ca 100644
--- a/ipmi/locale/tr_TR/fusiondirectory.po
+++ b/ipmi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po
index 76074224d2..9751ec92f3 100644
--- a/ipmi/locale/ug/fusiondirectory.po
+++ b/ipmi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po
index e5cc2be92d..60fdad61c0 100644
--- a/ipmi/locale/vi_VN/fusiondirectory.po
+++ b/ipmi/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po
index 14a89bd54c..6aa6477092 100644
--- a/ipmi/locale/zh/fusiondirectory.po
+++ b/ipmi/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh_TW/fusiondirectory.po b/ipmi/locale/zh_TW/fusiondirectory.po
index 08bedf96e9..07ff20fde7 100644
--- a/ipmi/locale/zh_TW/fusiondirectory.po
+++ b/ipmi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/af_ZA/fusiondirectory.po b/ldapdump/locale/af_ZA/fusiondirectory.po
index a1765e9e7c..e7be16abb6 100644
--- a/ldapdump/locale/af_ZA/fusiondirectory.po
+++ b/ldapdump/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po
index 476a7fb99a..259e2aa3a1 100644
--- a/ldapdump/locale/ar/fusiondirectory.po
+++ b/ldapdump/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po
index dc46e382f8..0905376ade 100644
--- a/ldapdump/locale/ca/fusiondirectory.po
+++ b/ldapdump/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po
index 3d808fe87a..3c1d5d17d4 100644
--- a/ldapdump/locale/cs_CZ/fusiondirectory.po
+++ b/ldapdump/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po
index 8e1d8676ce..9b4abd70b3 100644
--- a/ldapdump/locale/de/fusiondirectory.po
+++ b/ldapdump/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po
index bdb000ff93..57d391bdf1 100644
--- a/ldapdump/locale/el_GR/fusiondirectory.po
+++ b/ldapdump/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po
index 6893e55a1c..66fb2c1edf 100644
--- a/ldapdump/locale/es/fusiondirectory.po
+++ b/ldapdump/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po
index ac7be8a275..c27aa9f600 100644
--- a/ldapdump/locale/es_CO/fusiondirectory.po
+++ b/ldapdump/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po
index 2f8942f41b..f537e4af48 100644
--- a/ldapdump/locale/es_VE/fusiondirectory.po
+++ b/ldapdump/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po
index ce5d2a5375..cec9ad9acb 100644
--- a/ldapdump/locale/fa_IR/fusiondirectory.po
+++ b/ldapdump/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po
index 03b455c9ab..be6aa8c763 100644
--- a/ldapdump/locale/fi_FI/fusiondirectory.po
+++ b/ldapdump/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po
index e14a28ac36..140a2c38cb 100644
--- a/ldapdump/locale/fr/fusiondirectory.po
+++ b/ldapdump/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po
index b0f5fb90d5..025dc505fe 100644
--- a/ldapdump/locale/hu_HU/fusiondirectory.po
+++ b/ldapdump/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po
index 90d5f61baf..2a4edacb1b 100644
--- a/ldapdump/locale/id/fusiondirectory.po
+++ b/ldapdump/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po
index 369d7dccb4..2d9e5fcce8 100644
--- a/ldapdump/locale/it_IT/fusiondirectory.po
+++ b/ldapdump/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapdump/locale/ja/fusiondirectory.po b/ldapdump/locale/ja/fusiondirectory.po
index c8d108edc6..3e529f4c31 100644
--- a/ldapdump/locale/ja/fusiondirectory.po
+++ b/ldapdump/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ko/fusiondirectory.po b/ldapdump/locale/ko/fusiondirectory.po
index 7b249b1519..2917fa4524 100644
--- a/ldapdump/locale/ko/fusiondirectory.po
+++ b/ldapdump/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po
index 9d63265c79..dea7bd7cf3 100644
--- a/ldapdump/locale/lv/fusiondirectory.po
+++ b/ldapdump/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po
index 1497de996f..2cdfc8325e 100644
--- a/ldapdump/locale/nb/fusiondirectory.po
+++ b/ldapdump/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po
index 87bcd7e3f2..a5545ae903 100644
--- a/ldapdump/locale/nl/fusiondirectory.po
+++ b/ldapdump/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po
index 71f02f0634..cc4b9c5618 100644
--- a/ldapdump/locale/pl/fusiondirectory.po
+++ b/ldapdump/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po
index 18ab80377e..9d239806fa 100644
--- a/ldapdump/locale/pt/fusiondirectory.po
+++ b/ldapdump/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po
index 2b671aa021..41b7b5ba99 100644
--- a/ldapdump/locale/pt_BR/fusiondirectory.po
+++ b/ldapdump/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po
index f9e65fa3c1..8299ae3028 100644
--- a/ldapdump/locale/ru/fusiondirectory.po
+++ b/ldapdump/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po
index 85874bdda3..f8a867f2dd 100644
--- a/ldapdump/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po
index 363eba6376..964900aa72 100644
--- a/ldapdump/locale/sv/fusiondirectory.po
+++ b/ldapdump/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapdump/locale/tr_TR/fusiondirectory.po b/ldapdump/locale/tr_TR/fusiondirectory.po
index b4c93188b8..c906fcc153 100644
--- a/ldapdump/locale/tr_TR/fusiondirectory.po
+++ b/ldapdump/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po
index f8c2081cd6..fe9c2312b1 100644
--- a/ldapdump/locale/ug/fusiondirectory.po
+++ b/ldapdump/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po
index 6d90d45235..0d26f37134 100644
--- a/ldapdump/locale/vi_VN/fusiondirectory.po
+++ b/ldapdump/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po
index 6e44f6ed3a..6a76d67575 100644
--- a/ldapdump/locale/zh/fusiondirectory.po
+++ b/ldapdump/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/zh_TW/fusiondirectory.po b/ldapdump/locale/zh_TW/fusiondirectory.po
index 714d29c4ea..4a26a09c85 100644
--- a/ldapdump/locale/zh_TW/fusiondirectory.po
+++ b/ldapdump/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/af_ZA/fusiondirectory.po b/ldapmanager/locale/af_ZA/fusiondirectory.po
index b60e340a87..d3c94dcdd5 100644
--- a/ldapmanager/locale/af_ZA/fusiondirectory.po
+++ b/ldapmanager/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po
index 3f2f2837c9..dad7bc3fb0 100644
--- a/ldapmanager/locale/ar/fusiondirectory.po
+++ b/ldapmanager/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po
index 59f23364f7..fab4f89092 100644
--- a/ldapmanager/locale/ca/fusiondirectory.po
+++ b/ldapmanager/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po
index 0a99448316..daebdeb2be 100644
--- a/ldapmanager/locale/cs_CZ/fusiondirectory.po
+++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po
index f2ca371c59..f4d1c2a05c 100644
--- a/ldapmanager/locale/de/fusiondirectory.po
+++ b/ldapmanager/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po
index e34fcd36c4..ecc5e259fd 100644
--- a/ldapmanager/locale/el_GR/fusiondirectory.po
+++ b/ldapmanager/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po
index d8cafbf346..62109499ad 100644
--- a/ldapmanager/locale/es/fusiondirectory.po
+++ b/ldapmanager/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po
index 25891a60ee..4b0a9c9cd4 100644
--- a/ldapmanager/locale/es_CO/fusiondirectory.po
+++ b/ldapmanager/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po
index a8e4542222..e588274b58 100644
--- a/ldapmanager/locale/es_VE/fusiondirectory.po
+++ b/ldapmanager/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po
index 808bcd8f97..dcd7e9c668 100644
--- a/ldapmanager/locale/fa_IR/fusiondirectory.po
+++ b/ldapmanager/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po
index 5a4c16284f..d2c0896fdc 100644
--- a/ldapmanager/locale/fi_FI/fusiondirectory.po
+++ b/ldapmanager/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po
index 3579dadbb5..a40785859a 100644
--- a/ldapmanager/locale/fr/fusiondirectory.po
+++ b/ldapmanager/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po
index 302cae78ea..a4065bdede 100644
--- a/ldapmanager/locale/hu_HU/fusiondirectory.po
+++ b/ldapmanager/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po
index b8a4669a59..5fc55ed678 100644
--- a/ldapmanager/locale/id/fusiondirectory.po
+++ b/ldapmanager/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index 5cbf023fc7..169093611b 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapmanager/locale/ja/fusiondirectory.po b/ldapmanager/locale/ja/fusiondirectory.po
index 0f4b077e46..2fcf9a2910 100644
--- a/ldapmanager/locale/ja/fusiondirectory.po
+++ b/ldapmanager/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ko/fusiondirectory.po b/ldapmanager/locale/ko/fusiondirectory.po
index 444a9bc9c2..b6f25d8563 100644
--- a/ldapmanager/locale/ko/fusiondirectory.po
+++ b/ldapmanager/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po
index a41083c45d..1b28514c3a 100644
--- a/ldapmanager/locale/lv/fusiondirectory.po
+++ b/ldapmanager/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po
index f6f5df89c8..291cbf861e 100644
--- a/ldapmanager/locale/nb/fusiondirectory.po
+++ b/ldapmanager/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po
index 97a75a9592..756ed06362 100644
--- a/ldapmanager/locale/nl/fusiondirectory.po
+++ b/ldapmanager/locale/nl/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po
index 718fc1838a..20d9e49682 100644
--- a/ldapmanager/locale/pl/fusiondirectory.po
+++ b/ldapmanager/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po
index b5d27d607f..a22b03aa21 100644
--- a/ldapmanager/locale/pt/fusiondirectory.po
+++ b/ldapmanager/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po
index 23e94eac37..5d9759fb94 100644
--- a/ldapmanager/locale/pt_BR/fusiondirectory.po
+++ b/ldapmanager/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po
index 76ce494786..ed037726cf 100644
--- a/ldapmanager/locale/ru/fusiondirectory.po
+++ b/ldapmanager/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
index b661ec2d6e..d07e44c43c 100644
--- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po
index 1c4402de99..e1a7473dfe 100644
--- a/ldapmanager/locale/sv/fusiondirectory.po
+++ b/ldapmanager/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapmanager/locale/tr_TR/fusiondirectory.po b/ldapmanager/locale/tr_TR/fusiondirectory.po
index 5aa83e2dc6..2b4be23fe3 100644
--- a/ldapmanager/locale/tr_TR/fusiondirectory.po
+++ b/ldapmanager/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po
index 62a7124474..204cdba02d 100644
--- a/ldapmanager/locale/ug/fusiondirectory.po
+++ b/ldapmanager/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po
index eb8a98ee7f..1ddfa3f250 100644
--- a/ldapmanager/locale/vi_VN/fusiondirectory.po
+++ b/ldapmanager/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po
index ff819bd9fa..b8e146da53 100644
--- a/ldapmanager/locale/zh/fusiondirectory.po
+++ b/ldapmanager/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ldapmanager/locale/zh_TW/fusiondirectory.po b/ldapmanager/locale/zh_TW/fusiondirectory.po
index 4c6623addc..a202ba4d85 100644
--- a/ldapmanager/locale/zh_TW/fusiondirectory.po
+++ b/ldapmanager/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/af_ZA/fusiondirectory.po b/mail/locale/af_ZA/fusiondirectory.po
index 50f3e166dc..11aa45dd74 100644
--- a/mail/locale/af_ZA/fusiondirectory.po
+++ b/mail/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po
index cef7c0f11d..bc8ddb79af 100644
--- a/mail/locale/ar/fusiondirectory.po
+++ b/mail/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po
index 2733dffa29..e139608444 100644
--- a/mail/locale/ca/fusiondirectory.po
+++ b/mail/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po
index 742bad026a..63909579f0 100644
--- a/mail/locale/cs_CZ/fusiondirectory.po
+++ b/mail/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -146,31 +146,30 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Který atribut má být použit pro vytváření účtů."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "Šablona uživatele e-mailu"
+msgid "User account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "Přebít syntaxi vytváření uživatelského účtu."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "Šablona složky e-mailu"
+msgid "Group account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
-msgstr "Přebít způsoby syntaxe vytvoření výchozího účtu."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "Použít cyrus v unixovém stylu"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
-"Určuje, zda mají mít jmenné prostory v IMAP podobu něco/neco nebo něco.něco "
-"."
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po
index 9de2f22154..10ddabf357 100644
--- a/mail/locale/de/fusiondirectory.po
+++ b/mail/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -143,29 +143,30 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Welches Attribut verwendet werden wird um Konten zu erstellen."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "Mailbenutzer-Vorlage"
+msgid "User account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "Überschreiben der Benutzerkontenerstellungs-Syntax"
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "Mailordnervorlage"
+msgid "Group account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
-msgstr "Überschreiben der Methoden standard Kontenerstellungssyntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "cyrus UNIX-Stil benutzen"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
-msgstr "Entscheidet ob 'foo/bar' Nutzen als Namespace in IMAP sein soll ."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po
index a443b5ede0..abc625f090 100644
--- a/mail/locale/el_GR/fusiondirectory.po
+++ b/mail/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -144,19 +144,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -164,8 +166,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po
index 0707e7d4e6..ee8f089982 100644
--- a/mail/locale/es/fusiondirectory.po
+++ b/mail/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po
index aadd986897..e8073d0c43 100644
--- a/mail/locale/es_CO/fusiondirectory.po
+++ b/mail/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po
index dbc2a62041..7f472ca0bb 100644
--- a/mail/locale/es_VE/fusiondirectory.po
+++ b/mail/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po
index 1e1739dd45..bd800f3d3b 100644
--- a/mail/locale/fa_IR/fusiondirectory.po
+++ b/mail/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po
index 38b9c00204..8547d7d37c 100644
--- a/mail/locale/fi_FI/fusiondirectory.po
+++ b/mail/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po
index 0a36afd7e9..33ece25735 100644
--- a/mail/locale/fr/fusiondirectory.po
+++ b/mail/locale/fr/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -147,28 +148,33 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Quel attribut sera utilisé pour créer des comptes."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "Modèle de compte de courriel"
+msgid "User account template"
+msgstr "Modèle de compte d'utilisateur"
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "Remplace la syntaxe de création d'un compte utilisateur."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
+"Remplacez la syntaxe de création de compte d'utilisateur. La valeur par "
+"défaut est %PREFIX%%UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "Modèle de dossier de courriel"
+msgid "Group account template"
+msgstr "Modèle de compte de groupe"
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
-msgstr "Remplace la syntaxe de création de compte par défaut"
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
+"Remplacez la syntaxe de création de compte de groupe. La valeur par défaut "
+"est %PREFIX%%UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "Utiliser le style Cyrus UNIX"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 "Détermine si \"foo/bar\" ou \"foo.bar\" doit être utilisé comme espace de "
 "nom IMAP."
diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po
index d40e728b6e..9902c3295e 100644
--- a/mail/locale/hu_HU/fusiondirectory.po
+++ b/mail/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po
index 5111bd0605..d0cd7858f8 100644
--- a/mail/locale/id/fusiondirectory.po
+++ b/mail/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po
index 9e6ef82327..eb38e5fa29 100644
--- a/mail/locale/it_IT/fusiondirectory.po
+++ b/mail/locale/it_IT/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
+# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
+"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -147,33 +148,36 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Quale attributo verrà utilizzato per creare degli account."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "Modello per utente mail"
+msgid "User account template"
+msgstr "Modello di account utente"
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "Sovrascrivere la sintassi per la creazione dell'account utente."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
+"Sostituisci la sintassi di creazione dell'account utente. L'impostazione "
+"predefinita è %PREFIX%% UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "Modello per la cartella mail"
+msgid "Group account template"
+msgstr "Modello di account di gruppo"
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
-"Sovrascrivere i metodi predefiniti per la sintassi della creazione degli "
-"account."
+"Sostituisci la sintassi di creazione dell'account di gruppo. L'impostazione "
+"predefinita è %PREFIX %% UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "Usa lo stile cyrus UNIX"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
-"Determina se ' foo / bar' o ' foo.bar ' dovrebbe essere usato come namespace"
-" in IMAP ."
+"Determina se \"foo / bar\" o \"foo.bar\" devono essere utilizzati come spazi"
+" dei nomi in IMAP."
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
diff --git a/mail/locale/ja/fusiondirectory.po b/mail/locale/ja/fusiondirectory.po
index 4caf316bb4..f588d10dca 100644
--- a/mail/locale/ja/fusiondirectory.po
+++ b/mail/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ko/fusiondirectory.po b/mail/locale/ko/fusiondirectory.po
index 367bd23958..725ca19539 100644
--- a/mail/locale/ko/fusiondirectory.po
+++ b/mail/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -143,29 +143,30 @@ msgid "Which attribute will be used to create accounts."
 msgstr "계정 생성에 사용되는 속성"
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "메일 사용자 템플릿"
+msgid "User account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "계정생성 문법 재정의"
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "메일 폴더 템플릿"
+msgid "Group account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
-msgstr "기본 계정 생성 구문 재정의"
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "cyrus 유닉스 방식 사용"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
-msgstr "IMAP의 네임스페이스로 'foo/bar' 또는 'foo.bar' 중 결정하시오."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po
index 1827a2f993..34dc9718aa 100644
--- a/mail/locale/lv/fusiondirectory.po
+++ b/mail/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po
index c30a89a96f..3977ec89af 100644
--- a/mail/locale/nb/fusiondirectory.po
+++ b/mail/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po
index 4106ce992b..ec1992e2a7 100644
--- a/mail/locale/nl/fusiondirectory.po
+++ b/mail/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -145,31 +145,30 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Welk attribuut wordt gebruikt om accounts aan te maken."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
-msgstr "Mail gebruiker sjabloon"
+msgid "User account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
-msgstr "Overschrijf de gebruikers account aanmaak syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
-msgstr "Mail folder sjabloon"
+msgid "Group account template"
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
-msgstr "Overschrijf de standaard methode account aanmaak syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
+msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
 msgstr "Gebruik cyrus UNIX style"
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
-"Bepaal of 'foo/bar' of 'foo.bar' zou moeten gebruikt worden als namespace in"
-" IMAP."
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po
index 8b78d93249..727e38e0b4 100644
--- a/mail/locale/pl/fusiondirectory.po
+++ b/mail/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po
index cf0416a0e8..5781581b07 100644
--- a/mail/locale/pt/fusiondirectory.po
+++ b/mail/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po
index 5967e2fab0..f86299fce9 100644
--- a/mail/locale/pt_BR/fusiondirectory.po
+++ b/mail/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po
index 1934e60aa7..40cef782e3 100644
--- a/mail/locale/ru/fusiondirectory.po
+++ b/mail/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr "Какой из атрибутов будет использоваться для создания аккаунтов."
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po
index 9638125cb0..ebbffcaf8b 100644
--- a/mail/locale/ru@petr1708/fusiondirectory.po
+++ b/mail/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po
index 3606652a42..5cdde5d295 100644
--- a/mail/locale/sv/fusiondirectory.po
+++ b/mail/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/tr_TR/fusiondirectory.po b/mail/locale/tr_TR/fusiondirectory.po
index 38424db81a..d550475008 100644
--- a/mail/locale/tr_TR/fusiondirectory.po
+++ b/mail/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po
index 1372c09a2a..3e1213fc2a 100644
--- a/mail/locale/ug/fusiondirectory.po
+++ b/mail/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po
index f1ecd270ea..3887f4af06 100644
--- a/mail/locale/vi_VN/fusiondirectory.po
+++ b/mail/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po
index 56d59b3a22..9fa4992164 100644
--- a/mail/locale/zh/fusiondirectory.po
+++ b/mail/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -143,19 +143,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -163,8 +165,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mail/locale/zh_TW/fusiondirectory.po b/mail/locale/zh_TW/fusiondirectory.po
index 5bee946a48..ee27d80257 100644
--- a/mail/locale/zh_TW/fusiondirectory.po
+++ b/mail/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -139,19 +139,21 @@ msgid "Which attribute will be used to create accounts."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+msgid "User account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+msgid "Group account template"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:60
@@ -159,8 +161,7 @@ msgid "Use cyrus UNIX style"
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
 msgstr ""
 
 #: config/mail/class_mailPluginConfig.inc:65
diff --git a/mixedgroups/locale/af_ZA/fusiondirectory.po b/mixedgroups/locale/af_ZA/fusiondirectory.po
index 6325b7b594..848ebedd95 100644
--- a/mixedgroups/locale/af_ZA/fusiondirectory.po
+++ b/mixedgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po
index 81cba99d99..0c4a6dbf57 100644
--- a/mixedgroups/locale/ar/fusiondirectory.po
+++ b/mixedgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po
index 73e1f57d50..e21d258230 100644
--- a/mixedgroups/locale/ca/fusiondirectory.po
+++ b/mixedgroups/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po
index 4cb7b885f2..cc5a5b2ae0 100644
--- a/mixedgroups/locale/cs_CZ/fusiondirectory.po
+++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po
index 7f8a50a1aa..469c435a7d 100644
--- a/mixedgroups/locale/de/fusiondirectory.po
+++ b/mixedgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po
index 82481b6437..482da1cdaf 100644
--- a/mixedgroups/locale/el_GR/fusiondirectory.po
+++ b/mixedgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po
index 019f7dba5a..1dd560b976 100644
--- a/mixedgroups/locale/es/fusiondirectory.po
+++ b/mixedgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po
index c6e11d717b..a18db1f769 100644
--- a/mixedgroups/locale/es_CO/fusiondirectory.po
+++ b/mixedgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po
index b1188c7531..b68962b684 100644
--- a/mixedgroups/locale/es_VE/fusiondirectory.po
+++ b/mixedgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po
index a6e7369544..dc90071fe2 100644
--- a/mixedgroups/locale/fa_IR/fusiondirectory.po
+++ b/mixedgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po
index a6a1fde9e5..4560fb7299 100644
--- a/mixedgroups/locale/fi_FI/fusiondirectory.po
+++ b/mixedgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po
index 96d2134a71..a670e5a330 100644
--- a/mixedgroups/locale/fr/fusiondirectory.po
+++ b/mixedgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po
index ba495f7931..60415df2e7 100644
--- a/mixedgroups/locale/hu_HU/fusiondirectory.po
+++ b/mixedgroups/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po
index 5d0f675572..0bf8957b2f 100644
--- a/mixedgroups/locale/id/fusiondirectory.po
+++ b/mixedgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po
index 776dfeac06..23a5295c36 100644
--- a/mixedgroups/locale/it_IT/fusiondirectory.po
+++ b/mixedgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mixedgroups/locale/ja/fusiondirectory.po b/mixedgroups/locale/ja/fusiondirectory.po
index bd7491e0e4..1ab3437e7b 100644
--- a/mixedgroups/locale/ja/fusiondirectory.po
+++ b/mixedgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ko/fusiondirectory.po b/mixedgroups/locale/ko/fusiondirectory.po
index 2f5e8d3d2f..ef401c9703 100644
--- a/mixedgroups/locale/ko/fusiondirectory.po
+++ b/mixedgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po
index 859277882b..7713b42239 100644
--- a/mixedgroups/locale/lv/fusiondirectory.po
+++ b/mixedgroups/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po
index e89967c982..d27f6a784a 100644
--- a/mixedgroups/locale/nb/fusiondirectory.po
+++ b/mixedgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po
index 07b6f45a88..18daf0a4c4 100644
--- a/mixedgroups/locale/nl/fusiondirectory.po
+++ b/mixedgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po
index 4a2b8b2424..e9a6002da7 100644
--- a/mixedgroups/locale/pl/fusiondirectory.po
+++ b/mixedgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po
index 195bb67711..6b5dcac083 100644
--- a/mixedgroups/locale/pt/fusiondirectory.po
+++ b/mixedgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po
index 833b5c91ef..bc3b6a3ddd 100644
--- a/mixedgroups/locale/pt_BR/fusiondirectory.po
+++ b/mixedgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po
index d250439fb5..50ccbdbf6f 100644
--- a/mixedgroups/locale/ru/fusiondirectory.po
+++ b/mixedgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
index 8da8f763e2..7fc02a38bb 100644
--- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po
index 4de9f75678..e4b5cf3721 100644
--- a/mixedgroups/locale/sv/fusiondirectory.po
+++ b/mixedgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mixedgroups/locale/tr_TR/fusiondirectory.po b/mixedgroups/locale/tr_TR/fusiondirectory.po
index bfbd2fbccf..8bbee507df 100644
--- a/mixedgroups/locale/tr_TR/fusiondirectory.po
+++ b/mixedgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po
index e6c9f2ea3e..b6abb95882 100644
--- a/mixedgroups/locale/ug/fusiondirectory.po
+++ b/mixedgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po
index e431e26b69..dab26c560c 100644
--- a/mixedgroups/locale/vi_VN/fusiondirectory.po
+++ b/mixedgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po
index b2b392e3b7..f84e81901c 100644
--- a/mixedgroups/locale/zh/fusiondirectory.po
+++ b/mixedgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mixedgroups/locale/zh_TW/fusiondirectory.po b/mixedgroups/locale/zh_TW/fusiondirectory.po
index ca35683c08..5d59f06ec3 100644
--- a/mixedgroups/locale/zh_TW/fusiondirectory.po
+++ b/mixedgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/af_ZA/fusiondirectory.po b/nagios/locale/af_ZA/fusiondirectory.po
index 279fbeaddb..9f85afc848 100644
--- a/nagios/locale/af_ZA/fusiondirectory.po
+++ b/nagios/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po
index 38580ff78b..d36521e749 100644
--- a/nagios/locale/ar/fusiondirectory.po
+++ b/nagios/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po
index 82a2e28c38..ae24a676bd 100644
--- a/nagios/locale/ca/fusiondirectory.po
+++ b/nagios/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po
index 72337b86e8..66b537550d 100644
--- a/nagios/locale/cs_CZ/fusiondirectory.po
+++ b/nagios/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po
index f4526851fe..a63a168108 100644
--- a/nagios/locale/de/fusiondirectory.po
+++ b/nagios/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po
index cb9335ea74..66e3a69923 100644
--- a/nagios/locale/el_GR/fusiondirectory.po
+++ b/nagios/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po
index de9aa2f84e..eee7407bd4 100644
--- a/nagios/locale/es/fusiondirectory.po
+++ b/nagios/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po
index 3386f2131e..eca4d3d0e8 100644
--- a/nagios/locale/es_CO/fusiondirectory.po
+++ b/nagios/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po
index cb2e06d9fd..725989675b 100644
--- a/nagios/locale/es_VE/fusiondirectory.po
+++ b/nagios/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po
index 9b66d99448..81f9c2b6bd 100644
--- a/nagios/locale/fa_IR/fusiondirectory.po
+++ b/nagios/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po
index 5cbb05bc20..52876f2674 100644
--- a/nagios/locale/fi_FI/fusiondirectory.po
+++ b/nagios/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po
index f9cc3c33b7..1118e4777a 100644
--- a/nagios/locale/fr/fusiondirectory.po
+++ b/nagios/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po
index 5ee9612dc7..989bd16076 100644
--- a/nagios/locale/hu_HU/fusiondirectory.po
+++ b/nagios/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po
index bb71971141..0041113ad3 100644
--- a/nagios/locale/id/fusiondirectory.po
+++ b/nagios/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po
index 30ad6495c3..382489c3ba 100644
--- a/nagios/locale/it_IT/fusiondirectory.po
+++ b/nagios/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/nagios/locale/ja/fusiondirectory.po b/nagios/locale/ja/fusiondirectory.po
index 1b6c1f419c..dfe6d76733 100644
--- a/nagios/locale/ja/fusiondirectory.po
+++ b/nagios/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ko/fusiondirectory.po b/nagios/locale/ko/fusiondirectory.po
index 2842adc414..89b96d6eea 100644
--- a/nagios/locale/ko/fusiondirectory.po
+++ b/nagios/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po
index 4416472532..6dc6b717c5 100644
--- a/nagios/locale/lv/fusiondirectory.po
+++ b/nagios/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po
index d7166612f2..01f91f1e0c 100644
--- a/nagios/locale/nb/fusiondirectory.po
+++ b/nagios/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po
index affd48b188..c5db26dc92 100644
--- a/nagios/locale/nl/fusiondirectory.po
+++ b/nagios/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po
index 0e6bf907e1..e2c91af2d0 100644
--- a/nagios/locale/pl/fusiondirectory.po
+++ b/nagios/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po
index 2c4ad021b8..c48b8beb89 100644
--- a/nagios/locale/pt/fusiondirectory.po
+++ b/nagios/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po
index 282005333a..0d7de1f401 100644
--- a/nagios/locale/pt_BR/fusiondirectory.po
+++ b/nagios/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po
index 866fee17e1..76d63ea729 100644
--- a/nagios/locale/ru/fusiondirectory.po
+++ b/nagios/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po
index 9a66778c5a..157943f3c6 100644
--- a/nagios/locale/ru@petr1708/fusiondirectory.po
+++ b/nagios/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po
index 4c6dc6084d..9bc48d60cc 100644
--- a/nagios/locale/sv/fusiondirectory.po
+++ b/nagios/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/nagios/locale/tr_TR/fusiondirectory.po b/nagios/locale/tr_TR/fusiondirectory.po
index e942183b5b..2851ec30bb 100644
--- a/nagios/locale/tr_TR/fusiondirectory.po
+++ b/nagios/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po
index c3ab37bc2f..606a94fc9b 100644
--- a/nagios/locale/ug/fusiondirectory.po
+++ b/nagios/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po
index 048ef9fc72..af45f3f574 100644
--- a/nagios/locale/vi_VN/fusiondirectory.po
+++ b/nagios/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po
index c631853db8..4a6230e97e 100644
--- a/nagios/locale/zh/fusiondirectory.po
+++ b/nagios/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/nagios/locale/zh_TW/fusiondirectory.po b/nagios/locale/zh_TW/fusiondirectory.po
index 3317c468c0..f3e57fbf58 100644
--- a/nagios/locale/zh_TW/fusiondirectory.po
+++ b/nagios/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/af_ZA/fusiondirectory.po b/netgroups/locale/af_ZA/fusiondirectory.po
index 4061e551ae..a603033d1d 100644
--- a/netgroups/locale/af_ZA/fusiondirectory.po
+++ b/netgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po
index 3f19f2a56b..979455746c 100644
--- a/netgroups/locale/ar/fusiondirectory.po
+++ b/netgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po
index 738f57eff7..69b6057a7a 100644
--- a/netgroups/locale/ca/fusiondirectory.po
+++ b/netgroups/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po
index 057b74ae78..5e1fba1877 100644
--- a/netgroups/locale/cs_CZ/fusiondirectory.po
+++ b/netgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po
index 160fca5d4c..0b9a063be8 100644
--- a/netgroups/locale/de/fusiondirectory.po
+++ b/netgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po
index 6387706b3f..7b69f4fb74 100644
--- a/netgroups/locale/el_GR/fusiondirectory.po
+++ b/netgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po
index f835d9dd5f..ba4d5e0402 100644
--- a/netgroups/locale/es/fusiondirectory.po
+++ b/netgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po
index 8a659d93b5..7ae2022638 100644
--- a/netgroups/locale/es_CO/fusiondirectory.po
+++ b/netgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po
index 2248db9d6d..2f9b6f792f 100644
--- a/netgroups/locale/es_VE/fusiondirectory.po
+++ b/netgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po
index 0c855161fd..b49c4f30c4 100644
--- a/netgroups/locale/fa_IR/fusiondirectory.po
+++ b/netgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po
index 12a649a151..9d95631847 100644
--- a/netgroups/locale/fi_FI/fusiondirectory.po
+++ b/netgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po
index f3f0333db6..2f4c4e64d2 100644
--- a/netgroups/locale/fr/fusiondirectory.po
+++ b/netgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po
index f16dab7626..484171388f 100644
--- a/netgroups/locale/hu_HU/fusiondirectory.po
+++ b/netgroups/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po
index 6740fa2e1b..d0e392d97b 100644
--- a/netgroups/locale/id/fusiondirectory.po
+++ b/netgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po
index 5580a2540f..69f1cf9a9b 100644
--- a/netgroups/locale/it_IT/fusiondirectory.po
+++ b/netgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/netgroups/locale/ja/fusiondirectory.po b/netgroups/locale/ja/fusiondirectory.po
index f4a3e62806..0fff0e569b 100644
--- a/netgroups/locale/ja/fusiondirectory.po
+++ b/netgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ko/fusiondirectory.po b/netgroups/locale/ko/fusiondirectory.po
index 4a330239b7..9d7b7c9989 100644
--- a/netgroups/locale/ko/fusiondirectory.po
+++ b/netgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po
index fe18fa04f8..9fe0f02379 100644
--- a/netgroups/locale/lv/fusiondirectory.po
+++ b/netgroups/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po
index df52343e57..c320778845 100644
--- a/netgroups/locale/nb/fusiondirectory.po
+++ b/netgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po
index 54baf8a6e8..149c82a40b 100644
--- a/netgroups/locale/nl/fusiondirectory.po
+++ b/netgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po
index 0a48247df7..67ee3bb7ff 100644
--- a/netgroups/locale/pl/fusiondirectory.po
+++ b/netgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po
index abe9743048..a38687a52b 100644
--- a/netgroups/locale/pt/fusiondirectory.po
+++ b/netgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po
index bb8a05b513..8edc86de8b 100644
--- a/netgroups/locale/pt_BR/fusiondirectory.po
+++ b/netgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po
index eba4fd7435..819dd6d445 100644
--- a/netgroups/locale/ru/fusiondirectory.po
+++ b/netgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po
index 0a13f4d18a..e85f4169af 100644
--- a/netgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/netgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po
index e397ee1064..e52875de21 100644
--- a/netgroups/locale/sv/fusiondirectory.po
+++ b/netgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/netgroups/locale/tr_TR/fusiondirectory.po b/netgroups/locale/tr_TR/fusiondirectory.po
index 3971dd99a6..c4b0001997 100644
--- a/netgroups/locale/tr_TR/fusiondirectory.po
+++ b/netgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po
index 3363adb021..39c57dc519 100644
--- a/netgroups/locale/ug/fusiondirectory.po
+++ b/netgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po
index 837ea5242e..de8c3c0f56 100644
--- a/netgroups/locale/vi_VN/fusiondirectory.po
+++ b/netgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po
index f1a19271c8..48a3db4143 100644
--- a/netgroups/locale/zh/fusiondirectory.po
+++ b/netgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/netgroups/locale/zh_TW/fusiondirectory.po b/netgroups/locale/zh_TW/fusiondirectory.po
index c04f6960e3..12e43789d5 100644
--- a/netgroups/locale/zh_TW/fusiondirectory.po
+++ b/netgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/af_ZA/fusiondirectory.po b/newsletter/locale/af_ZA/fusiondirectory.po
index 5efafcf38c..afaa2beac2 100644
--- a/newsletter/locale/af_ZA/fusiondirectory.po
+++ b/newsletter/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po
index a7c7f4e291..3c03530f96 100644
--- a/newsletter/locale/ar/fusiondirectory.po
+++ b/newsletter/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po
index 2ec8a6d24a..2de488759a 100644
--- a/newsletter/locale/ca/fusiondirectory.po
+++ b/newsletter/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po
index 98d60b9d23..3b5c928f2a 100644
--- a/newsletter/locale/cs_CZ/fusiondirectory.po
+++ b/newsletter/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po
index 58e0644bb5..73a60bbed7 100644
--- a/newsletter/locale/de/fusiondirectory.po
+++ b/newsletter/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po
index 4df0ae1154..5a4d2805fb 100644
--- a/newsletter/locale/el_GR/fusiondirectory.po
+++ b/newsletter/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po
index 4277aacd54..e0d1315546 100644
--- a/newsletter/locale/es/fusiondirectory.po
+++ b/newsletter/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po
index 0007099e9a..faa5df5937 100644
--- a/newsletter/locale/es_CO/fusiondirectory.po
+++ b/newsletter/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po
index e262e976a2..2d7549245b 100644
--- a/newsletter/locale/es_VE/fusiondirectory.po
+++ b/newsletter/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po
index 1b4de30f65..3fd7c69389 100644
--- a/newsletter/locale/fa_IR/fusiondirectory.po
+++ b/newsletter/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po
index 5a4b75087e..6982e27f49 100644
--- a/newsletter/locale/fi_FI/fusiondirectory.po
+++ b/newsletter/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po
index ace25ea94a..3613082da4 100644
--- a/newsletter/locale/fr/fusiondirectory.po
+++ b/newsletter/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po
index a8c3523b56..1544b861c9 100644
--- a/newsletter/locale/hu_HU/fusiondirectory.po
+++ b/newsletter/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po
index 608ed38ad6..7c9291d8b3 100644
--- a/newsletter/locale/id/fusiondirectory.po
+++ b/newsletter/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po
index a5a73cb371..45023e520b 100644
--- a/newsletter/locale/it_IT/fusiondirectory.po
+++ b/newsletter/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/newsletter/locale/ja/fusiondirectory.po b/newsletter/locale/ja/fusiondirectory.po
index 1d3972b14e..9842ae6ac5 100644
--- a/newsletter/locale/ja/fusiondirectory.po
+++ b/newsletter/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ko/fusiondirectory.po b/newsletter/locale/ko/fusiondirectory.po
index ec0643aa11..ee29484277 100644
--- a/newsletter/locale/ko/fusiondirectory.po
+++ b/newsletter/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po
index cbea48f05e..8389637153 100644
--- a/newsletter/locale/lv/fusiondirectory.po
+++ b/newsletter/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po
index 620fb2e923..b716ef2035 100644
--- a/newsletter/locale/nb/fusiondirectory.po
+++ b/newsletter/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po
index 9d4350ed6d..63be7407ef 100644
--- a/newsletter/locale/nl/fusiondirectory.po
+++ b/newsletter/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po
index 996c84514c..d9950c6203 100644
--- a/newsletter/locale/pl/fusiondirectory.po
+++ b/newsletter/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po
index f38a331e1b..10b215fb18 100644
--- a/newsletter/locale/pt/fusiondirectory.po
+++ b/newsletter/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po
index 4e9efa3475..cb0c3e20dc 100644
--- a/newsletter/locale/pt_BR/fusiondirectory.po
+++ b/newsletter/locale/pt_BR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po
index 5406ffcf41..f27c34898e 100644
--- a/newsletter/locale/ru/fusiondirectory.po
+++ b/newsletter/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po
index dc6ffc7708..c5417e02be 100644
--- a/newsletter/locale/ru@petr1708/fusiondirectory.po
+++ b/newsletter/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po
index e566f31520..13604c0b4e 100644
--- a/newsletter/locale/sv/fusiondirectory.po
+++ b/newsletter/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/tr_TR/fusiondirectory.po b/newsletter/locale/tr_TR/fusiondirectory.po
index faf8ed8b20..4d37a40ad9 100644
--- a/newsletter/locale/tr_TR/fusiondirectory.po
+++ b/newsletter/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po
index 8ecff1823e..ba35177c05 100644
--- a/newsletter/locale/ug/fusiondirectory.po
+++ b/newsletter/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po
index b6a6db0364..9bc4f9a5ed 100644
--- a/newsletter/locale/vi_VN/fusiondirectory.po
+++ b/newsletter/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po
index 23db93034e..92638dcd54 100644
--- a/newsletter/locale/zh/fusiondirectory.po
+++ b/newsletter/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh_TW/fusiondirectory.po b/newsletter/locale/zh_TW/fusiondirectory.po
index d897bb6768..6da3c478f2 100644
--- a/newsletter/locale/zh_TW/fusiondirectory.po
+++ b/newsletter/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/af_ZA/fusiondirectory.po b/opsi/locale/af_ZA/fusiondirectory.po
index 79bda9abf5..55d8bacd34 100644
--- a/opsi/locale/af_ZA/fusiondirectory.po
+++ b/opsi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po
index f650bf1b37..5e5e0f2a49 100644
--- a/opsi/locale/ar/fusiondirectory.po
+++ b/opsi/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po
index c48848a808..bb27d7c75b 100644
--- a/opsi/locale/ca/fusiondirectory.po
+++ b/opsi/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po
index 741591e80c..78c0720e5a 100644
--- a/opsi/locale/cs_CZ/fusiondirectory.po
+++ b/opsi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po
index 33ce12951b..16fb62e2e2 100644
--- a/opsi/locale/de/fusiondirectory.po
+++ b/opsi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po
index 492cf9bb35..189a8bb314 100644
--- a/opsi/locale/el_GR/fusiondirectory.po
+++ b/opsi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po
index f6f7429cc7..f9cd0e57aa 100644
--- a/opsi/locale/es/fusiondirectory.po
+++ b/opsi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po
index 7677b5bab2..e1b5861419 100644
--- a/opsi/locale/es_CO/fusiondirectory.po
+++ b/opsi/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po
index db4a563241..979f16a1f9 100644
--- a/opsi/locale/es_VE/fusiondirectory.po
+++ b/opsi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po
index 99a302b0cf..46dd90b46e 100644
--- a/opsi/locale/fa_IR/fusiondirectory.po
+++ b/opsi/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po
index 085f14046b..ec00ecbeee 100644
--- a/opsi/locale/fi_FI/fusiondirectory.po
+++ b/opsi/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po
index 053fed8701..696f9f621a 100644
--- a/opsi/locale/fr/fusiondirectory.po
+++ b/opsi/locale/fr/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # MCMic, 2017
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po
index 2f26b87489..62a00148d1 100644
--- a/opsi/locale/hu_HU/fusiondirectory.po
+++ b/opsi/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po
index c82b2b03f7..1ba2ff94ff 100644
--- a/opsi/locale/id/fusiondirectory.po
+++ b/opsi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index 59ef2259c5..1f020b0808 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/opsi/locale/ja/fusiondirectory.po b/opsi/locale/ja/fusiondirectory.po
index f9f445363d..3f8a377557 100644
--- a/opsi/locale/ja/fusiondirectory.po
+++ b/opsi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ko/fusiondirectory.po b/opsi/locale/ko/fusiondirectory.po
index c78f21c7f2..20e8797b82 100644
--- a/opsi/locale/ko/fusiondirectory.po
+++ b/opsi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po
index 2d9b5eecd5..f96c17f48a 100644
--- a/opsi/locale/lv/fusiondirectory.po
+++ b/opsi/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po
index 2cc7dfc146..fe7638e414 100644
--- a/opsi/locale/nb/fusiondirectory.po
+++ b/opsi/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po
index d94250a611..84dbb88724 100644
--- a/opsi/locale/nl/fusiondirectory.po
+++ b/opsi/locale/nl/fusiondirectory.po
@@ -7,16 +7,16 @@
 # Selina Oudermans <selina.oudermans@digipolis.be>, 2017
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po
index a3c7fcfe54..2deb0cb5f0 100644
--- a/opsi/locale/pl/fusiondirectory.po
+++ b/opsi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po
index 39b9576ffc..d789990b35 100644
--- a/opsi/locale/pt/fusiondirectory.po
+++ b/opsi/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po
index 6246dd3a30..f5316231ca 100644
--- a/opsi/locale/pt_BR/fusiondirectory.po
+++ b/opsi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po
index fa4f69ef16..7b423a0590 100644
--- a/opsi/locale/ru/fusiondirectory.po
+++ b/opsi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po
index 50c5269736..90cfbc23cb 100644
--- a/opsi/locale/ru@petr1708/fusiondirectory.po
+++ b/opsi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po
index 44e76b4c83..2c0eab462c 100644
--- a/opsi/locale/sv/fusiondirectory.po
+++ b/opsi/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/opsi/locale/tr_TR/fusiondirectory.po b/opsi/locale/tr_TR/fusiondirectory.po
index e357874907..6fa8bed800 100644
--- a/opsi/locale/tr_TR/fusiondirectory.po
+++ b/opsi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po
index b2ec3cd95c..91a8e58389 100644
--- a/opsi/locale/ug/fusiondirectory.po
+++ b/opsi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po
index df42d9749f..6500c6c015 100644
--- a/opsi/locale/vi_VN/fusiondirectory.po
+++ b/opsi/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po
index 01b09b0cc1..fa8f7041cf 100644
--- a/opsi/locale/zh/fusiondirectory.po
+++ b/opsi/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/opsi/locale/zh_TW/fusiondirectory.po b/opsi/locale/zh_TW/fusiondirectory.po
index 52c28134d0..0e2e6d2da8 100644
--- a/opsi/locale/zh_TW/fusiondirectory.po
+++ b/opsi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/af_ZA/fusiondirectory.po b/personal/locale/af_ZA/fusiondirectory.po
index 54772bc350..3646b7419a 100644
--- a/personal/locale/af_ZA/fusiondirectory.po
+++ b/personal/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po
index f2670bf9ed..d6bb558058 100644
--- a/personal/locale/ar/fusiondirectory.po
+++ b/personal/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po
index f112c8d2c8..cb99c38ad2 100644
--- a/personal/locale/ca/fusiondirectory.po
+++ b/personal/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po
index ce74fa830b..7d939d98e1 100644
--- a/personal/locale/cs_CZ/fusiondirectory.po
+++ b/personal/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -182,3 +182,7 @@ msgid ""
 msgstr ""
 "Je třeba, aby identifikátory ORCID účtu měly podobu XXXX-XXXX-XXXX-XXXX, kde"
 " X jsou číslice"
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po
index c7b9b348f0..e0de9df52b 100644
--- a/personal/locale/de/fusiondirectory.po
+++ b/personal/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po
index 155db8c566..2d8816bf5a 100644
--- a/personal/locale/el_GR/fusiondirectory.po
+++ b/personal/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -180,3 +180,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po
index eba561cea9..6f811cbfd1 100644
--- a/personal/locale/es/fusiondirectory.po
+++ b/personal/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po
index 43faa3ac71..9211e2d862 100644
--- a/personal/locale/es_CO/fusiondirectory.po
+++ b/personal/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po
index 11c8bbca33..45ed7833ee 100644
--- a/personal/locale/es_VE/fusiondirectory.po
+++ b/personal/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po
index 09c09a4564..36b943bdd4 100644
--- a/personal/locale/fa_IR/fusiondirectory.po
+++ b/personal/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po
index e27fb4b5a6..8c0912f725 100644
--- a/personal/locale/fi_FI/fusiondirectory.po
+++ b/personal/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po
index b57c7d5249..750b6631bd 100644
--- a/personal/locale/fr/fusiondirectory.po
+++ b/personal/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -189,3 +189,7 @@ msgid ""
 msgstr ""
 "Les ID de compte ORCID doivent ressembler à XXXX-XXXX-XXXX-XXXX où X sont "
 "des chiffres"
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr "Valeur ORCID incorrecte, la somme de contrôle ne correspond pas"
diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po
index 070c75733a..2139aade8c 100644
--- a/personal/locale/hu_HU/fusiondirectory.po
+++ b/personal/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po
index 8f5f7fc45c..6ee06c46a1 100644
--- a/personal/locale/id/fusiondirectory.po
+++ b/personal/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index f6bbaff246..54e7dcec9d 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -6,15 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Paola Penati <paola.penati@opensides.be>, 2018
+# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -185,3 +186,7 @@ msgid ""
 msgstr ""
 "Gli ID account ORCID devono apparire come XXXX-XXXX-XXXX-XXXX dove X sono "
 "cifre"
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr "Valore ORCID errato, il checksum non corrisponde"
diff --git a/personal/locale/ja/fusiondirectory.po b/personal/locale/ja/fusiondirectory.po
index eaf2776b1f..a03d774e90 100644
--- a/personal/locale/ja/fusiondirectory.po
+++ b/personal/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ko/fusiondirectory.po b/personal/locale/ko/fusiondirectory.po
index 634273f3c3..8d79a2a3eb 100644
--- a/personal/locale/ko/fusiondirectory.po
+++ b/personal/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -178,3 +178,7 @@ msgstr "ORCID"
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr "ORCID 계정 ID는 XXXX-XXXX-XXXX-XXXX와 같아야합니다. 여기서 X는 숫자입니다."
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po
index 3a9c02f9bb..3457bca9fd 100644
--- a/personal/locale/lv/fusiondirectory.po
+++ b/personal/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po
index 60430406f8..5f02f07623 100644
--- a/personal/locale/nb/fusiondirectory.po
+++ b/personal/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po
index 217b7d3c49..435d1fe384 100644
--- a/personal/locale/nl/fusiondirectory.po
+++ b/personal/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -183,3 +183,7 @@ msgid ""
 msgstr ""
 "ORCID account IDs moeten eruit zien als XXXX-XXXX-XXXX-XXXX waarbij X "
 "cijfers zijn"
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po
index 9746dcef66..53a0378a77 100644
--- a/personal/locale/pl/fusiondirectory.po
+++ b/personal/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po
index 63a0fe50fc..e89b97f686 100644
--- a/personal/locale/pt/fusiondirectory.po
+++ b/personal/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po
index e386dbc40a..73ba1c88ff 100644
--- a/personal/locale/pt_BR/fusiondirectory.po
+++ b/personal/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po
index 8a59ebc1c5..ed249c9f5f 100644
--- a/personal/locale/ru/fusiondirectory.po
+++ b/personal/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -183,3 +183,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po
index dd30034fe4..8768df0b0b 100644
--- a/personal/locale/ru@petr1708/fusiondirectory.po
+++ b/personal/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po
index 3499e910d6..cb2ecc6f1c 100644
--- a/personal/locale/sv/fusiondirectory.po
+++ b/personal/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/tr_TR/fusiondirectory.po b/personal/locale/tr_TR/fusiondirectory.po
index a092561f6b..0ffdc9fbfb 100644
--- a/personal/locale/tr_TR/fusiondirectory.po
+++ b/personal/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po
index 89a1e0b1c9..793072da02 100644
--- a/personal/locale/ug/fusiondirectory.po
+++ b/personal/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po
index 57c27e6a83..a11db7ed38 100644
--- a/personal/locale/vi_VN/fusiondirectory.po
+++ b/personal/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po
index 1f22f32864..6b8f51e48c 100644
--- a/personal/locale/zh/fusiondirectory.po
+++ b/personal/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -178,3 +178,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/personal/locale/zh_TW/fusiondirectory.po b/personal/locale/zh_TW/fusiondirectory.po
index 0e920ac9aa..72d3df16a5 100644
--- a/personal/locale/zh_TW/fusiondirectory.po
+++ b/personal/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:18+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -174,3 +174,7 @@ msgstr ""
 msgid ""
 "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
 msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
diff --git a/posix/locale/af_ZA/fusiondirectory.po b/posix/locale/af_ZA/fusiondirectory.po
index 254872e04f..d143151636 100644
--- a/posix/locale/af_ZA/fusiondirectory.po
+++ b/posix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ar/fusiondirectory.po b/posix/locale/ar/fusiondirectory.po
index 51e289e547..6a4e4f52d5 100644
--- a/posix/locale/ar/fusiondirectory.po
+++ b/posix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "الخواص"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "الإسم"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "الوصف"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "تلقائي"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "تحذير"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "خطأ"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ca/fusiondirectory.po b/posix/locale/ca/fusiondirectory.po
index 636eb36b3b..6ac0466f6b 100644
--- a/posix/locale/ca/fusiondirectory.po
+++ b/posix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nom"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Directori personal"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Intèrpret d'ordres"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Compte"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Avís"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Error"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Error d'LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/cs_CZ/fusiondirectory.po b/posix/locale/cs_CZ/fusiondirectory.po
index a5418b81db..6617453623 100644
--- a/posix/locale/cs_CZ/fusiondirectory.po
+++ b/posix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -38,82 +38,80 @@ msgstr "POSIX skupina"
 msgid "POSIX user group"
 msgstr "POSIX skupina uživatelů"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Vlastnosti"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Název"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Název této skupiny"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Popis"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Stručný popis této skupiny"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "vynutit GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Vynutit konkrétní identifikátor pro tuto skupinu"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "Identifikátor (GID) pro tuto skupinu"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Členové skupiny"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "systém důvěryhodnosti"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "režim důvěryhodnosti"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Typ ověřování pro tyto stroje"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "zakázáno"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "plný přístup"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "povolit přístup k těmto strojům"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Této skupině umožnit připojení pouze na stroje z tohoto seznamu"
 
@@ -253,91 +251,91 @@ msgstr "Výchozí shell"
 msgid "Shell used by default when activating Unix tab."
 msgstr "Shell použitý jako výchozí při aktivaci Unix karty."
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "upravit POSIXová nastavení uživatele"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Domovská složka"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Umístění domovské složky tohoto uživatele"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Který shell by měl být použit, když se uživatel přihlásí"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "nenastaveno"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Hlavní skupina"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Hlavní skupina tohoto uživatele"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Stav"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Stav tohoto unixového uživatelského účtu"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Vynutit konkrétní identifikátor uživatele/skupiny"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 "Pro tohoto uživatele vynutit konkrétní identifikátory uživatele a jeho "
 "hlavní skupiny"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Identifikátor uživatele"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Hodnota identifikátoru účtu tohoto uživatele"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Idenifikátor skupiny"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Hodnota identifikátoru hlavní skupiny tohoto uživatele"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Členství ve skupinách"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Účet"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Uživatel musí při prvním přihlášení změnit heslo."
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -345,11 +343,11 @@ msgstr ""
 "Při prvním přihlášení musí uživatel změnit heslo (vyžaduje nastavenou "
 "hodnotu u Prodleva před vynucením změny hesla)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Minimální prodleva mezi změnami hesla (dny)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
@@ -357,11 +355,11 @@ msgstr ""
 "Uživatel nebude moci změnit své heslo před uplynutím tohoto počtu dnů "
 "(nevyplnění funkci vypíná)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Prodleva před vynucením změny hesla (dny)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -369,22 +367,22 @@ msgstr ""
 "Po tomto počtu dnů bude uživatel přiměn ke změně hesla (nevyplnění funkce "
 "vypíná)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Datum skončení platnosti hesla"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Datum po kterém skončí platnost hesla uživatele (nevyplnění tuto funkci "
 "vypíná)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Délka nečinnosti uživatele, po které bude účet uživatele vypnut (dny)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -393,11 +391,11 @@ msgstr ""
 "než dojde k jeho vypnutí (zůstane ovšem zachován). Nevyplnění tuto funkci "
 "vypíná"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Prodleva varování uživatele před skončením platnosti hesla (dny)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -405,46 +403,42 @@ msgstr ""
 "Uživatel bude varován nastavený počet dnů předem před skončením platnosti "
 "hesla (nevyplnění tuto funkci vypíná)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Tomuto uživateli povolit připojení pouze na počítače z tohoto seznamu"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatické"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "platnost skončila"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "běží čas odkladu"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "aktivní"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "platnost hesla skončila"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "heslo nelze změnit"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Skupina uživatele %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
@@ -453,73 +447,73 @@ msgstr ""
 "Automatickou hlavní skupinu (pomocí gidNumber „%s“) se nedaří vytvořit  "
 "kvůli následujícím chybám"
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Varování"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr "Neznámá metoda přiřazování identifikátorů „%s“!"
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 "Překročení časového limitu při čekání na zámek. Zámek od %s nebude brán v "
 "potaz!"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Chyba"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Není k dispozici volné ID:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "chyba LDAPu"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "Identifikátor sambaUnixIdPool není jedinečný!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "Není k dispozici ID!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "překročen maximální počet neúspěšných pokusů!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Není k dispozici volné ID – není co přidělit!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -527,10 +521,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr "„nextIdHook“ není k dispozici. Bude použit výchozí základ!"
diff --git a/posix/locale/de/fusiondirectory.po b/posix/locale/de/fusiondirectory.po
index f05c791208..795bfcfbcf 100644
--- a/posix/locale/de/fusiondirectory.po
+++ b/posix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -37,82 +37,80 @@ msgstr "POSIX-Gruppe"
 msgid "POSIX user group"
 msgstr "POSIX-Benutzergruppe"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Eigenschaften"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Name"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Name dieser Gruppe"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Beschreibung"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Kurze Beschreibung dieser Gruppe"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Erzwinge GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "GID-Wert für diese Gruppe erzwingen"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "GID-Wert für diese Gruppe"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Gruppenmitglieder"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "System-Vertrauen"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Vertrauens-Modus"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Art der Authorisierung für diese Hosts"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "deaktiviert"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Vollzugriff"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "erlaube Zugriff auf diese Hosts"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Nur dieser Gruppe erlauben, dieser Liste von Hosts zu verbinden"
 
@@ -242,91 +240,91 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Benutzer POSIX-Einstellungen bearbeiten"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Basisverzeichnis"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Der Pfad zum Heimatverzeichnis für diesen Benutzer"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 "Welche Shell soll verwendet werden, wenn dieser Benutzer sich einloggt"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "unkonfiguriert"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Primäre Gruppe"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Primäre Gruppe für diesen Benutzer"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Status"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Status dieses Benutzer unixkontos"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Benutzer-/Gruppenkennung erzwingen"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 "Benutzerkennungs- und Gruppenkennungswerte für diesen Benutzer erzwingen"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Benutzerkennung"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Benutzerkennwert für diesen Benutzer"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Gruppenkennung"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Gruppenkennwert für diesen Benutzer"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Gruppenmitgliedschaft"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Konto"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Benutzer muss beim ersten Anmelden sein Passwort ändern"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -334,11 +332,11 @@ msgstr ""
 "Benutzer muss das Passwort bei der ersten Anmeldung ändern (benötigt einen "
 "Wert für die Verzögerung, bevor die Passwortänderung erzwungen wird)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Mindestverzögerung zwischen Passwortänderungen (Tage)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
@@ -346,11 +344,11 @@ msgstr ""
 "Der Benutzer kann sein Passwort nicht vor dieser Anzahl an Tagen ändern (zum"
 " Deaktivieren leer lassen)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Verzögerung bevor die Passwortänderung forciert wird (Tage)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -358,23 +356,23 @@ msgstr ""
 "Der Benutzer wird gezwungen werden, sein Passwort nach dieser Anzahl von "
 "Tagen zu ändern (Leer lassen zum Deaktivieren)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Passwort Ablaufdatum"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Datum nach dem dieses Benutzerpasswort ablaufen wird (leer lassen zur "
 "Deaktivierung)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 "Verzögerung von Inaktivität bevor der Benutzer deaktiviert wird (Tage)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -382,11 +380,11 @@ msgstr ""
 "Maximale Verzögerung der Inaktivität nach Passwortablauf bevor der Benutzer "
 "deaktiviert wird (leer lassen zum Deaktivieren)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Verzögerung für Benutzerwarnung vor Passwortablauf (Tage)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -394,117 +392,113 @@ msgstr ""
 "Der Benutzer wird diese Anzahl an Tagen vorher gewarnt, bevor sein Passwort "
 "aufläuft (leer lassen zum Deaktivieren)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Nur diesem Benutzer erlauben, dieser Liste von Hosts zu verbinden"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatisch"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "abgelaufen"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Nachfrist aktiv"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "aktiv"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "Passwort abgelaufen"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "Passwort kann nicht geändert werden"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Gruppe des Benutzers %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Warnung"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Fehler"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Konnte keine freie ID allozieren:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP-Fehler"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool ist nicht eindeutig!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "keine ID verfügbar!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "maximale Anzahl von Versuchen abgelaufen!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Konnte keine freie ID allozieren!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -512,10 +506,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/el_GR/fusiondirectory.po b/posix/locale/el_GR/fusiondirectory.po
index 5fbdfc602a..091ffde899 100644
--- a/posix/locale/el_GR/fusiondirectory.po
+++ b/posix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -37,82 +37,80 @@ msgstr "Ομάδα POSIX"
 msgid "POSIX user group"
 msgstr "Ομάδα χρηστών POSIX"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Ιδιότητες"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Όνομα"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Όνομα αυτής της ομάδας"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Περιγραφή"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Σύντομη περιγραφή αυτής της ομάδας"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Εξαναγκασμός GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Εξαναγκασμός τιμής GID για αυτή την ομάδα"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "Τιμή GID για αυτήν την ομάδα"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Μέλη ομάδας"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Εμπιστοσύνη συστήματος"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Λειτουργία επιστοσύνης"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Τύπος εξουσιοδότησή για αυτά τα συστήματα"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "απενεργοποιημένο"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Πλήρης Πρόσβαση"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "να επιτραπεί πρόσβαση σε αυτά τα host"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 "Επιτρέπεται σ'αυτή την ομάδα να συνδέεται στην ακόλουθη λίστα διακομιστών"
@@ -243,92 +241,92 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Επεξεργασία ρυθμίσεων χρηστών POSIX"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Προσωπικός κατάλογος"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Η διαδρομή για τον αρχικό κατάλογο του χρήστη"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Κέλυφος"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Ποιο κέλυφος πρέπει να χρησιμοποιηθεί όταν ο χρήστης συνδεθεί"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "μη ρυθμισμένο"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Κύρια ομάδα"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Κύρια ομάδα του χρήστη"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Κατάσταση"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Κατάσταση του λογαριασμού unix του χρήστη"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Εξαναγκασμός user/group id"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 "Υποχρέωση συμπλήρωσης τιμών για user id και group id για αυτόν τον χρήστη"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "User id"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Τιμή User id για αυτόν τον χρήστη."
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Group id"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Τιμή Group id για αυτόν τον χρήστη"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Μέλη ομάδας"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Λογαριασμός"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 "Ο χρήστης θα πρέπει να αλλάξει τον κωδικό πρόσβασης κατά την πρώτη του "
 "σύνδεση"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -337,21 +335,21 @@ msgstr ""
 " Καθυστέρηση δηλώνει το πόσες φορές μπορεί ο χρήστης να συνδεθεί πριν "
 "αναγκαστεί να αλλάξει συνθηματικό)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Καθυστέρηση πριν την υποχρεωτική αλλαγή κωδικού πρόσβασης (σε ημέρες)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -359,22 +357,22 @@ msgstr ""
 "Ο χρήστης θα υποχρεωθεί να αλλάξει τον κωδικό πρόσβασής του μετά από αυτό "
 "τον αριθμό ημερών (αφήστε κενό για απενεργοποίηση)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Ημερομηνία λήξης κωδικού πρόσβασης"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Ημερομηνία μετά από την οποία θα λήγει ο κωδικός πρόσβασης (αφήστε κενό για "
 "απενεργοποίηση)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Ημέρες αδράνειας πριν από την απενεργοποίηση του χρήστη"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -382,11 +380,11 @@ msgstr ""
 "Μέγιστος αριθμός ημερών αδράνειας μετά την λήξη του κωδικού πρόσβασης πριν "
 "την απενεργοποίηση του χρήστη (αφήστε κενό για απενεργοποίηση)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Ημέρες μεταξύ προειδοποίησης χρήστη και λήξης κωδικού:"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -394,118 +392,114 @@ msgstr ""
 "Ο χρήστης θα προειδοποιείται αυτόν τον αριθμό των ημερών πριν από τη λήξη "
 "του κωδικού πρόσβασής του (αφήστε κενό για απενεργοποίηση)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 "Επιτρέπεται σ'αυτόν τον χρήστη να συνδέεται στην ακόλουθη λίστα διακομιστών"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "αυτόματο"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr " έληξε"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "χρονικό διάστημα χάριτος ενεργό"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "ενεργό"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "ο κωδικός πρόσβασης έχει λήξει"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "ο κωδικός πρόσβασης δεν μπορεί να αλλάξει"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Ομάδα του χρήστη %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Προειδοποίηση"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Σφάλμα"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Δεν είναι δυνατό να ανατεθεί μια free ID:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Σφάλμα LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool  δεν είναι μοναδική!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "Μη διαθέσιμη ID!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "Υπέρβαση μεγίστου ορίου προσπαθειών!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Δεν είναι δυνατή η διάθεση μιας  free ID!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -513,10 +507,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/es/fusiondirectory.po b/posix/locale/es/fusiondirectory.po
index 312fc8e619..c8174c8e34 100644
--- a/posix/locale/es/fusiondirectory.po
+++ b/posix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propiedades"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descripción"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forzar GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Miembros del grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Sistema de seguridad"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modo seguro"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "desactivado"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Acceso sin restricciones"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "Permitir el acceso a estos equipos"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,255 +238,251 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Editar parametros de usuarios POSIX"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Directorio de usuario"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "Sin configurar"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Grupo primario"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Estado"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Pertenencia a grupo"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Cuenta"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 "El usuario debe introducir la contraseña en el primer inicio de sesión"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automático"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "expiró"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Periodo de gracia activado"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "activo"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "la contraseña expiró"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "no puede cambiar la contraseña"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Aviso"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Error"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "No se puede asignar un identificador (ID) libre:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "¡%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Error LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "¡sambaUnixIdPool no es único!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "¡No hay ID disponibles!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "¡Excedido el número de intentos máximo!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -496,10 +490,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/es_CO/fusiondirectory.po b/posix/locale/es_CO/fusiondirectory.po
index 20937e8266..a449ffe9ef 100644
--- a/posix/locale/es_CO/fusiondirectory.po
+++ b/posix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -37,82 +37,80 @@ msgstr "Grupo POSIX"
 msgid "POSIX user group"
 msgstr "Grupo de Usuarios POSIX"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propiedades"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Nombre de este grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descripción"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Una descripción corta de este grupo."
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forzar GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Forzar GID para éste grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "Valor GID para éste grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Miembros del Grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Confianza del Sistema"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modo de Confianza"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Tipo de autorización para ésos equipos"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "deshabilitado"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Acceso Completo"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "Permitir acceso a ésos equipos"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 "Habilitar solamente a éste grupo para conectarse a ésta lista de equipos."
@@ -247,89 +245,89 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Editar configuración POSIX de los usuarios"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "'Home' del usuario"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "La ruta al nuevo directorio 'home' del usuario."
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Qué 'shells' deberían usarse cuando este usuario inicie sesión."
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "Aún sin configurar"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Grupo Primario"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Grupo primario para este usuario"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Estado"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Estado de la cuenta Unix de este usuario"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Forzar 'id' de usuario/grupo "
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr "Forzar los valores 'id' y 'group id' para éste usuario."
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "id de usuario"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Forzar valor 'id' para este usuario"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "id de Grupo"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Forzar valor 'Group id' para este usuario."
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Pertenencia a grupos"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Cuenta de usuario"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "El usuario debe cambiar su contraseña en el primer inicio de sesión."
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -337,21 +335,21 @@ msgstr ""
 "El usuario debe cambiar su contraseña en el primer inicio de sesión "
 "(necesita un valor de retraso antes de forzar el cambio de contraseña)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Retraso antes de forzar el cambio de contraseña (días)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -359,22 +357,22 @@ msgstr ""
 "El usuario será forzado a cambiar su contraseña después de este número de "
 "días (deje vacío para deshabilitar)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Fecha de caducidad para la contraseña"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "La fecha tras la cual la contraseña de este usuario va a caducar (deje vacío"
 " para deshabilitar)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Retraso de inactividad antes de deshabilitar el usuario (días)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -382,12 +380,12 @@ msgstr ""
 "Luego de que caduque la contraseña del usuario, tiempo máximo de retraso "
 "antes de deshabilitar la cuenta del usuario (deje vacío para deshabilitar)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 "Retraso para avisar al usuario sobre el vencimiento de su contraseña (días)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -395,117 +393,113 @@ msgstr ""
 "El usuario será advertido esta cantidad de días antes de que su contraseña "
 "caduque (deje vacío para deshabilitar)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Permitir a este usuario conectarse a esta lista de hosts."
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automático"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "expirado"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Período de gracia activo"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "activo"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "Contraseña expirada"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "Contraseña no modificable"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Grupo del usuario %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Precacuión"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Error"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Error LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "!sambaUnixIdPool no es un valor único!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -513,10 +507,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/es_VE/fusiondirectory.po b/posix/locale/es_VE/fusiondirectory.po
index 4c3e1cf9c4..f300866c09 100644
--- a/posix/locale/es_VE/fusiondirectory.po
+++ b/posix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propiedades"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descripción"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forzar GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Miembros del grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Sistema de seguridad"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modo seguro"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "desactivado"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Acceso sin restricciones"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "Permitir el acceso a estos equipos"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,255 +238,251 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Editar parametros de usuarios POSIX"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Directorio de usuario"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "Sin configurar"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Grupo primario"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Estado"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Pertenencia a grupo"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Cuenta"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 "El usuario debe introducir la contraseña en el primer inicio de sesión"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automático"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "expiró"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Periodo de gracia activado"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "activo"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "la contraseña expiró"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "no puede cambiar la contraseña"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Aviso"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Error"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "No se puede asignar un identificador (ID) libre:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "¡%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Error de LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "¡sambaUnixIdPool no es único!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "¡No hay ID disponibles!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "¡Excedido el número de intentos máximo!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -496,10 +490,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/fa_IR/fusiondirectory.po b/posix/locale/fa_IR/fusiondirectory.po
index 3bdb28f5db..64178a3801 100644
--- a/posix/locale/fa_IR/fusiondirectory.po
+++ b/posix/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "خطا"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "خطای LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/fi_FI/fusiondirectory.po b/posix/locale/fi_FI/fusiondirectory.po
index e2bbc5a055..43e421e6ad 100644
--- a/posix/locale/fi_FI/fusiondirectory.po
+++ b/posix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Ominaisuudet"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nimi"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Kuvaus"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Varoitus"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Virhe"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP virhe"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/fr/fusiondirectory.po b/posix/locale/fr/fusiondirectory.po
index 5386c9e3e3..c7dd65fe05 100644
--- a/posix/locale/fr/fusiondirectory.po
+++ b/posix/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2019
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2019\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,82 +38,80 @@ msgstr "Groupe POSIX"
 msgid "POSIX user group"
 msgstr "Groupe d’utilisateurs POSIX"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propriétés"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nom"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Nom du groupe"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Description"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Description courte pour ce groupe"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forcer le GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Forcer la valeur du GID pour ce groupe"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "GID de ce groupe"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Membres du groupe"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Systèmes autorisés"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Mode de confiance"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Type d'autorisation pour ces hôtes"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "désactivé"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "accès complet"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "permettre l'accès a ces hôtes"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Autoriser ce groupe à se connecter uniquement sur cette liste d'hôtes"
 
@@ -245,91 +243,91 @@ msgstr "Shell par défaut"
 msgid "Shell used by default when activating Unix tab."
 msgstr "Shell utilisé par défaut lors de l'activation du tab Unix."
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Éditer les paramètres POSIX"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Répertoire personnel"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Chemin du répertoire \"home\" de cet utilisateur"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Shell à utiliser lors de la connexion de l’utilisateur"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "non configuré"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Groupe principal"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Groupe principal de cet utilisateur"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Statut"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Statut du compte unix de l'utilisateur"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Forcer l’id d’utilisateur/groupe"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 "Forcer les valeurs des ids d’utilisateur et de groupe pour cet utilisateur"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Id d’utilisateur"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Id d’utilisateur à utiliser pour cet utilisateur"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Id de groupe"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Id de groupe à utiliser pour cet utilisateur"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Appartenance aux groupes"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Compte"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 "L'utilisateur doit changer son mot de passe lors de sa première connexion"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -337,11 +335,11 @@ msgstr ""
 "L'utilisateur doit changer son mot de passe lors de sa première connexion "
 "(nécessite une valeur dans «Délai avant de forcer le changement»)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Délai minimum entre les changements de mot de passe (jours)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
@@ -349,11 +347,11 @@ msgstr ""
 "L'utilisateur ne sera pas autorisé à changer son mot de passe avant ce "
 "nombre de jours (laisser vide pour désactiver)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Délai avant de forcer le changement de mot de passe (en jours)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -361,22 +359,22 @@ msgstr ""
 "L'utilisateur sera forcé de changer son mot de passe après ce nombre de "
 "jours (laisser vide pour désactiver)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Date d'expiration du mot de passe"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Date après laquelle le mot de passe de l'utilisateur va expirer (laisser "
 "vide pour désactiver)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Délai d'inactivité avant de désactiver l'utilisateur (en jours)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -384,11 +382,11 @@ msgstr ""
 "Délai maximum d'inactivité après l'expiration du mot de passe avant que "
 "l'utilisateur soit désactivé (laisser vide pour désactiver)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Délai pour avertir de l'expiration de son mot de passe (en jours)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -396,46 +394,42 @@ msgstr ""
 "L'utilisateur sera averti à partir de ce nombre de jours restant avant "
 "l'expiration de son mot de passe (laisser vide pour désactiver)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Autoriser cet utilisateur à se connecter uniquement sur ces hôtes"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatique"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "expiré"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "temps de grâce actif"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "actif"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "mot de passe expiré"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "mot de passe non modifiable"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Groupe de l'utilisateur %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
@@ -444,71 +438,71 @@ msgstr ""
 "Impossible de créer un groupe principal automatique (à l'aide de gidNumber "
 "\"%s\"), en raison des erreurs suivantes"
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Avertissement"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr "Méthode d'allocation inconnue pour «%s» !"
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr "Le temps d'attente du verrou a été dépassé. Verrou ignoré pour %s !"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Erreur"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Impossible d'allouer un ID libre :"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax !"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Erreur LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool n'est pas unique !"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "Pas d’ID disponible !"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "Nombre maximum d'essais dépassés !"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Impossible d'allouer un ID libre !"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -519,11 +513,11 @@ msgstr ""
 "Résultat : %s\n"
 "Utilisation de la base par défaut !"
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr "\"nextIdHook\" n'a pas renvoyé une sortie valide!"
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
 "«nextIdHook» n’est pas disponible. Utilisation de la base par défaut !"
diff --git a/posix/locale/hu_HU/fusiondirectory.po b/posix/locale/hu_HU/fusiondirectory.po
index a0ff2819d0..a49b7d1a5a 100644
--- a/posix/locale/hu_HU/fusiondirectory.po
+++ b/posix/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Név"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Csoport neve"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Leírás"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/id/fusiondirectory.po b/posix/locale/id/fusiondirectory.po
index 542d9c1dba..22525cdd26 100644
--- a/posix/locale/id/fusiondirectory.po
+++ b/posix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index c5a4c16414..af5c823f5d 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -38,82 +38,80 @@ msgstr "Gruppo POSIX"
 msgid "POSIX user group"
 msgstr "Gruppo utenti POSIX"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Proprietà"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nome"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Nome del gruppo"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descrizione"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Breve descrizione del gruppo"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forza il GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Forzare il valore GID per questo gruppo"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "Valore GID per questo gruppo"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Membri del gruppo"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Sistema di fiducia"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modalità di fiducia"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Tipo di autorizzazione per questi host"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "disattivato"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "accesso completo"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "autorizza l'accesso a questi host"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Consenti all'utente di connettersi solo a questo elenco di host "
 
@@ -247,89 +245,89 @@ msgstr ""
 "Shell utilizzato per impostazione predefinita durante l'attivazione scheda "
 "Unix."
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Modifica le impostazioni POSIX dell'utente"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Home directory"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Il path verso la cartella personale di questo utente"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Quale shell dovrà essere usata quando l'utente sarà connesso"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "non configurato"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Gruppo primario"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Gruppo primario per questo utente"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Stato"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Stato di questo account utente unix"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Forza l'id utente/gruppo"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr "Forza valori ID utente e ID gruppo per questo utente"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Utente"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Valore utente per questo utente"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "numero del Gruppo"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Valore del numero del gruppo per questo utente"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Gruppi di appartenenza"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Account"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "L'utente dovrà cambiare la password alla prima connessione"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -337,11 +335,11 @@ msgstr ""
 "L'utente deve cambiare password al primo login (serve un valore di ritardo "
 "prima di forzare il cambio password)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Lasso di tempo minimo tra le modifiche delle password (giorni)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
@@ -349,11 +347,11 @@ msgstr ""
 "L'utente non sarà in grado di cambiare la propria password prima di questo "
 "numero di giorni (lasciare vuoto per disabilitare)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Richiamo prima dell'obbligo di modifica della password (giorni)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -361,24 +359,24 @@ msgstr ""
 "L'utente sarà obbligato di cambiare la sua password dopo questo numero di "
 "giorni (lasciare vuoto per disabilitare)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Data di scadenza della password"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Data dopo la quale questa password utente scadrà (lasciare vuoto per "
 "disabilitare)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 "Periodo di inattività prima della disattivazione dell'account utente "
 "(giorni)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -386,11 +384,11 @@ msgstr ""
 "Ritardo massimo di inattività dopo la scadenza della password prima che "
 "l'utente venga disabilitato (lasciare vuoto per disabilitare)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Richiamo per l'utente prima che la password scada (giorni)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -398,46 +396,42 @@ msgstr ""
 "L'utente sarà avvertito questo numero di giorni prima della scadenza della "
 "sua password (lasciare vuoto per disabilitare)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Consenti all'utente di connettersi solo a questo elenco di host"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatico"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "Scaduto"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Il tempo di grazia è attivo"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "Attivo"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "Password scaduta"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "Password non modificabile"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Gruppo di utenti %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
@@ -446,71 +440,71 @@ msgstr ""
 "Impossibile creare il gruppo principale automatico (utilizzando gidNumber "
 "\"%s\") a causa dei seguenti errori"
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Avvertimento"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr "Metodo di assegnazione ID \"%s\" sconosciuto!"
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr "Timeout durante l'attesa per il blocco. Ignorare blocco da %s!"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Errore"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Impossibile assegnare un ID libero:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Errore LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool non è univoco !"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "nessun ID disponibile !"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "Il numero massimo di tentativi è stato superato"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Impossibile assegnare un ID libero!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -521,10 +515,10 @@ msgstr ""
 "Risultato: %s\n"
 "Utilizzando la base predefinita!"
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr "\"nextIdHook\" non ha restituito un risultato valido!"
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr "\"NextIdHook\" non è disponibile. Utilizzo della base di default!"
diff --git a/posix/locale/ja/fusiondirectory.po b/posix/locale/ja/fusiondirectory.po
index 516676f3fa..2aec6fe8ee 100644
--- a/posix/locale/ja/fusiondirectory.po
+++ b/posix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ko/fusiondirectory.po b/posix/locale/ko/fusiondirectory.po
index 0ab5297b7c..402a2d3e33 100644
--- a/posix/locale/ko/fusiondirectory.po
+++ b/posix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -37,82 +37,80 @@ msgstr "POSIX 그룹"
 msgid "POSIX user group"
 msgstr "POSIX 사용자 그룹"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "설정"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "명칭"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "그룹 명칭"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "설명"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "그룹 요약"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "GID 부여"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "그룹 GID 값"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "그룹 GID"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "그룹 멤버"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "시스템 트러스트"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "트러스트 노드"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "호스트에 대한 인증 타입"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "미사용"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "ì „ì²´ ì ‘ê·¼"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "호스트에 접근 허용"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "그룹만 호스트 리스트에 접근 허용"
 
@@ -240,254 +238,250 @@ msgstr "기본 쉘"
 msgid "Shell used by default when activating Unix tab."
 msgstr "Unix 탭이 활성화될 때 사용될 기본 쉘"
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "사용자 POSIX 설정 펼집"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "홈 디렉토리"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "사용자의 홈 디렉토리 경로"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "쉘"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "사용자가 로그인할 때 사용될 웰"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "설정되지 않음"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "기본 그룹"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "사용자 기본 그룹"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "상태"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "사용자  unix 계정의 상태"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "사용자/그룹 id 강제"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr "사용자의 id와 그룹 id 값 강제"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "사용자 id"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "사용자 id 값"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "그룹 id"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "사용자의 그룹 id"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "그룹 회원"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "계정"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "처음 로그인 시 패스워드 변경"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr "최초 로그인 시 패스워드를 변경해야 합니다.(강제 패스워드 변경 전 기간 설정 필요)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "최소 비밀번호 변경 기간(일)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr "해당 일자 전에 패스워드를 변경할 수 없습니다.(미사용 시 공백)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "강제 패스워든 변경 기간(일)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr "해당 일자 이후에는 패스워드를 강제로 변경합니다.(미사용 시 공백)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "패스워드 만료일"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr "해당일자 이후에는 사용자 패스워드가 만료됩니다.(미사용 시 공백)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "사용자 제한 전 비활성화 기간(일)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr "사용자가 미사용이 되기 전에 패스워드가 만료된 이후 최대 비활성화 기간(미사용 시 공백)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "패스워드 만료 전 사용자 경고 기간(일)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr "패스워드가 만료되기 전 해당 일자 동안 경고를 받게 됩니다.(미사용 시 공백)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr " 호스트 리스트에만 접속 허용"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "자동"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "만료"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "활성화 시간"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "활성화"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "패스워드 만료"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "패스워드 변경불가"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "사용자 %s의 그룹"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "ã…—"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr "알 수 없는 ID 할당방법 \"%s\"!"
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr "잠금 대시 타임아웃. %s 잠금 무시!"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "오류"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "ID를 할당할 수 없음"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%s 풀 최소값 >= %s 풀 최대값!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP 오류"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "삼바 Unix id 풀이 유일하지 않음!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "가능한 ID 없음!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "최대 실행횟수 초과!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "ID를 할당할 수 없음!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr "\"nextidHook\"은 사용가능하지 않음. 기본값 사용!"
diff --git a/posix/locale/lv/fusiondirectory.po b/posix/locale/lv/fusiondirectory.po
index 0ebc8a7752..a3c34e7028 100644
--- a/posix/locale/lv/fusiondirectory.po
+++ b/posix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Vārds "
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Apraksts"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Brīdinājums"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Kļūda"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP kļūda"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/nb/fusiondirectory.po b/posix/locale/nb/fusiondirectory.po
index 5fbcfb2c30..327dca0483 100644
--- a/posix/locale/nb/fusiondirectory.po
+++ b/posix/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Egenskaper"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Navn"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Beskrivelse"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Feil"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP-feil"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/nl/fusiondirectory.po b/posix/locale/nl/fusiondirectory.po
index 61d02d71bf..28c7220616 100644
--- a/posix/locale/nl/fusiondirectory.po
+++ b/posix/locale/nl/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -39,82 +39,80 @@ msgstr "POSIX groep"
 msgid "POSIX user group"
 msgstr "POSIX gebruikersgroep"
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Eigenschappen"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Naam"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Naam van deze groep"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Omschrijving"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Korte beschrijving van deze groep"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Verplicht GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Verplichte GID waarde voor deze groep"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "GID waarde voor deze groep"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Groepsleden"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Systeem-trust"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Trust-modus"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Type van authorisatie voor deze hosts"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "gedeactiveerd"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "volledige toegang"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "sta toegang op deze hosts toe"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Laat alleen deze groep toe om met deze lijst van hosts te verbinden "
 
@@ -246,89 +244,89 @@ msgstr "Standaard shell"
 msgid "Shell used by default when activating Unix tab."
 msgstr "Standaard shell gebruikt bij activatie Unix tab"
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Bewerk gebruikers POSIX instellingen"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Persoonlijke directory"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Het pad naar de home directory van de user"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Welke shell gebruikt moet worden als deze gebruiker inlogt"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "ongeconfigureerd"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Primaire groep"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Primaire groep voor deze gebruiker"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Status"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Status van deze gebruiker unix account"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Verplicht gebruiker/groep-id"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr "Verplicht gebruikers-id en groeps-id waardes voor deze gebruiker"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Gebruikers-id"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Gebruikers-id waarde voor deze gebruiker"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Groeps-id"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Groeps-id waarde voor deze gebruiker"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Groep lidmaatschap"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Account"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Gebruiker moet het paswoord bij de eerste aanmelding veranderen"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -336,11 +334,11 @@ msgstr ""
 "Gebruiker moet paswoord veranderen bij eerste inlog (heeft een uitstelwaarde"
 " nodig voordat paswoord verandering wordt afgedwongen)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Minimum uitstel tussen paswoord veranderingen (dagen) "
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
@@ -348,11 +346,11 @@ msgstr ""
 "De gebruiker zal niet in staat zijn om zijn paswoord te veranderen voordat "
 "dit aantal dagen verstreken is (leeg laten bij niet gebruik)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Periode voor het afdwingen van een paswoord verandering (dagen)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -360,22 +358,22 @@ msgstr ""
 "De gebruiker zal gedwongen worden om zijn paswoord te veranderen na dit "
 "aantal dagen (leeg laten bij niet gebruik)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Paswoord vervaldatum"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Datum na dewelke het gebruiker paswoord zal vervallen (leeg laten bij niet "
 "gebruik)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Periode van inactiviteit voor het uitschakelen van gebruikers (dagen)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -383,12 +381,12 @@ msgstr ""
 "Maximum periode van inactiviteit na paswoord vervaldatum voordat de "
 "gebruiker disabled wordt gezet (leeg laten bij niet gebruik)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 "Periode voor gebruikerswaarschuwingen voordat paswoord vervalt (dagen)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -396,46 +394,42 @@ msgstr ""
 "De gebruiker zal dit aantal dagen voor paswoord vervaldatum gewaarschuwd "
 "worden (laat leeg bij niet gebruik)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Laat alleen deze gebruiker toe om te verbinden met de lijst van hosts"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatisch"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "verlopen"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "gratie tijd actief"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "actief"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "paswoord vervallen"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "paswoord niet wijzigbaar"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Groep van gebruikers %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
@@ -444,71 +438,71 @@ msgstr ""
 "Impossible de créer un groupe principal automatique (à l'aide de gidNumber "
 "\"%s\"), en raison des erreurs suivantes"
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Waarschuwing"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr "Onbekende ID allocatiemethode \"%s\"!"
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr "Timeout tijdens het wachten voor een lock. Negeer lock van %s!"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Fout"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Kan geen vrij ID alloceren:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >=%sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP fout"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool is niet uniek!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "Geen ID beschikbaar!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "maximum pogingen overschreden!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Kan geen vrij ID toekennen!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -516,10 +510,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr "\"nextIdHook\" is niet beschikbaar. Gebruik standaard basis!"
diff --git a/posix/locale/pl/fusiondirectory.po b/posix/locale/pl/fusiondirectory.po
index 4cbda5af14..e41e899323 100644
--- a/posix/locale/pl/fusiondirectory.po
+++ b/posix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Właściwości"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "ImiÄ™"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Opis"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "WymuÅ› GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Członkowie grupy"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Zaufanie systemowe"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Tryb zaufania"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "wyłączone"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "pełen dostęp"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "zezwól na dostęp do tych hostów"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Katalog domowy"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "nieskonfigurowane"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Grupa podstawowa"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Status"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Przynależność do grup"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Konto"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Użytkownik musi zmienić hasło przy pierwszym logowaniu"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatyczne"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "wygasło"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Czas prolongaty aktywny"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "Aktywne"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "hasło wygasło"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "hasło niezmienialne"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Ostrzeżenie"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Błąd"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "błąd LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/pt/fusiondirectory.po b/posix/locale/pt/fusiondirectory.po
index eadf8b9b75..eb2829079f 100644
--- a/posix/locale/pt/fusiondirectory.po
+++ b/posix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propriedades"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nome"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descrição"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Forçar GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Membros do grupo"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Sistema de confiança"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modo de confiança"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "desabilitado"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "acesso completo"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "permitir acesso a estas máquinas"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Diretório pessoal"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "desconfigurado"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Grupo primário"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Estatus"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Membros do grupo"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Conta"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "O usuário deve alterar sua senha no primeiro acesso"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automático"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "expirado"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "ativo"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Atenção"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Erro"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Erro de LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/pt_BR/fusiondirectory.po b/posix/locale/pt_BR/fusiondirectory.po
index 576a7f4790..4d3a07f7e7 100644
--- a/posix/locale/pt_BR/fusiondirectory.po
+++ b/posix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Propriedades"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Nome"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Descrição"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Sistema de confiança"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Modo de confiança"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "desabilitado"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Acesso total"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "Permitir acesso a esses servidores"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Diretório principal"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "O pacote para o diretório principal deste usuário"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Estado"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Conta"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Permitir apenas que este usuário conecte-se à lista de hosts"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automático"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "senha expirada"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Aviso"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Erro"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Erro de LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ru/fusiondirectory.po b/posix/locale/ru/fusiondirectory.po
index 30a515e19b..5488683bc0 100644
--- a/posix/locale/ru/fusiondirectory.po
+++ b/posix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -37,82 +37,80 @@ msgstr "POSIX группа"
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Свойства"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Название"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr "Название этой группы"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Описание"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr "Краткое описание группы"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Указать GID вручную"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr "Указать значение GID для группы"
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr "GID значение для этой группы"
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Члены группы"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Системные доверия"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Режим доверия"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Тип авторизации для этих хостов"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "отключен"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "полный доступ"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "разрешить доступ только на эти хосты"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr "Позволить подключаться этой группе только к хостам из списка"
 
@@ -248,92 +246,92 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Редактировать POSIX настройки пользователя"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Домашний каталог"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Путь к домашнему каталогу пользователя"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Оболочка"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 "Какой шелл должен использоваться, когда пользователь заходит в систему"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "Не настроено"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Основная группа"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Основная группа пользователя"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Состояние"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Статус учетной записи unix у пользователя"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr "Принудительный id пользователя/группы"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 "Навязанное значение идентификатора пользователя и группы для этого "
 "пользователя"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr "Id пользователя"
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr "Значение идентификатора пользователя"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr "Id группы"
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr "Значение идентификатора группы"
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Членство в группах"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Учетная запись"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Пользователь должен сменить пароль при первом входе в систему"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
@@ -341,21 +339,21 @@ msgstr ""
 "Пользователь должен будет изменить пароль при первом входе (нужно указать "
 "значение для \"Задержка до принудительного изменения пароля\")"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr "Минимальная задержка между изменениями пароля (дни)"
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Задержка до принудительного изменения пароля (дни)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -363,22 +361,22 @@ msgstr ""
 "У пользователя насильно будет изменен пароль после указанного количества "
 "дней (оставить пустым, чтобы отключить)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Дата окончания действия пароля"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Дата после которой пароль пользователя истечет (оставить пустым что бы "
 "отключить)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Через сколько отключать пользователя (дни)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -386,11 +384,11 @@ msgstr ""
 "Сколько подождать до отключения пользователя, после истечения пароля "
 "(оставить пустым, чтобы отключить)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "За сколько предупреждать об окончании действия пароля (дни)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -398,117 +396,113 @@ msgstr ""
 "Предупреждать пользователя об окончании действия его пароля за указанное "
 "количество дней (оставить пустым, чтобы отключить)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Пользователю разрешено подключаться только к хостам из списка"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "автоматически"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "Истек"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "активный"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "срок действия параля истек"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "Пароль не изменяем"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr "Группа пользователя %s"
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Предупреждение"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Ошибка"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Не могу выделить свободный ID:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Ошибка LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool не уникальна!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "нет доступных ID!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "Превышено максимальное число попыток!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Не могу выделить свободный ID!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -516,10 +510,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ru@petr1708/fusiondirectory.po b/posix/locale/ru@petr1708/fusiondirectory.po
index 747b685134..0a69dce8e3 100644
--- a/posix/locale/ru@petr1708/fusiondirectory.po
+++ b/posix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/sv/fusiondirectory.po b/posix/locale/sv/fusiondirectory.po
index 0d26482348..74172c71c4 100644
--- a/posix/locale/sv/fusiondirectory.po
+++ b/posix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Egenskaper"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Namn"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Beskrivning"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Tvinga GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Gruppmedlemmar"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "System trust"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Trust-läge"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr "Auktoriseringstyp för dessa hosts"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "avaktiverad"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "full tillgång"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "tillåt dessa hosts tillgång"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,109 +238,109 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr "Unix"
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Redigera användarens POSIX-inställningar"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Hemkatalog"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr "Sökvägen till hemkatalogen för den här användaren"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Skal"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr "Vilket skal ska användas när den här användaren loggar in"
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "okonfigurerad"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Primär grupp"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr "Primär grupp för den här användaren"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Status"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr "Status på det här unix-kontot"
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Gruppmedlemskap"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Konto"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Användare måste ändra lösenord vid första inloggning"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr "Fördröjning innan tvingande lösenordsbyte (dagar)"
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
@@ -350,22 +348,22 @@ msgstr ""
 "Användaren kommer att tvingas byta lösenord efter så här många dagar (lämna "
 "tomt för att  avaktivera)"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr "Utgångsdatum för lösenord"
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 "Datum efter vilket denna användares lösenord kommer att sluta gälla (lämna "
 "tomt för att avaktivera)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr "Inaktivitet innan avaktivering av användare (dagar)"
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
@@ -373,11 +371,11 @@ msgstr ""
 "Maximalt antal inaktiva dagar efter lösenordets utgång innan användaren är "
 "avaktiverad (lämna tomt för att avaktivera funktionen)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr "Fördröjning för varning innan lösenordsbyte (dagar)"
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
@@ -385,117 +383,113 @@ msgstr ""
 "Användaren kommer att varnas så här många dagar innan lösenordet löper ut "
 "(lämna tomt för att avaktivera)"
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr "Tillåt användaren att endast logga in på denna lista av hosts"
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "automatisk"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "har utgått"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "grace-tid aktiv"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "aktiv"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "lösenord har slutat gälla"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr "lösenord kan inte ändras"
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Varning"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Fel"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr "Kan inte allokera ett fritt ID:"
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP-fel"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool är inte unik!"
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr "inget ID tillgängligt!"
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr "maximalt antal försök överskridet!"
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Kan inte allokera ett fritt ID!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -503,10 +497,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/tr_TR/fusiondirectory.po b/posix/locale/tr_TR/fusiondirectory.po
index c9f0201ab8..831c58273a 100644
--- a/posix/locale/tr_TR/fusiondirectory.po
+++ b/posix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/ug/fusiondirectory.po b/posix/locale/ug/fusiondirectory.po
index 2c78a97449..3a79adce01 100644
--- a/posix/locale/ug/fusiondirectory.po
+++ b/posix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/vi_VN/fusiondirectory.po b/posix/locale/vi_VN/fusiondirectory.po
index c7e8850d73..d4249a48d5 100644
--- a/posix/locale/vi_VN/fusiondirectory.po
+++ b/posix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "Properties"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "Tên"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "Mô tả"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "Áp dụng GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "Số ID của nhóm"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "Các thành viên nhóm"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "Ủy thác hệ thống"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "Chế độ ủy thác"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "Đã vô hiệu"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "Truy cập hoàn toàn"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "Cho phép truy cập đến các máy chủ này"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr "Hiệu chỉnh cài đặt POSIX của người dùng"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "Thư mục chủ"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "không được cấu hình"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "Nhóm sơ cấp"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "Trạng thái"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "Tư cách thành viên nhóm"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "Tài khoản"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "Người dùng phải thay đổi mật khẩu ngay lần đăng nhập đầu tiên"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "tự động"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "hết hạn"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "Thời gian trước khi tài khoản bị khóa đang hoạt động"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "hoạt động"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr "mật khẩu hết hạn"
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "Số ID của người sử dụng"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "Cảnh báo"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "Lá»—i"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "Lá»—i LDAP"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr "Không thể phân phối một ID miễn phí!"
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/zh/fusiondirectory.po b/posix/locale/zh/fusiondirectory.po
index 0a41872238..618ec4d9ea 100644
--- a/posix/locale/zh/fusiondirectory.po
+++ b/posix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -37,82 +37,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr "属性"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr "名称"
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr "描述"
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr "强制 GID"
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr "GID"
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr "组成员"
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr "信赖的系统"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr "信赖模式"
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr "禁用"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr "完全访问权限"
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr "允许访问这些主机"
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -240,254 +238,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr "用户主目录"
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr "Shell"
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr "未配置"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr "主要用户组"
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr "状态"
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr "组成员身份"
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr "账户"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr "用户必须在第一次登录修改口令"
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr "自动"
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr "过期"
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr "时间限制激活"
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr "活动"
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr "UID"
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr "警告"
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr "错误"
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr "LDAP 错误"
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -495,10 +489,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/zh_TW/fusiondirectory.po b/posix/locale/zh_TW/fusiondirectory.po
index 18e6062e52..f73bfe37c9 100644
--- a/posix/locale/zh_TW/fusiondirectory.po
+++ b/posix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -33,82 +33,80 @@ msgstr ""
 msgid "POSIX user group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
+#: admin/groups/posix/class_posixGroup.inc:59
 msgid "Properties"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
+#: admin/groups/posix/class_posixGroup.inc:63
 msgid "Name of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Description"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
+#: admin/groups/posix/class_posixGroup.inc:68
 msgid "Short description of this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
+#: admin/groups/posix/class_posixGroup.inc:72
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-#: personal/posix/class_posixAccount.inc:425
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
+#: admin/groups/posix/class_posixGroup.inc:76
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
 msgid "Group members"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:91
-#: personal/posix/class_posixAccount.inc:203
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
 msgid "System trust"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Trust mode"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:95
-#: personal/posix/class_posixAccount.inc:207
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "disabled"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
 msgid "full access"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:99
-#: personal/posix/class_posixAccount.inc:211
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
+#: admin/groups/posix/class_posixGroup.inc:104
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
@@ -236,254 +234,250 @@ msgstr ""
 msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
 msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:90
 msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
+#: personal/posix/class_posixAccount.inc:122
 msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
+#: personal/posix/class_posixAccount.inc:127
 msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
+#: personal/posix/class_posixAccount.inc:129
 msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
+#: personal/posix/class_posixAccount.inc:133
 msgid "Primary group for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
+#: personal/posix/class_posixAccount.inc:137
 msgid "Status of this user unix account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user/group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
+#: personal/posix/class_posixAccount.inc:141
 msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
+#: personal/posix/class_posixAccount.inc:145
 msgid "User id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
+#: personal/posix/class_posixAccount.inc:150
 msgid "Group id value for this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
 msgid "Group membership"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
+#: personal/posix/class_posixAccount.inc:164
 msgid "Account"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid "User must change password on first login"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
+#: personal/posix/class_posixAccount.inc:168
 msgid ""
 "User must change password on first login (needs a value for Delay before "
 "forcing password change)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
+#: personal/posix/class_posixAccount.inc:172
 msgid ""
 "The user won't be able to change his password before this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
+#: personal/posix/class_posixAccount.inc:177
 msgid ""
 "The user will be forced to change his password after this number of days "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid "Password expiration date"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
+#: personal/posix/class_posixAccount.inc:182
 msgid ""
 "Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
+#: personal/posix/class_posixAccount.inc:187
 msgid ""
 "Maximum delay of inactivity after password expiration before the user is "
 "disabled (leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
+#: personal/posix/class_posixAccount.inc:192
 msgid ""
 "The user will be warned this number of days before his password expiration "
 "(leave empty to disable)"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
+#: personal/posix/class_posixAccount.inc:215
 msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
+#: personal/posix/class_posixAccount.inc:293
 msgid "automatic"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
+#: personal/posix/class_posixAccount.inc:354
 msgid "expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
+#: personal/posix/class_posixAccount.inc:356
 msgid "grace time active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
 msgid "active"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
+#: personal/posix/class_posixAccount.inc:359
 msgid "password expired"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
+#: personal/posix/class_posixAccount.inc:361
 msgid "password not changeable"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
-msgstr ""
-
-#: personal/posix/class_posixAccount.inc:538
+#: personal/posix/class_posixAccount.inc:524
 #, php-format
 msgid "Group of user %s"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:560
+#: personal/posix/class_posixAccount.inc:546
 #, php-format
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
-#: personal/posix/class_posixAccount.inc:814
-#: personal/posix/class_posixAccount.inc:1005
-#: personal/posix/class_posixAccount.inc:1022
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:793
+#: personal/posix/class_posixAccount.inc:779
 #, php-format
 msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:815
+#: personal/posix/class_posixAccount.inc:801
 #, php-format
 msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
 msgid "Error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
-#: personal/posix/class_posixAccount.inc:882
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
-#: personal/posix/class_posixAccount.inc:905
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:842
+#: personal/posix/class_posixAccount.inc:828
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:874
+#: personal/posix/class_posixAccount.inc:860
 msgid "LDAP error"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:882
+#: personal/posix/class_posixAccount.inc:868
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:894
-#: personal/posix/class_posixAccount.inc:898
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
 msgid "no ID available!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:914
+#: personal/posix/class_posixAccount.inc:900
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:976
+#: personal/posix/class_posixAccount.inc:962
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1007
-#: personal/posix/class_posixAccount.inc:1024
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
 #, php-format
 msgid ""
 "%s\n"
@@ -491,10 +485,10 @@ msgid ""
 "Using default base!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1025
+#: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:1034
+#: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/postfix/locale/af_ZA/fusiondirectory.po b/postfix/locale/af_ZA/fusiondirectory.po
index c38a23ac78..059f815ff9 100644
--- a/postfix/locale/af_ZA/fusiondirectory.po
+++ b/postfix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po
index 33329c8abc..59824ec066 100644
--- a/postfix/locale/ar/fusiondirectory.po
+++ b/postfix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po
index 3913e1e33c..5a5c865404 100644
--- a/postfix/locale/ca/fusiondirectory.po
+++ b/postfix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po
index fb8b5a4cc1..a38b9dbb09 100644
--- a/postfix/locale/cs_CZ/fusiondirectory.po
+++ b/postfix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po
index 62dff3fc7c..7eaf825b4f 100644
--- a/postfix/locale/de/fusiondirectory.po
+++ b/postfix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po
index 62d5264bd5..65a1722927 100644
--- a/postfix/locale/el_GR/fusiondirectory.po
+++ b/postfix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po
index 344b761b8d..878b9b2c27 100644
--- a/postfix/locale/es/fusiondirectory.po
+++ b/postfix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po
index b5b6450c95..1ac4e552b8 100644
--- a/postfix/locale/es_CO/fusiondirectory.po
+++ b/postfix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po
index 0bf3973d20..82ba302196 100644
--- a/postfix/locale/es_VE/fusiondirectory.po
+++ b/postfix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po
index 491f136173..618b0832d9 100644
--- a/postfix/locale/fa_IR/fusiondirectory.po
+++ b/postfix/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po
index b1e2363556..587984b6a7 100644
--- a/postfix/locale/fi_FI/fusiondirectory.po
+++ b/postfix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po
index d854bf6ec5..af7009f093 100644
--- a/postfix/locale/fr/fusiondirectory.po
+++ b/postfix/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po
index 2557c1ad1b..d18b922554 100644
--- a/postfix/locale/hu_HU/fusiondirectory.po
+++ b/postfix/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po
index cfb54f5357..4f8ac8abb9 100644
--- a/postfix/locale/id/fusiondirectory.po
+++ b/postfix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index 090b38cb4f..81a3965379 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/postfix/locale/ja/fusiondirectory.po b/postfix/locale/ja/fusiondirectory.po
index 0e0b8db465..deeeab3b87 100644
--- a/postfix/locale/ja/fusiondirectory.po
+++ b/postfix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ko/fusiondirectory.po b/postfix/locale/ko/fusiondirectory.po
index b4bdd32ae0..04a4936964 100644
--- a/postfix/locale/ko/fusiondirectory.po
+++ b/postfix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po
index 2243447dcb..133937bab4 100644
--- a/postfix/locale/lv/fusiondirectory.po
+++ b/postfix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po
index 65b3f85fc6..6a0e1a55c9 100644
--- a/postfix/locale/nb/fusiondirectory.po
+++ b/postfix/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po
index 97b40a0ac7..fc7dd85f87 100644
--- a/postfix/locale/nl/fusiondirectory.po
+++ b/postfix/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po
index 5d405dae39..ffb5eb8b27 100644
--- a/postfix/locale/pl/fusiondirectory.po
+++ b/postfix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po
index df5e23dd98..6efaab06ed 100644
--- a/postfix/locale/pt/fusiondirectory.po
+++ b/postfix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po
index d07b795fdd..c07fbe20ac 100644
--- a/postfix/locale/pt_BR/fusiondirectory.po
+++ b/postfix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po
index 186b10dc21..82621aee02 100644
--- a/postfix/locale/ru/fusiondirectory.po
+++ b/postfix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po
index 01e8000039..f5261b109d 100644
--- a/postfix/locale/ru@petr1708/fusiondirectory.po
+++ b/postfix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po
index 23bc106ed4..975160d01a 100644
--- a/postfix/locale/sv/fusiondirectory.po
+++ b/postfix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/postfix/locale/tr_TR/fusiondirectory.po b/postfix/locale/tr_TR/fusiondirectory.po
index 62cfee843b..457e16ca2c 100644
--- a/postfix/locale/tr_TR/fusiondirectory.po
+++ b/postfix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po
index fb66896533..c0f9f2014a 100644
--- a/postfix/locale/ug/fusiondirectory.po
+++ b/postfix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po
index 8414e62bc7..8cfee1489d 100644
--- a/postfix/locale/vi_VN/fusiondirectory.po
+++ b/postfix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po
index 9fd2be406e..4303185547 100644
--- a/postfix/locale/zh/fusiondirectory.po
+++ b/postfix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/postfix/locale/zh_TW/fusiondirectory.po b/postfix/locale/zh_TW/fusiondirectory.po
index 863030818e..7445958a5e 100644
--- a/postfix/locale/zh_TW/fusiondirectory.po
+++ b/postfix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/af_ZA/fusiondirectory.po b/ppolicy/locale/af_ZA/fusiondirectory.po
index 5cd5494736..95c6874b77 100644
--- a/ppolicy/locale/af_ZA/fusiondirectory.po
+++ b/ppolicy/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po
index 290eae1d19..16ac616b59 100644
--- a/ppolicy/locale/ar/fusiondirectory.po
+++ b/ppolicy/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po
index 1658800e30..c554ab7e93 100644
--- a/ppolicy/locale/ca/fusiondirectory.po
+++ b/ppolicy/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po
index 368e13ac50..d283246296 100644
--- a/ppolicy/locale/cs_CZ/fusiondirectory.po
+++ b/ppolicy/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po
index 0400eeb08f..5ae7762d61 100644
--- a/ppolicy/locale/de/fusiondirectory.po
+++ b/ppolicy/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po
index 11b1c310dc..35962c3271 100644
--- a/ppolicy/locale/el_GR/fusiondirectory.po
+++ b/ppolicy/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po
index d866540bb6..a6d33aec1d 100644
--- a/ppolicy/locale/es/fusiondirectory.po
+++ b/ppolicy/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po
index 6c836e202b..e75ad00950 100644
--- a/ppolicy/locale/es_CO/fusiondirectory.po
+++ b/ppolicy/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po
index e853bced26..ce9b9518be 100644
--- a/ppolicy/locale/es_VE/fusiondirectory.po
+++ b/ppolicy/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po
index 1f613dd810..bcee20c685 100644
--- a/ppolicy/locale/fa_IR/fusiondirectory.po
+++ b/ppolicy/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po
index 07fa37bc6b..ea13212db5 100644
--- a/ppolicy/locale/fi_FI/fusiondirectory.po
+++ b/ppolicy/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po
index 4840e7ad30..658f29f686 100644
--- a/ppolicy/locale/fr/fusiondirectory.po
+++ b/ppolicy/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po
index 11601f125a..fc4d1f0fdb 100644
--- a/ppolicy/locale/hu_HU/fusiondirectory.po
+++ b/ppolicy/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po
index 57d42f2b44..ddc2c9503b 100644
--- a/ppolicy/locale/id/fusiondirectory.po
+++ b/ppolicy/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po
index 191769e67f..e39194e757 100644
--- a/ppolicy/locale/it_IT/fusiondirectory.po
+++ b/ppolicy/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ppolicy/locale/ja/fusiondirectory.po b/ppolicy/locale/ja/fusiondirectory.po
index 78e71c4063..1bddd6e14f 100644
--- a/ppolicy/locale/ja/fusiondirectory.po
+++ b/ppolicy/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ko/fusiondirectory.po b/ppolicy/locale/ko/fusiondirectory.po
index a995f75a1a..c2ed741d2f 100644
--- a/ppolicy/locale/ko/fusiondirectory.po
+++ b/ppolicy/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po
index 39b1fcf7a6..d8e72c379a 100644
--- a/ppolicy/locale/lv/fusiondirectory.po
+++ b/ppolicy/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po
index 339674045a..4a4ce8658b 100644
--- a/ppolicy/locale/nb/fusiondirectory.po
+++ b/ppolicy/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po
index 0710712a70..5c41bc24b5 100644
--- a/ppolicy/locale/nl/fusiondirectory.po
+++ b/ppolicy/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po
index 92e350d95e..49ea590400 100644
--- a/ppolicy/locale/pl/fusiondirectory.po
+++ b/ppolicy/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po
index 76d151ca3a..cc360f0ef5 100644
--- a/ppolicy/locale/pt/fusiondirectory.po
+++ b/ppolicy/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po
index c52929b326..362628495b 100644
--- a/ppolicy/locale/pt_BR/fusiondirectory.po
+++ b/ppolicy/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po
index 8c4dd1d109..8978a540aa 100644
--- a/ppolicy/locale/ru/fusiondirectory.po
+++ b/ppolicy/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po
index 93ca8d9d85..0a5ecda086 100644
--- a/ppolicy/locale/ru@petr1708/fusiondirectory.po
+++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po
index b5b9bb858f..1322bf5be9 100644
--- a/ppolicy/locale/sv/fusiondirectory.po
+++ b/ppolicy/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ppolicy/locale/tr_TR/fusiondirectory.po b/ppolicy/locale/tr_TR/fusiondirectory.po
index 38a44a5ccf..ccb838f85d 100644
--- a/ppolicy/locale/tr_TR/fusiondirectory.po
+++ b/ppolicy/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po
index 8523a094eb..6817db21e1 100644
--- a/ppolicy/locale/ug/fusiondirectory.po
+++ b/ppolicy/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po
index c8a66eff2b..e97b4c71cf 100644
--- a/ppolicy/locale/vi_VN/fusiondirectory.po
+++ b/ppolicy/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po
index 5c42475e56..11ed51c219 100644
--- a/ppolicy/locale/zh/fusiondirectory.po
+++ b/ppolicy/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ppolicy/locale/zh_TW/fusiondirectory.po b/ppolicy/locale/zh_TW/fusiondirectory.po
index 18e0a1a901..ae4a4f9930 100644
--- a/ppolicy/locale/zh_TW/fusiondirectory.po
+++ b/ppolicy/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/af_ZA/fusiondirectory.po b/puppet/locale/af_ZA/fusiondirectory.po
index 3fd9d2d388..e976949b57 100644
--- a/puppet/locale/af_ZA/fusiondirectory.po
+++ b/puppet/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po
index 0568003082..8d25ab3634 100644
--- a/puppet/locale/ar/fusiondirectory.po
+++ b/puppet/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po
index c5c205e034..78110c795c 100644
--- a/puppet/locale/ca/fusiondirectory.po
+++ b/puppet/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po
index 3da6aff3a6..fa21550c09 100644
--- a/puppet/locale/cs_CZ/fusiondirectory.po
+++ b/puppet/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po
index e21adeafb0..492417f4ff 100644
--- a/puppet/locale/de/fusiondirectory.po
+++ b/puppet/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po
index e60803009e..e4fd9418fe 100644
--- a/puppet/locale/el_GR/fusiondirectory.po
+++ b/puppet/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po
index f9e2bdfab6..447a54fcbe 100644
--- a/puppet/locale/es/fusiondirectory.po
+++ b/puppet/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po
index a71fd65aa8..89da070f30 100644
--- a/puppet/locale/es_CO/fusiondirectory.po
+++ b/puppet/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po
index 904adbf55b..389bd5d671 100644
--- a/puppet/locale/es_VE/fusiondirectory.po
+++ b/puppet/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po
index 1c58f294a9..bf22f0c6c4 100644
--- a/puppet/locale/fa_IR/fusiondirectory.po
+++ b/puppet/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po
index cf0f5f1b44..c9747cb535 100644
--- a/puppet/locale/fi_FI/fusiondirectory.po
+++ b/puppet/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po
index e5d0552b99..d7ce437295 100644
--- a/puppet/locale/fr/fusiondirectory.po
+++ b/puppet/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po
index 088ff2cbc2..e3e226ea37 100644
--- a/puppet/locale/hu_HU/fusiondirectory.po
+++ b/puppet/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po
index eae4e5655a..0fde852b01 100644
--- a/puppet/locale/id/fusiondirectory.po
+++ b/puppet/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index c0ae5c38fe..7387a9ef10 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/puppet/locale/ja/fusiondirectory.po b/puppet/locale/ja/fusiondirectory.po
index f6a6ace31d..fd72d9458e 100644
--- a/puppet/locale/ja/fusiondirectory.po
+++ b/puppet/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ko/fusiondirectory.po b/puppet/locale/ko/fusiondirectory.po
index 648e656028..de577311a4 100644
--- a/puppet/locale/ko/fusiondirectory.po
+++ b/puppet/locale/ko/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po
index 073bf2f329..a1de828fd8 100644
--- a/puppet/locale/lv/fusiondirectory.po
+++ b/puppet/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po
index 5721409188..f5c18fc8f0 100644
--- a/puppet/locale/nb/fusiondirectory.po
+++ b/puppet/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po
index b944a26f35..ad9b87cfc7 100644
--- a/puppet/locale/nl/fusiondirectory.po
+++ b/puppet/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po
index a3cb2fc2aa..8af35c0d88 100644
--- a/puppet/locale/pl/fusiondirectory.po
+++ b/puppet/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po
index 86dbafed27..e5e4a51d09 100644
--- a/puppet/locale/pt/fusiondirectory.po
+++ b/puppet/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po
index 3219e8232b..1458280064 100644
--- a/puppet/locale/pt_BR/fusiondirectory.po
+++ b/puppet/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po
index 45de14131e..2e16c2537c 100644
--- a/puppet/locale/ru/fusiondirectory.po
+++ b/puppet/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po
index 299c1eb53a..9409df0f72 100644
--- a/puppet/locale/ru@petr1708/fusiondirectory.po
+++ b/puppet/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po
index 7a1d036fdb..dc9f31e143 100644
--- a/puppet/locale/sv/fusiondirectory.po
+++ b/puppet/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/puppet/locale/tr_TR/fusiondirectory.po b/puppet/locale/tr_TR/fusiondirectory.po
index b4c7403515..99e37d5418 100644
--- a/puppet/locale/tr_TR/fusiondirectory.po
+++ b/puppet/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po
index 5b04fe33de..732c28b77b 100644
--- a/puppet/locale/ug/fusiondirectory.po
+++ b/puppet/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po
index 41250353fc..e262886871 100644
--- a/puppet/locale/vi_VN/fusiondirectory.po
+++ b/puppet/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po
index 3653075888..1c462b0592 100644
--- a/puppet/locale/zh/fusiondirectory.po
+++ b/puppet/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/puppet/locale/zh_TW/fusiondirectory.po b/puppet/locale/zh_TW/fusiondirectory.po
index 2f245cba0b..39a5e02f35 100644
--- a/puppet/locale/zh_TW/fusiondirectory.po
+++ b/puppet/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/af_ZA/fusiondirectory.po b/pureftpd/locale/af_ZA/fusiondirectory.po
index 9cd89365a8..a85fc08bf9 100644
--- a/pureftpd/locale/af_ZA/fusiondirectory.po
+++ b/pureftpd/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po
index 5332257f04..bef78a7d2f 100644
--- a/pureftpd/locale/ar/fusiondirectory.po
+++ b/pureftpd/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po
index c26dbb1659..03c7d75d17 100644
--- a/pureftpd/locale/ca/fusiondirectory.po
+++ b/pureftpd/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po
index dcdb501bba..8634c8f42c 100644
--- a/pureftpd/locale/cs_CZ/fusiondirectory.po
+++ b/pureftpd/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po
index 18f0bbf8ef..3e343e2cf0 100644
--- a/pureftpd/locale/de/fusiondirectory.po
+++ b/pureftpd/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po
index 27fd1a70bd..78b099eaed 100644
--- a/pureftpd/locale/el_GR/fusiondirectory.po
+++ b/pureftpd/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po
index 14a0dfddcc..6764214c85 100644
--- a/pureftpd/locale/es/fusiondirectory.po
+++ b/pureftpd/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po
index 5185fea600..3506f060cc 100644
--- a/pureftpd/locale/es_CO/fusiondirectory.po
+++ b/pureftpd/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po
index 30ae74bc50..d4980fe451 100644
--- a/pureftpd/locale/es_VE/fusiondirectory.po
+++ b/pureftpd/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po
index 0a1bfec6da..023254015e 100644
--- a/pureftpd/locale/fa_IR/fusiondirectory.po
+++ b/pureftpd/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po
index 9924497a7c..29d4d1b262 100644
--- a/pureftpd/locale/fi_FI/fusiondirectory.po
+++ b/pureftpd/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po
index b132ab7df7..9fb645166f 100644
--- a/pureftpd/locale/fr/fusiondirectory.po
+++ b/pureftpd/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po
index 6b88732603..84f7d5c469 100644
--- a/pureftpd/locale/hu_HU/fusiondirectory.po
+++ b/pureftpd/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po
index 5c65ddeaa2..59cd5ff0a9 100644
--- a/pureftpd/locale/id/fusiondirectory.po
+++ b/pureftpd/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po
index 336539ca40..1c474fa393 100644
--- a/pureftpd/locale/it_IT/fusiondirectory.po
+++ b/pureftpd/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/pureftpd/locale/ja/fusiondirectory.po b/pureftpd/locale/ja/fusiondirectory.po
index 7ec2b8c242..dca875cc9b 100644
--- a/pureftpd/locale/ja/fusiondirectory.po
+++ b/pureftpd/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ko/fusiondirectory.po b/pureftpd/locale/ko/fusiondirectory.po
index b461739bdf..3c78aa646b 100644
--- a/pureftpd/locale/ko/fusiondirectory.po
+++ b/pureftpd/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po
index 08473a8178..5313b346fb 100644
--- a/pureftpd/locale/lv/fusiondirectory.po
+++ b/pureftpd/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po
index 36601650d4..06a5ce01f5 100644
--- a/pureftpd/locale/nb/fusiondirectory.po
+++ b/pureftpd/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po
index 86a5361b6d..5d15134d3a 100644
--- a/pureftpd/locale/nl/fusiondirectory.po
+++ b/pureftpd/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po
index 87c0c6f1dc..2da17a614a 100644
--- a/pureftpd/locale/pl/fusiondirectory.po
+++ b/pureftpd/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po
index 103cf836db..9e540558eb 100644
--- a/pureftpd/locale/pt/fusiondirectory.po
+++ b/pureftpd/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po
index 9531815aa4..a8f56f6af6 100644
--- a/pureftpd/locale/pt_BR/fusiondirectory.po
+++ b/pureftpd/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po
index 63788d5f0f..ebd436f0e3 100644
--- a/pureftpd/locale/ru/fusiondirectory.po
+++ b/pureftpd/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po
index a8f35cba78..4845d088cb 100644
--- a/pureftpd/locale/ru@petr1708/fusiondirectory.po
+++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po
index e7c7f80504..07fb1981cd 100644
--- a/pureftpd/locale/sv/fusiondirectory.po
+++ b/pureftpd/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/pureftpd/locale/tr_TR/fusiondirectory.po b/pureftpd/locale/tr_TR/fusiondirectory.po
index 4db9cb0508..e18ad8b9ad 100644
--- a/pureftpd/locale/tr_TR/fusiondirectory.po
+++ b/pureftpd/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po
index bd36cb6609..8f01b83b6d 100644
--- a/pureftpd/locale/ug/fusiondirectory.po
+++ b/pureftpd/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po
index 5920260b46..c86bb741b0 100644
--- a/pureftpd/locale/vi_VN/fusiondirectory.po
+++ b/pureftpd/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po
index fb1c737f77..606ad6d715 100644
--- a/pureftpd/locale/zh/fusiondirectory.po
+++ b/pureftpd/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/pureftpd/locale/zh_TW/fusiondirectory.po b/pureftpd/locale/zh_TW/fusiondirectory.po
index 90b7deb425..acd11d692d 100644
--- a/pureftpd/locale/zh_TW/fusiondirectory.po
+++ b/pureftpd/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/af_ZA/fusiondirectory.po b/quota/locale/af_ZA/fusiondirectory.po
index cddabc5728..b37ee5baf3 100644
--- a/quota/locale/af_ZA/fusiondirectory.po
+++ b/quota/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po
index a1569d6a81..eae3fd1ca1 100644
--- a/quota/locale/ar/fusiondirectory.po
+++ b/quota/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po
index 098f094de3..1cdcd4649a 100644
--- a/quota/locale/ca/fusiondirectory.po
+++ b/quota/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po
index 5cd9f51a3b..1045ee9f62 100644
--- a/quota/locale/cs_CZ/fusiondirectory.po
+++ b/quota/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po
index e9f0a19808..00b4f81769 100644
--- a/quota/locale/de/fusiondirectory.po
+++ b/quota/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po
index a1b24b9e0e..d4da9d732a 100644
--- a/quota/locale/el_GR/fusiondirectory.po
+++ b/quota/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po
index 09b31079c4..25264ff3e7 100644
--- a/quota/locale/es/fusiondirectory.po
+++ b/quota/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po
index 3edc7b8ee6..69e5e719b4 100644
--- a/quota/locale/es_CO/fusiondirectory.po
+++ b/quota/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po
index 49f492cfec..04bc180683 100644
--- a/quota/locale/es_VE/fusiondirectory.po
+++ b/quota/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po
index 6f26bea456..e3037606fe 100644
--- a/quota/locale/fa_IR/fusiondirectory.po
+++ b/quota/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po
index 27831954cd..9d65322252 100644
--- a/quota/locale/fi_FI/fusiondirectory.po
+++ b/quota/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po
index 572953c8f0..6a62cf5511 100644
--- a/quota/locale/fr/fusiondirectory.po
+++ b/quota/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po
index cc14d0076c..4915eb17ac 100644
--- a/quota/locale/hu_HU/fusiondirectory.po
+++ b/quota/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po
index 87d09f35c9..c8420dcbde 100644
--- a/quota/locale/id/fusiondirectory.po
+++ b/quota/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po
index d6e8feef9e..4de1d28d79 100644
--- a/quota/locale/it_IT/fusiondirectory.po
+++ b/quota/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/quota/locale/ja/fusiondirectory.po b/quota/locale/ja/fusiondirectory.po
index e04aedb0cb..5b8b4aad7d 100644
--- a/quota/locale/ja/fusiondirectory.po
+++ b/quota/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ko/fusiondirectory.po b/quota/locale/ko/fusiondirectory.po
index 5f734ed319..b42d9a28d1 100644
--- a/quota/locale/ko/fusiondirectory.po
+++ b/quota/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po
index 43a1cd3c8f..7e98c9b3b5 100644
--- a/quota/locale/lv/fusiondirectory.po
+++ b/quota/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po
index 77eb0aa022..ce73151549 100644
--- a/quota/locale/nb/fusiondirectory.po
+++ b/quota/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po
index 4938e017e7..565cfe5562 100644
--- a/quota/locale/nl/fusiondirectory.po
+++ b/quota/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po
index 026653ddc5..3cac1ce636 100644
--- a/quota/locale/pl/fusiondirectory.po
+++ b/quota/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po
index 8a0e742303..a3bbab2a91 100644
--- a/quota/locale/pt/fusiondirectory.po
+++ b/quota/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po
index dbc4fd4179..664fc4937f 100644
--- a/quota/locale/pt_BR/fusiondirectory.po
+++ b/quota/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po
index 6bb38e2a29..73c0c68b1a 100644
--- a/quota/locale/ru/fusiondirectory.po
+++ b/quota/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po
index 1e594eb443..b7e3cfcb8c 100644
--- a/quota/locale/ru@petr1708/fusiondirectory.po
+++ b/quota/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po
index 5b37b04824..c0e7a0b2db 100644
--- a/quota/locale/sv/fusiondirectory.po
+++ b/quota/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/quota/locale/tr_TR/fusiondirectory.po b/quota/locale/tr_TR/fusiondirectory.po
index 8108212962..6f2792543d 100644
--- a/quota/locale/tr_TR/fusiondirectory.po
+++ b/quota/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po
index 79d2e5f961..1c6dbd6886 100644
--- a/quota/locale/ug/fusiondirectory.po
+++ b/quota/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po
index 110588372b..d312c3b116 100644
--- a/quota/locale/vi_VN/fusiondirectory.po
+++ b/quota/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po
index 208a5b41a1..20816d7b79 100644
--- a/quota/locale/zh/fusiondirectory.po
+++ b/quota/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/quota/locale/zh_TW/fusiondirectory.po b/quota/locale/zh_TW/fusiondirectory.po
index 3a63754a36..846193e3d7 100644
--- a/quota/locale/zh_TW/fusiondirectory.po
+++ b/quota/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/af_ZA/fusiondirectory.po b/renater-partage/locale/af_ZA/fusiondirectory.po
index 7992c55a21..c8acbaaf8b 100644
--- a/renater-partage/locale/af_ZA/fusiondirectory.po
+++ b/renater-partage/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ar/fusiondirectory.po b/renater-partage/locale/ar/fusiondirectory.po
index dea03ec242..834e0a9b56 100644
--- a/renater-partage/locale/ar/fusiondirectory.po
+++ b/renater-partage/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/renater-partage/locale/ca/fusiondirectory.po b/renater-partage/locale/ca/fusiondirectory.po
index 5b820dbcc4..ccfed98df6 100644
--- a/renater-partage/locale/ca/fusiondirectory.po
+++ b/renater-partage/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/renater-partage/locale/cs_CZ/fusiondirectory.po b/renater-partage/locale/cs_CZ/fusiondirectory.po
index b49121c7cb..da796d6196 100644
--- a/renater-partage/locale/cs_CZ/fusiondirectory.po
+++ b/renater-partage/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/renater-partage/locale/de/fusiondirectory.po b/renater-partage/locale/de/fusiondirectory.po
index 67f5a6c10a..06840af483 100644
--- a/renater-partage/locale/de/fusiondirectory.po
+++ b/renater-partage/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/renater-partage/locale/el_GR/fusiondirectory.po b/renater-partage/locale/el_GR/fusiondirectory.po
index 8e4456fbeb..0a3bc7b812 100644
--- a/renater-partage/locale/el_GR/fusiondirectory.po
+++ b/renater-partage/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/renater-partage/locale/es/fusiondirectory.po b/renater-partage/locale/es/fusiondirectory.po
index 6654e400fe..7718b9d292 100644
--- a/renater-partage/locale/es/fusiondirectory.po
+++ b/renater-partage/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/renater-partage/locale/es_CO/fusiondirectory.po b/renater-partage/locale/es_CO/fusiondirectory.po
index 9555d0cf06..01b6ae7850 100644
--- a/renater-partage/locale/es_CO/fusiondirectory.po
+++ b/renater-partage/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/renater-partage/locale/es_VE/fusiondirectory.po b/renater-partage/locale/es_VE/fusiondirectory.po
index ee355d0f7d..75c9c8e724 100644
--- a/renater-partage/locale/es_VE/fusiondirectory.po
+++ b/renater-partage/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/renater-partage/locale/fa_IR/fusiondirectory.po b/renater-partage/locale/fa_IR/fusiondirectory.po
index 33d32038ca..f0114f86ca 100644
--- a/renater-partage/locale/fa_IR/fusiondirectory.po
+++ b/renater-partage/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/fi_FI/fusiondirectory.po b/renater-partage/locale/fi_FI/fusiondirectory.po
index 895d158984..a1956cf6cd 100644
--- a/renater-partage/locale/fi_FI/fusiondirectory.po
+++ b/renater-partage/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/renater-partage/locale/fr/fusiondirectory.po b/renater-partage/locale/fr/fusiondirectory.po
index 4c9030a777..d9fcaeb83c 100644
--- a/renater-partage/locale/fr/fusiondirectory.po
+++ b/renater-partage/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/renater-partage/locale/hu_HU/fusiondirectory.po b/renater-partage/locale/hu_HU/fusiondirectory.po
index 86f64f7ea8..ada0be70a3 100644
--- a/renater-partage/locale/hu_HU/fusiondirectory.po
+++ b/renater-partage/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/id/fusiondirectory.po b/renater-partage/locale/id/fusiondirectory.po
index 160ddc016c..81c447adc0 100644
--- a/renater-partage/locale/id/fusiondirectory.po
+++ b/renater-partage/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index fec11917ea..468d937de9 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/renater-partage/locale/ja/fusiondirectory.po b/renater-partage/locale/ja/fusiondirectory.po
index 5bcd15df2f..21c867d57a 100644
--- a/renater-partage/locale/ja/fusiondirectory.po
+++ b/renater-partage/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ko/fusiondirectory.po b/renater-partage/locale/ko/fusiondirectory.po
index bbc7408294..5e02061f1d 100644
--- a/renater-partage/locale/ko/fusiondirectory.po
+++ b/renater-partage/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/renater-partage/locale/lv/fusiondirectory.po b/renater-partage/locale/lv/fusiondirectory.po
index 61ae671c0a..a4f3b6221c 100644
--- a/renater-partage/locale/lv/fusiondirectory.po
+++ b/renater-partage/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/renater-partage/locale/nb/fusiondirectory.po b/renater-partage/locale/nb/fusiondirectory.po
index 05c5e3a932..9fec72c261 100644
--- a/renater-partage/locale/nb/fusiondirectory.po
+++ b/renater-partage/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/renater-partage/locale/nl/fusiondirectory.po b/renater-partage/locale/nl/fusiondirectory.po
index db7cde1344..e6cb0986d8 100644
--- a/renater-partage/locale/nl/fusiondirectory.po
+++ b/renater-partage/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/renater-partage/locale/pl/fusiondirectory.po b/renater-partage/locale/pl/fusiondirectory.po
index 301009dd3d..02a6dd7491 100644
--- a/renater-partage/locale/pl/fusiondirectory.po
+++ b/renater-partage/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/renater-partage/locale/pt/fusiondirectory.po b/renater-partage/locale/pt/fusiondirectory.po
index e3f5ba6313..a8fbefd456 100644
--- a/renater-partage/locale/pt/fusiondirectory.po
+++ b/renater-partage/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/renater-partage/locale/pt_BR/fusiondirectory.po b/renater-partage/locale/pt_BR/fusiondirectory.po
index 654d445075..b8a4e25fa3 100644
--- a/renater-partage/locale/pt_BR/fusiondirectory.po
+++ b/renater-partage/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/renater-partage/locale/ru/fusiondirectory.po b/renater-partage/locale/ru/fusiondirectory.po
index f4869e0682..646ccb6573 100644
--- a/renater-partage/locale/ru/fusiondirectory.po
+++ b/renater-partage/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/renater-partage/locale/ru@petr1708/fusiondirectory.po b/renater-partage/locale/ru@petr1708/fusiondirectory.po
index 1e03f3aa58..f8b2fecb68 100644
--- a/renater-partage/locale/ru@petr1708/fusiondirectory.po
+++ b/renater-partage/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/sv/fusiondirectory.po b/renater-partage/locale/sv/fusiondirectory.po
index 5a06e75e7b..9b18a7992f 100644
--- a/renater-partage/locale/sv/fusiondirectory.po
+++ b/renater-partage/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/renater-partage/locale/tr_TR/fusiondirectory.po b/renater-partage/locale/tr_TR/fusiondirectory.po
index 3b992d1618..a5a3a8776d 100644
--- a/renater-partage/locale/tr_TR/fusiondirectory.po
+++ b/renater-partage/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ug/fusiondirectory.po b/renater-partage/locale/ug/fusiondirectory.po
index 8022af0034..933e5b3748 100644
--- a/renater-partage/locale/ug/fusiondirectory.po
+++ b/renater-partage/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/vi_VN/fusiondirectory.po b/renater-partage/locale/vi_VN/fusiondirectory.po
index 3993923792..1834835f9f 100644
--- a/renater-partage/locale/vi_VN/fusiondirectory.po
+++ b/renater-partage/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/renater-partage/locale/zh/fusiondirectory.po b/renater-partage/locale/zh/fusiondirectory.po
index 8c8264a020..63d6bb7314 100644
--- a/renater-partage/locale/zh/fusiondirectory.po
+++ b/renater-partage/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/renater-partage/locale/zh_TW/fusiondirectory.po b/renater-partage/locale/zh_TW/fusiondirectory.po
index f64d11d068..1f233ae3e2 100644
--- a/renater-partage/locale/zh_TW/fusiondirectory.po
+++ b/renater-partage/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/af_ZA/fusiondirectory.po b/repository/locale/af_ZA/fusiondirectory.po
index 1452e8ca25..aae89c285a 100644
--- a/repository/locale/af_ZA/fusiondirectory.po
+++ b/repository/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po
index 98e91d071d..5364a6b31a 100644
--- a/repository/locale/ar/fusiondirectory.po
+++ b/repository/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po
index 39f0b3fa7a..f355a00185 100644
--- a/repository/locale/ca/fusiondirectory.po
+++ b/repository/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po
index a55c5b7ea6..60306a01ea 100644
--- a/repository/locale/cs_CZ/fusiondirectory.po
+++ b/repository/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po
index ca325df447..b35b8a0382 100644
--- a/repository/locale/de/fusiondirectory.po
+++ b/repository/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po
index 4a6aeb2ead..9b06e4f9fc 100644
--- a/repository/locale/el_GR/fusiondirectory.po
+++ b/repository/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po
index e1aa418868..d4f9707027 100644
--- a/repository/locale/es/fusiondirectory.po
+++ b/repository/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po
index bc3ee5fe6a..7414d6982b 100644
--- a/repository/locale/es_CO/fusiondirectory.po
+++ b/repository/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po
index 42564fd834..74182cce81 100644
--- a/repository/locale/es_VE/fusiondirectory.po
+++ b/repository/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po
index 30a2ed50b8..bf3c12345d 100644
--- a/repository/locale/fa_IR/fusiondirectory.po
+++ b/repository/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po
index 84d1137684..5ab43fbdc3 100644
--- a/repository/locale/fi_FI/fusiondirectory.po
+++ b/repository/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po
index 5803a26b1b..9db51c246d 100644
--- a/repository/locale/fr/fusiondirectory.po
+++ b/repository/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po
index cfaddef79e..941d875704 100644
--- a/repository/locale/hu_HU/fusiondirectory.po
+++ b/repository/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po
index c7509c57c3..693cece5c6 100644
--- a/repository/locale/id/fusiondirectory.po
+++ b/repository/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po
index dc6228e659..fffb4407c6 100644
--- a/repository/locale/it_IT/fusiondirectory.po
+++ b/repository/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/repository/locale/ja/fusiondirectory.po b/repository/locale/ja/fusiondirectory.po
index 61a5e26682..6c54681743 100644
--- a/repository/locale/ja/fusiondirectory.po
+++ b/repository/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ko/fusiondirectory.po b/repository/locale/ko/fusiondirectory.po
index a4189790e7..c8fe27daea 100644
--- a/repository/locale/ko/fusiondirectory.po
+++ b/repository/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po
index e57a87737f..1e05d9abea 100644
--- a/repository/locale/lv/fusiondirectory.po
+++ b/repository/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po
index 0c8eae1bdb..810fea607c 100644
--- a/repository/locale/nb/fusiondirectory.po
+++ b/repository/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po
index 77f856753c..2158e0ead1 100644
--- a/repository/locale/nl/fusiondirectory.po
+++ b/repository/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po
index b51c86682f..71bded9ade 100644
--- a/repository/locale/pl/fusiondirectory.po
+++ b/repository/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po
index c2a25371bd..f99278f7af 100644
--- a/repository/locale/pt/fusiondirectory.po
+++ b/repository/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po
index 586ff18934..4e3b69c9f6 100644
--- a/repository/locale/pt_BR/fusiondirectory.po
+++ b/repository/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po
index 826b65cf56..91529a9055 100644
--- a/repository/locale/ru/fusiondirectory.po
+++ b/repository/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po
index 49a66263cb..e88eab1b65 100644
--- a/repository/locale/ru@petr1708/fusiondirectory.po
+++ b/repository/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po
index bf9dcfd1f9..fee196bff7 100644
--- a/repository/locale/sv/fusiondirectory.po
+++ b/repository/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/repository/locale/tr_TR/fusiondirectory.po b/repository/locale/tr_TR/fusiondirectory.po
index c15dccd854..2cfcacf99e 100644
--- a/repository/locale/tr_TR/fusiondirectory.po
+++ b/repository/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po
index 61ff806378..8921a312a5 100644
--- a/repository/locale/ug/fusiondirectory.po
+++ b/repository/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po
index 379fc11ae6..29929f73eb 100644
--- a/repository/locale/vi_VN/fusiondirectory.po
+++ b/repository/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po
index e19c04cbc3..2263f6ea9a 100644
--- a/repository/locale/zh/fusiondirectory.po
+++ b/repository/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/repository/locale/zh_TW/fusiondirectory.po b/repository/locale/zh_TW/fusiondirectory.po
index b41d368f7d..fc13ea2f08 100644
--- a/repository/locale/zh_TW/fusiondirectory.po
+++ b/repository/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/af_ZA/fusiondirectory.po b/samba/locale/af_ZA/fusiondirectory.po
index 2325a9b3ee..88c3b19885 100644
--- a/samba/locale/af_ZA/fusiondirectory.po
+++ b/samba/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po
index b3064305df..e1217cdd59 100644
--- a/samba/locale/ar/fusiondirectory.po
+++ b/samba/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po
index 32e53b5e30..5979f9a9fb 100644
--- a/samba/locale/ca/fusiondirectory.po
+++ b/samba/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po
index d355168b8b..a9c566f34c 100644
--- a/samba/locale/cs_CZ/fusiondirectory.po
+++ b/samba/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po
index 2be2d5e9c1..6bc465351b 100644
--- a/samba/locale/de/fusiondirectory.po
+++ b/samba/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po
index b9b87112db..3bf415f895 100644
--- a/samba/locale/el_GR/fusiondirectory.po
+++ b/samba/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po
index 62b43953f1..26da210006 100644
--- a/samba/locale/es/fusiondirectory.po
+++ b/samba/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po
index 2e171f468f..c81c8d92ee 100644
--- a/samba/locale/es_CO/fusiondirectory.po
+++ b/samba/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po
index 0376a32013..d2baaa8c43 100644
--- a/samba/locale/es_VE/fusiondirectory.po
+++ b/samba/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po
index abdffef161..14f503156c 100644
--- a/samba/locale/fa_IR/fusiondirectory.po
+++ b/samba/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po
index 609ba5845f..10a7e386ec 100644
--- a/samba/locale/fi_FI/fusiondirectory.po
+++ b/samba/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po
index 18fffa4f36..84d508875e 100644
--- a/samba/locale/fr/fusiondirectory.po
+++ b/samba/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po
index 738a17a8d1..5a99eb668e 100644
--- a/samba/locale/hu_HU/fusiondirectory.po
+++ b/samba/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po
index fac4d271e5..17b5a9f397 100644
--- a/samba/locale/id/fusiondirectory.po
+++ b/samba/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po
index 162c643876..50f57ca9b9 100644
--- a/samba/locale/it_IT/fusiondirectory.po
+++ b/samba/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/samba/locale/ja/fusiondirectory.po b/samba/locale/ja/fusiondirectory.po
index 2e8e566f2d..0fe4376dd2 100644
--- a/samba/locale/ja/fusiondirectory.po
+++ b/samba/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ko/fusiondirectory.po b/samba/locale/ko/fusiondirectory.po
index ca023400c2..fa5e653a0f 100644
--- a/samba/locale/ko/fusiondirectory.po
+++ b/samba/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po
index a433b1eb8d..0cccf72257 100644
--- a/samba/locale/lv/fusiondirectory.po
+++ b/samba/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po
index 5129391ff0..1839047e00 100644
--- a/samba/locale/nb/fusiondirectory.po
+++ b/samba/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po
index c3520d9584..6a39d27556 100644
--- a/samba/locale/nl/fusiondirectory.po
+++ b/samba/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po
index afdaea5eba..9d4dae6908 100644
--- a/samba/locale/pl/fusiondirectory.po
+++ b/samba/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po
index e8185bce6d..b3ed4b42e3 100644
--- a/samba/locale/pt/fusiondirectory.po
+++ b/samba/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po
index 07a5a61ab9..e7f85b220a 100644
--- a/samba/locale/pt_BR/fusiondirectory.po
+++ b/samba/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po
index d745d4cc12..d397d110bc 100644
--- a/samba/locale/ru/fusiondirectory.po
+++ b/samba/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po
index 0e1e9fa11d..8f077f675d 100644
--- a/samba/locale/ru@petr1708/fusiondirectory.po
+++ b/samba/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po
index 5d6ece7a13..b1ffeab6da 100644
--- a/samba/locale/sv/fusiondirectory.po
+++ b/samba/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/samba/locale/tr_TR/fusiondirectory.po b/samba/locale/tr_TR/fusiondirectory.po
index 781bab2035..c8e0c7cff6 100644
--- a/samba/locale/tr_TR/fusiondirectory.po
+++ b/samba/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po
index 4f9118d752..a6461e3979 100644
--- a/samba/locale/ug/fusiondirectory.po
+++ b/samba/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po
index 655f7f99da..6c8493855c 100644
--- a/samba/locale/vi_VN/fusiondirectory.po
+++ b/samba/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po
index 702bf85f90..766d0e68bb 100644
--- a/samba/locale/zh/fusiondirectory.po
+++ b/samba/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/samba/locale/zh_TW/fusiondirectory.po b/samba/locale/zh_TW/fusiondirectory.po
index c262dea8ab..f7d07f3866 100644
--- a/samba/locale/zh_TW/fusiondirectory.po
+++ b/samba/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/af_ZA/fusiondirectory.po b/sinaps/locale/af_ZA/fusiondirectory.po
index 54a5adfdf9..6038c0713d 100644
--- a/sinaps/locale/af_ZA/fusiondirectory.po
+++ b/sinaps/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: af_ZA\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ar/fusiondirectory.po b/sinaps/locale/ar/fusiondirectory.po
index f7bc3b9041..eaccab63e5 100644
--- a/sinaps/locale/ar/fusiondirectory.po
+++ b/sinaps/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ar\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ca/fusiondirectory.po b/sinaps/locale/ca/fusiondirectory.po
index 343849298a..81b7774015 100644
--- a/sinaps/locale/ca/fusiondirectory.po
+++ b/sinaps/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Entrada"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Contrasenya"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/cs_CZ/fusiondirectory.po b/sinaps/locale/cs_CZ/fusiondirectory.po
index 812b3faac7..6897f21ed4 100644
--- a/sinaps/locale/cs_CZ/fusiondirectory.po
+++ b/sinaps/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: cs_CZ\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Nepodařilo se zjistit jaká metoda je používána pro heslo u účtu „%s“. Nebyl "
 "proto uzamčen!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "S metodou ukládání hesla „%s“ se zamykání nezdařilo. Účet „%s“ nebyl "
 "uzamčen!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Účet „%s“ se nepodařilo v LDAP najít. Nebyl proto uzamčen!"
@@ -51,7 +51,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -93,115 +93,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr "Šablona uživatele"
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr "Uživatelské role"
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "uživatelské jméno"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Heslo"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr "Karta"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr "Kolonka"
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/de/fusiondirectory.po b/sinaps/locale/de/fusiondirectory.po
index d5bc53fe2b..a82f16fa0e 100644
--- a/sinaps/locale/de/fusiondirectory.po
+++ b/sinaps/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Kennung"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Passwort"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/el_GR/fusiondirectory.po b/sinaps/locale/el_GR/fusiondirectory.po
index 053ca83c20..31876d129f 100644
--- a/sinaps/locale/el_GR/fusiondirectory.po
+++ b/sinaps/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Σύνδεση"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Κωδικός πρόσβασης:"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/es/fusiondirectory.po b/sinaps/locale/es/fusiondirectory.po
index e48e22887f..85084842f6 100644
--- a/sinaps/locale/es/fusiondirectory.po
+++ b/sinaps/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Inicio"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Contraseña"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/es_CO/fusiondirectory.po b/sinaps/locale/es_CO/fusiondirectory.po
index 89dad29be4..e545de23ef 100644
--- a/sinaps/locale/es_CO/fusiondirectory.po
+++ b/sinaps/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Usuario"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Contraseña"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/es_VE/fusiondirectory.po b/sinaps/locale/es_VE/fusiondirectory.po
index 3fa1a6fb31..331abe6db5 100644
--- a/sinaps/locale/es_VE/fusiondirectory.po
+++ b/sinaps/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Inicio"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Contraseña"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/fa_IR/fusiondirectory.po b/sinaps/locale/fa_IR/fusiondirectory.po
index 7ea956664b..2c7f1bafee 100644
--- a/sinaps/locale/fa_IR/fusiondirectory.po
+++ b/sinaps/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: fa_IR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/fi_FI/fusiondirectory.po b/sinaps/locale/fi_FI/fusiondirectory.po
index 0905458606..a7bb89ffd3 100644
--- a/sinaps/locale/fi_FI/fusiondirectory.po
+++ b/sinaps/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Salasana"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/fr/fusiondirectory.po b/sinaps/locale/fr/fusiondirectory.po
index 85be13373b..125ccc6881 100644
--- a/sinaps/locale/fr/fusiondirectory.po
+++ b/sinaps/locale/fr/fusiondirectory.po
@@ -4,17 +4,17 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2019
+# fusiondirectory <contact@fusiondirectory.org>, 2019
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2019\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Impossible d'obtenir la méthode de mot de passe pour le compte \"%s\". Le "
 "compte n'a pas été verrouillé !"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "La méthode de mot de passe \"%s\" a échoué. Le compte \"%s\" n'a pas été "
 "verrouillé !"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -53,7 +53,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr "Configuration du plugin SINAPS"
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -100,11 +100,23 @@ msgstr ""
 "Identifiant d'application présent dans les références croisées avec "
 "FusionDirectory"
 
-#: config/sinaps/class_sinapsConfig.inc:66
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
+msgstr "Préfixe UUID"
+
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
+msgstr "Préfixe utilisé pour UUID dans supannRefId"
+
+#: config/sinaps/class_sinapsConfig.inc:72
+msgid "Diffusion"
+msgstr "Diffusion"
+
+#: config/sinaps/class_sinapsConfig.inc:76
 msgid "Applications identifiers to sync"
 msgstr "Identifiants d'applications à synchroniser"
 
-#: config/sinaps/class_sinapsConfig.inc:66
+#: config/sinaps/class_sinapsConfig.inc:76
 msgid ""
 "List of applications identifiers for which cross references should be synced"
 " from SINAPS"
@@ -112,40 +124,32 @@ msgstr ""
 "Liste des identifiants d'applications pour lesquels les références croisées "
 "doivent être synchronisées à partir de SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
-msgstr "Préfixe UUID"
-
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
-msgstr "Préfixe utilisé pour UUID dans supannRefId"
-
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr "Base d'utilisateur"
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 "Base dans laquelle les utilisateurs doivent être créés lors de la réception "
 "d'une diffusion SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr "Modèle utilisateur"
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 "Modèle d'utilisateur à utiliser pour la création d'utilisateur à partir de "
 "SINAPS diffusion"
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr "Jetons d'API"
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
@@ -153,76 +157,119 @@ msgstr ""
 "L'un de ces jetons API devra être présent dans l'URL de diffusion utilisée "
 "par SINAPS."
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr "Rôles utilisateur"
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr "Les rôles qui signifient un utilisateur existe toujours sont présent"
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr "Quel champ synchroniser en diffusion"
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr "XPath pour la valeur XML à récupérer"
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr "Nom de l'onglet FusionDirectory"
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr "Nom du champ FusionDirectory"
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr "Acquisition Sinaps"
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr "URL d'acquisition"
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 "URL complète à laquelle les événements d'acquisition doivent être envoyés"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Identifiant"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 "Identifiant à utiliser pour l’authentification de base lorsque vous "
 "contactez les services SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Mot de passe"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 "Mot de passe à utiliser pour l’authentification de base lorsque vous "
 "contactez les services SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr "Acquisition type externe"
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 "Défini la balise typeExterne lors de l'envoi des données d'acquisition"
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr "Quel champ synchroniser en tant que méthode de contact en acquisition"
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr "Nom d'un attribut LDAP"
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr "Nom de l'attribut Sinaps"
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr "Méthodes de contact"
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr "XPath"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr "Onglet"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr "Champ"
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr "Utilisé pour envoyer une demande d'acquisition aux utilisateurs"
diff --git a/sinaps/locale/hu_HU/fusiondirectory.po b/sinaps/locale/hu_HU/fusiondirectory.po
index a8a928933b..a312ad4cc7 100644
--- a/sinaps/locale/hu_HU/fusiondirectory.po
+++ b/sinaps/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: hu_HU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/id/fusiondirectory.po b/sinaps/locale/id/fusiondirectory.po
index ed565a7d4f..51b0f58bdd 100644
--- a/sinaps/locale/id/fusiondirectory.po
+++ b/sinaps/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index 26c0cdf453..7c2d57abf8 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -4,17 +4,18 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# fusiondirectory <contact@fusiondirectory.org>, 2018
+# fusiondirectory <contact@fusiondirectory.org>, 2019
 # Paola Penati <paola.penati@opensides.be>, 2019
+# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
+"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,22 +23,22 @@ msgstr ""
 "Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Impossibile ottenere metodo di password per l'account\"%s\". Non è stato "
 "bloccato!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "Il metodo di bloccaggio \"%s\" é fallito. L'account \"%s\" non é stato "
 "bloccato!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Account \"%s\" non trovato nella LDAP. Non é stato bloccato!"
@@ -51,7 +52,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr "Configurazione del plugin SINAPS di FusionDirectory"
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -97,11 +98,23 @@ msgstr ""
 "Identificatore dell'applicazione presente nei riferimenti incrociati con "
 "FusionDirectory"
 
-#: config/sinaps/class_sinapsConfig.inc:66
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
+msgstr "Prefisso UUID"
+
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
+msgstr "Prefisso utilizzato per UUID in supannRefId"
+
+#: config/sinaps/class_sinapsConfig.inc:72
+msgid "Diffusion"
+msgstr "Diffusione"
+
+#: config/sinaps/class_sinapsConfig.inc:76
 msgid "Applications identifiers to sync"
 msgstr "Identificativi delle applicazioni da sincronizzare"
 
-#: config/sinaps/class_sinapsConfig.inc:66
+#: config/sinaps/class_sinapsConfig.inc:76
 msgid ""
 "List of applications identifiers for which cross references should be synced"
 " from SINAPS"
@@ -109,40 +122,32 @@ msgstr ""
 "Elenco di identificatori di applicazioni per i quali i riferimenti "
 "incrociati devono essere sincronizzati da SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
-msgstr "Prefisso UUID"
-
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
-msgstr "Prefisso utilizzato per UUID in supannRefId"
-
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr "Base utente"
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 "Base in cui devono essere creati gli utenti quando si riceve una diffusione "
 "SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr "Modello utente"
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 "Modello utente da utilizzare per la creazione dell'utente dalla diffusione "
 "SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr "Token API "
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
@@ -150,73 +155,116 @@ msgstr ""
 "Uno di questi token API dovrà essere presente nell'URL di diffusione "
 "utilizzato da SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr "Ruoli utente"
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr "Ruoli che significa che un utente esiste ancora se presente"
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr "Quale campo sincronizzare in diffusione"
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr "XPath per il valore XML da recuperare"
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr "Nome della tab FD"
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr "Nome del campo FD"
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr "Mappatura del campo utente"
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr "Mappatura dei campi della struttura"
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr "Sinaps Acquisition"
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr "URL di acquisizione"
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr "URL completo a cui devono essere inviati gli eventi di acquisizione"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Nome utente"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 "Login da utilizzare per Basic Auth quando si contattano i servizi SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Password"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 "Password da utilizzare per l'autenticazione di base quando si contattano i "
 "servizi SINAPS"
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr "Acquisizione tipo esterno"
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr "Imposta il tag typeExterne quando invii i dati di acquisizione"
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr "Quale campo sincronizzare come metodi di contatto nell'acquisizione"
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr "Nome di un attributo LDAP"
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr "Nome dell'attributo Sinaps"
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr "Metodi di contatto"
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr "XPath"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr "Tab"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr "Campo"
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr "Utilizzato per inviare una richiesta di acquisizione per gli utenti"
diff --git a/sinaps/locale/ja/fusiondirectory.po b/sinaps/locale/ja/fusiondirectory.po
index c8d748b7a2..9ff48ae33a 100644
--- a/sinaps/locale/ja/fusiondirectory.po
+++ b/sinaps/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ko/fusiondirectory.po b/sinaps/locale/ko/fusiondirectory.po
index 9bdf65cef3..c3980efbb4 100644
--- a/sinaps/locale/ko/fusiondirectory.po
+++ b/sinaps/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr "\"%s\" 계정의 패스워드를 가져올 수 없습니다. 잠겨있지 않습니다."
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr "\"%s\"의 패스워드를 잠글 수 없습니다. \"%s\" 계정이 잠겨있지 않습니다."
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "LDAP에서 계정 \"%s\"을 찾을 수 없습니다. 잠겨있지 않습니다."
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "패스워드"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/lv/fusiondirectory.po b/sinaps/locale/lv/fusiondirectory.po
index ccd1ccfd49..7c9ed0fe3b 100644
--- a/sinaps/locale/lv/fusiondirectory.po
+++ b/sinaps/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: lv\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/nb/fusiondirectory.po b/sinaps/locale/nb/fusiondirectory.po
index 21cec86405..6c16ca2fb0 100644
--- a/sinaps/locale/nb/fusiondirectory.po
+++ b/sinaps/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/nl/fusiondirectory.po b/sinaps/locale/nl/fusiondirectory.po
index 266c4c937e..1e11873e53 100644
--- a/sinaps/locale/nl/fusiondirectory.po
+++ b/sinaps/locale/nl/fusiondirectory.po
@@ -4,17 +4,17 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# fusiondirectory <contact@fusiondirectory.org>, 2018
 # Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018
+# fusiondirectory <contact@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
+"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2019\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Kan de wachtwoordmethode niet opvragen voor account \"%s\". Het is niet "
 "vergrendeld!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "Wachtwoordmethode \"%s\" kon niet vergrendelen. Account \"%s\" is niet "
 "vergrendeld!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Account \"%s\" kon niet gevonden worden in LDAP. Het is niet vergrendeld."
@@ -51,7 +51,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -93,115 +93,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Login"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Paswoord"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr "Tab"
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/pl/fusiondirectory.po b/sinaps/locale/pl/fusiondirectory.po
index 8e3b267cdd..969a3f0557 100644
--- a/sinaps/locale/pl/fusiondirectory.po
+++ b/sinaps/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Login"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Hasło"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/pt/fusiondirectory.po b/sinaps/locale/pt/fusiondirectory.po
index 408a54918c..011212ff32 100644
--- a/sinaps/locale/pt/fusiondirectory.po
+++ b/sinaps/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Login"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Senha"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/pt_BR/fusiondirectory.po b/sinaps/locale/pt_BR/fusiondirectory.po
index 65734f152e..e54209c442 100644
--- a/sinaps/locale/pt_BR/fusiondirectory.po
+++ b/sinaps/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Login"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Senha"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ru/fusiondirectory.po b/sinaps/locale/ru/fusiondirectory.po
index 3a096a0d56..c1d1857287 100644
--- a/sinaps/locale/ru/fusiondirectory.po
+++ b/sinaps/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Имя пользователя"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Пароль"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ru@petr1708/fusiondirectory.po b/sinaps/locale/ru@petr1708/fusiondirectory.po
index 234bda9b37..f07676a2c1 100644
--- a/sinaps/locale/ru@petr1708/fusiondirectory.po
+++ b/sinaps/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ru@petr1708\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/sv/fusiondirectory.po b/sinaps/locale/sv/fusiondirectory.po
index a9b30cde54..7e1caf598d 100644
--- a/sinaps/locale/sv/fusiondirectory.po
+++ b/sinaps/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Användarnamn"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Lösenord"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/tr_TR/fusiondirectory.po b/sinaps/locale/tr_TR/fusiondirectory.po
index bf3af14b3a..b4640224d2 100644
--- a/sinaps/locale/tr_TR/fusiondirectory.po
+++ b/sinaps/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: tr_TR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/ug/fusiondirectory.po b/sinaps/locale/ug/fusiondirectory.po
index d0104c61c7..f0a6400f7a 100644
--- a/sinaps/locale/ug/fusiondirectory.po
+++ b/sinaps/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ug\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/vi_VN/fusiondirectory.po b/sinaps/locale/vi_VN/fusiondirectory.po
index 9caf4a488f..600905b5b0 100644
--- a/sinaps/locale/vi_VN/fusiondirectory.po
+++ b/sinaps/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "Đăng nhập"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "Mật khẩu"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr "LDAP"
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/zh/fusiondirectory.po b/sinaps/locale/zh/fusiondirectory.po
index 2ce7f20db4..dae07e96cc 100644
--- a/sinaps/locale/zh/fusiondirectory.po
+++ b/sinaps/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -46,7 +46,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -88,115 +88,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr "登录名"
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr "口令"
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sinaps/locale/zh_TW/fusiondirectory.po b/sinaps/locale/zh_TW/fusiondirectory.po
index b5aca8e2f3..c8cba4df74 100644
--- a/sinaps/locale/zh_TW/fusiondirectory.po
+++ b/sinaps/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:302
-#: include/class_sinapsDiffusionHandlerJob.inc:323
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:319
+#: include/class_sinapsDiffusionHandlerJob.inc:330
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:326
+#: include/class_sinapsDiffusionHandlerJob.inc:337
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -42,7 +42,7 @@ msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 #: personal/sinaps/class_sinapsUser.inc:27
 #: personal/sinaps/class_sinapsUser.inc:28
 #: personal/sinaps/class_sinapsUser.inc:44
@@ -84,115 +84,162 @@ msgid ""
 "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:66
-msgid ""
-"List of applications identifiers for which cross references should be synced"
-" from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:72
-msgid "UUID prefix"
+msgid "Diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:72
-msgid "Prefix used for UUID in supannRefId"
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid "Applications identifiers to sync"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:76
+msgid ""
+"List of applications identifiers for which cross references should be synced"
+" from SINAPS"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:77
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid ""
 "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:82
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:87
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by"
 " SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "User roles"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:93
+#: config/sinaps/class_sinapsConfig.inc:98
 msgid "Roles which means a user still exists if present"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:104
+#: config/sinaps/class_sinapsConfig.inc:173
 msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:108
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:123
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:127
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:131
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:136
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:158
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
 msgstr ""
diff --git a/sogo/locale/af_ZA/fusiondirectory.po b/sogo/locale/af_ZA/fusiondirectory.po
index eec6fc5783..f4fc0d228f 100644
--- a/sogo/locale/af_ZA/fusiondirectory.po
+++ b/sogo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po
index 0d408331d9..74faa0aebe 100644
--- a/sogo/locale/ar/fusiondirectory.po
+++ b/sogo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po
index 0b79ca06cf..59d64410ed 100644
--- a/sogo/locale/ca/fusiondirectory.po
+++ b/sogo/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po
index f60777088a..88bcfb093e 100644
--- a/sogo/locale/cs_CZ/fusiondirectory.po
+++ b/sogo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po
index e84d7b72fd..1e04a51dd2 100644
--- a/sogo/locale/de/fusiondirectory.po
+++ b/sogo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po
index 56c7e575e9..7fccea3d15 100644
--- a/sogo/locale/el_GR/fusiondirectory.po
+++ b/sogo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po
index d1580e93c6..02fb3df21a 100644
--- a/sogo/locale/es/fusiondirectory.po
+++ b/sogo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po
index 5d83339ca5..b28fa42a87 100644
--- a/sogo/locale/es_CO/fusiondirectory.po
+++ b/sogo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po
index 7de1f18f7d..220cd85671 100644
--- a/sogo/locale/es_VE/fusiondirectory.po
+++ b/sogo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po
index 5811ca75b7..4b2ab49f04 100644
--- a/sogo/locale/fa_IR/fusiondirectory.po
+++ b/sogo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po
index 7f525bc5bb..be5aa1c127 100644
--- a/sogo/locale/fi_FI/fusiondirectory.po
+++ b/sogo/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po
index 66a144cac2..f4815fccd3 100644
--- a/sogo/locale/fr/fusiondirectory.po
+++ b/sogo/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po
index 8f1d2e5083..28db92edb0 100644
--- a/sogo/locale/hu_HU/fusiondirectory.po
+++ b/sogo/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po
index 32af97ceb6..fe81fa4c6f 100644
--- a/sogo/locale/id/fusiondirectory.po
+++ b/sogo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po
index f223251a93..20621def5f 100644
--- a/sogo/locale/it_IT/fusiondirectory.po
+++ b/sogo/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sogo/locale/ja/fusiondirectory.po b/sogo/locale/ja/fusiondirectory.po
index 9f631e2b70..b154543d77 100644
--- a/sogo/locale/ja/fusiondirectory.po
+++ b/sogo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ko/fusiondirectory.po b/sogo/locale/ko/fusiondirectory.po
index cf087517d3..796dddaa34 100644
--- a/sogo/locale/ko/fusiondirectory.po
+++ b/sogo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po
index 4a209b0784..23fc3fb228 100644
--- a/sogo/locale/lv/fusiondirectory.po
+++ b/sogo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po
index 5b023b88f6..985b034322 100644
--- a/sogo/locale/nb/fusiondirectory.po
+++ b/sogo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po
index fa103efee6..f93c553297 100644
--- a/sogo/locale/nl/fusiondirectory.po
+++ b/sogo/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po
index 438fb92fac..59deaacb12 100644
--- a/sogo/locale/pl/fusiondirectory.po
+++ b/sogo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po
index aab7f6820a..74ae95cb83 100644
--- a/sogo/locale/pt/fusiondirectory.po
+++ b/sogo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po
index 2020921652..674a4c8218 100644
--- a/sogo/locale/pt_BR/fusiondirectory.po
+++ b/sogo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po
index 87d3fce42f..2d5ce12e3c 100644
--- a/sogo/locale/ru/fusiondirectory.po
+++ b/sogo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po
index 8305ce025e..9a6ff6d0d9 100644
--- a/sogo/locale/ru@petr1708/fusiondirectory.po
+++ b/sogo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po
index 66ae31ecf3..cfe3330de3 100644
--- a/sogo/locale/sv/fusiondirectory.po
+++ b/sogo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sogo/locale/tr_TR/fusiondirectory.po b/sogo/locale/tr_TR/fusiondirectory.po
index aa222993b1..e4c2fd181c 100644
--- a/sogo/locale/tr_TR/fusiondirectory.po
+++ b/sogo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po
index e1137c3135..ad5afc0ca4 100644
--- a/sogo/locale/ug/fusiondirectory.po
+++ b/sogo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po
index e4e1a96b19..e45f19b702 100644
--- a/sogo/locale/vi_VN/fusiondirectory.po
+++ b/sogo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po
index ddeb57aefb..629ba96903 100644
--- a/sogo/locale/zh/fusiondirectory.po
+++ b/sogo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sogo/locale/zh_TW/fusiondirectory.po b/sogo/locale/zh_TW/fusiondirectory.po
index d00191a954..bf5c65ccdc 100644
--- a/sogo/locale/zh_TW/fusiondirectory.po
+++ b/sogo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/af_ZA/fusiondirectory.po b/spamassassin/locale/af_ZA/fusiondirectory.po
index efd78ac3bd..3f1d1cf387 100644
--- a/spamassassin/locale/af_ZA/fusiondirectory.po
+++ b/spamassassin/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po
index 277065dee4..8316574c16 100644
--- a/spamassassin/locale/ar/fusiondirectory.po
+++ b/spamassassin/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po
index f2de8aff31..bbdb8b2ba1 100644
--- a/spamassassin/locale/ca/fusiondirectory.po
+++ b/spamassassin/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po
index 9c80be0866..d1e09018d7 100644
--- a/spamassassin/locale/cs_CZ/fusiondirectory.po
+++ b/spamassassin/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po
index 7e180ba8d8..261fed4339 100644
--- a/spamassassin/locale/de/fusiondirectory.po
+++ b/spamassassin/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po
index c8d83d27bb..5e527744a1 100644
--- a/spamassassin/locale/el_GR/fusiondirectory.po
+++ b/spamassassin/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po
index 50a3c364c3..ea6a471600 100644
--- a/spamassassin/locale/es/fusiondirectory.po
+++ b/spamassassin/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po
index c9f7147237..5930f0854c 100644
--- a/spamassassin/locale/es_CO/fusiondirectory.po
+++ b/spamassassin/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po
index 7f5c8f90d0..ff9c4cec91 100644
--- a/spamassassin/locale/es_VE/fusiondirectory.po
+++ b/spamassassin/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po
index cbce0ba16f..3c02f790c7 100644
--- a/spamassassin/locale/fa_IR/fusiondirectory.po
+++ b/spamassassin/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po
index 533ef61b62..de44b89048 100644
--- a/spamassassin/locale/fi_FI/fusiondirectory.po
+++ b/spamassassin/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po
index dd3a1d8ccb..736f8eb84a 100644
--- a/spamassassin/locale/fr/fusiondirectory.po
+++ b/spamassassin/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po
index d88b740861..3f4fde0ea2 100644
--- a/spamassassin/locale/hu_HU/fusiondirectory.po
+++ b/spamassassin/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po
index 7023b37837..902b34e11f 100644
--- a/spamassassin/locale/id/fusiondirectory.po
+++ b/spamassassin/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po
index cd8a4ef32b..eba931c2e7 100644
--- a/spamassassin/locale/it_IT/fusiondirectory.po
+++ b/spamassassin/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/spamassassin/locale/ja/fusiondirectory.po b/spamassassin/locale/ja/fusiondirectory.po
index 65857a70d6..a54a1fa145 100644
--- a/spamassassin/locale/ja/fusiondirectory.po
+++ b/spamassassin/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ko/fusiondirectory.po b/spamassassin/locale/ko/fusiondirectory.po
index efc41e9edf..158e8acffb 100644
--- a/spamassassin/locale/ko/fusiondirectory.po
+++ b/spamassassin/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po
index ad1c56eacd..8653e841c1 100644
--- a/spamassassin/locale/lv/fusiondirectory.po
+++ b/spamassassin/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po
index a121d54192..f588768d12 100644
--- a/spamassassin/locale/nb/fusiondirectory.po
+++ b/spamassassin/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po
index 45c4a09889..bed396e8fe 100644
--- a/spamassassin/locale/nl/fusiondirectory.po
+++ b/spamassassin/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po
index ebef29ffee..e4293c7610 100644
--- a/spamassassin/locale/pl/fusiondirectory.po
+++ b/spamassassin/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po
index d9b69e3115..9ff39883f2 100644
--- a/spamassassin/locale/pt/fusiondirectory.po
+++ b/spamassassin/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po
index 7527c27281..0a99c8181a 100644
--- a/spamassassin/locale/pt_BR/fusiondirectory.po
+++ b/spamassassin/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po
index 023839799d..3bffdab4d9 100644
--- a/spamassassin/locale/ru/fusiondirectory.po
+++ b/spamassassin/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po
index 04057dd0a7..6267d06b89 100644
--- a/spamassassin/locale/ru@petr1708/fusiondirectory.po
+++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po
index 4c30cce1df..a92626c29e 100644
--- a/spamassassin/locale/sv/fusiondirectory.po
+++ b/spamassassin/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/spamassassin/locale/tr_TR/fusiondirectory.po b/spamassassin/locale/tr_TR/fusiondirectory.po
index 4e29bd79b3..3be28dbc4b 100644
--- a/spamassassin/locale/tr_TR/fusiondirectory.po
+++ b/spamassassin/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po
index d6aab3e58d..4d8c375cf8 100644
--- a/spamassassin/locale/ug/fusiondirectory.po
+++ b/spamassassin/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po
index 0fff68eb1d..9ed3c29a38 100644
--- a/spamassassin/locale/vi_VN/fusiondirectory.po
+++ b/spamassassin/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po
index 81b505795d..9b3c2b9fc5 100644
--- a/spamassassin/locale/zh/fusiondirectory.po
+++ b/spamassassin/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/spamassassin/locale/zh_TW/fusiondirectory.po b/spamassassin/locale/zh_TW/fusiondirectory.po
index 7763ebda52..a910159481 100644
--- a/spamassassin/locale/zh_TW/fusiondirectory.po
+++ b/spamassassin/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/af_ZA/fusiondirectory.po b/squid/locale/af_ZA/fusiondirectory.po
index e63e3919d7..ec4d2de701 100644
--- a/squid/locale/af_ZA/fusiondirectory.po
+++ b/squid/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po
index 5a194e4b50..ab2029b7a4 100644
--- a/squid/locale/ar/fusiondirectory.po
+++ b/squid/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po
index e65d95b25b..fbf7c047e2 100644
--- a/squid/locale/ca/fusiondirectory.po
+++ b/squid/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po
index 76002c5a7d..b9d18ea515 100644
--- a/squid/locale/cs_CZ/fusiondirectory.po
+++ b/squid/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po
index f9508278fd..9a7a4f865f 100644
--- a/squid/locale/de/fusiondirectory.po
+++ b/squid/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po
index 9bb66e94f5..71156a7850 100644
--- a/squid/locale/el_GR/fusiondirectory.po
+++ b/squid/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po
index 004c2ab757..68f758a7fa 100644
--- a/squid/locale/es/fusiondirectory.po
+++ b/squid/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po
index 9c95c921fb..164b2b7b17 100644
--- a/squid/locale/es_CO/fusiondirectory.po
+++ b/squid/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po
index bc25924693..5bd271c55a 100644
--- a/squid/locale/es_VE/fusiondirectory.po
+++ b/squid/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po
index f277825e7d..a70a12e56a 100644
--- a/squid/locale/fa_IR/fusiondirectory.po
+++ b/squid/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po
index fdffa3f12b..4e775c1a6a 100644
--- a/squid/locale/fi_FI/fusiondirectory.po
+++ b/squid/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po
index fa480688dd..0c12a6ff28 100644
--- a/squid/locale/fr/fusiondirectory.po
+++ b/squid/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po
index 374228cf65..6f6135d1fe 100644
--- a/squid/locale/hu_HU/fusiondirectory.po
+++ b/squid/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po
index 9d396569d4..a025a61e45 100644
--- a/squid/locale/id/fusiondirectory.po
+++ b/squid/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po
index 8527083a2c..22dbb8aa2a 100644
--- a/squid/locale/it_IT/fusiondirectory.po
+++ b/squid/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/squid/locale/ja/fusiondirectory.po b/squid/locale/ja/fusiondirectory.po
index 1394e59a9b..449856a818 100644
--- a/squid/locale/ja/fusiondirectory.po
+++ b/squid/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ko/fusiondirectory.po b/squid/locale/ko/fusiondirectory.po
index b343c5381b..6ade7582b7 100644
--- a/squid/locale/ko/fusiondirectory.po
+++ b/squid/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po
index 8e6d6d47e5..173b43220c 100644
--- a/squid/locale/lv/fusiondirectory.po
+++ b/squid/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po
index 182b133a1a..4ffc4218cb 100644
--- a/squid/locale/nb/fusiondirectory.po
+++ b/squid/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po
index 2b3379f9a8..a245655407 100644
--- a/squid/locale/nl/fusiondirectory.po
+++ b/squid/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po
index fad2619a08..38c0555fbf 100644
--- a/squid/locale/pl/fusiondirectory.po
+++ b/squid/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po
index 4cd18e89cb..d26a796c6a 100644
--- a/squid/locale/pt/fusiondirectory.po
+++ b/squid/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po
index e9487586b8..7aa95d14f4 100644
--- a/squid/locale/pt_BR/fusiondirectory.po
+++ b/squid/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po
index 3c51b0ac8a..d744d3cc51 100644
--- a/squid/locale/ru/fusiondirectory.po
+++ b/squid/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po
index 30ebc04d3d..17106fb9c8 100644
--- a/squid/locale/ru@petr1708/fusiondirectory.po
+++ b/squid/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po
index 2f4a7e5d2b..13a5baffbe 100644
--- a/squid/locale/sv/fusiondirectory.po
+++ b/squid/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/squid/locale/tr_TR/fusiondirectory.po b/squid/locale/tr_TR/fusiondirectory.po
index 31da486d0f..562c80dd61 100644
--- a/squid/locale/tr_TR/fusiondirectory.po
+++ b/squid/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po
index d435947a9d..afe840accb 100644
--- a/squid/locale/ug/fusiondirectory.po
+++ b/squid/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po
index e8d76d379f..c124cea31f 100644
--- a/squid/locale/vi_VN/fusiondirectory.po
+++ b/squid/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po
index f91a6c6ffb..9714c29277 100644
--- a/squid/locale/zh/fusiondirectory.po
+++ b/squid/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/squid/locale/zh_TW/fusiondirectory.po b/squid/locale/zh_TW/fusiondirectory.po
index dfd86a2606..31bea394f1 100644
--- a/squid/locale/zh_TW/fusiondirectory.po
+++ b/squid/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/af_ZA/fusiondirectory.po b/ssh/locale/af_ZA/fusiondirectory.po
index e916190106..4027d8f221 100644
--- a/ssh/locale/af_ZA/fusiondirectory.po
+++ b/ssh/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po
index 84f24ef83d..68e585bbcd 100644
--- a/ssh/locale/ar/fusiondirectory.po
+++ b/ssh/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po
index 07006832bc..38e652d47e 100644
--- a/ssh/locale/ca/fusiondirectory.po
+++ b/ssh/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po
index b20f0d85bb..b008d55fb1 100644
--- a/ssh/locale/cs_CZ/fusiondirectory.po
+++ b/ssh/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po
index afbff283d2..27437dc230 100644
--- a/ssh/locale/de/fusiondirectory.po
+++ b/ssh/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po
index 9ca07cad75..58d74013dd 100644
--- a/ssh/locale/el_GR/fusiondirectory.po
+++ b/ssh/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po
index dd9a6b01cf..d48cac67d7 100644
--- a/ssh/locale/es/fusiondirectory.po
+++ b/ssh/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po
index d6509207e4..28e365582e 100644
--- a/ssh/locale/es_CO/fusiondirectory.po
+++ b/ssh/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po
index 538b1547e1..36c96c7155 100644
--- a/ssh/locale/es_VE/fusiondirectory.po
+++ b/ssh/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po
index f9876be569..d51ad484b9 100644
--- a/ssh/locale/fa_IR/fusiondirectory.po
+++ b/ssh/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po
index df6803fb88..e5d4615eda 100644
--- a/ssh/locale/fi_FI/fusiondirectory.po
+++ b/ssh/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po
index 97cf0be140..96d1dde66a 100644
--- a/ssh/locale/fr/fusiondirectory.po
+++ b/ssh/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po
index 2149f51990..f48ea92aea 100644
--- a/ssh/locale/hu_HU/fusiondirectory.po
+++ b/ssh/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po
index ce7de516f1..67e8aa870c 100644
--- a/ssh/locale/id/fusiondirectory.po
+++ b/ssh/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po
index 5e360411bf..73ef2e7e43 100644
--- a/ssh/locale/it_IT/fusiondirectory.po
+++ b/ssh/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ssh/locale/ja/fusiondirectory.po b/ssh/locale/ja/fusiondirectory.po
index 357c7fb726..37146bf583 100644
--- a/ssh/locale/ja/fusiondirectory.po
+++ b/ssh/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ko/fusiondirectory.po b/ssh/locale/ko/fusiondirectory.po
index 1fa1aff59c..8e0faade5f 100644
--- a/ssh/locale/ko/fusiondirectory.po
+++ b/ssh/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po
index 6416c52de0..42a8a37cd9 100644
--- a/ssh/locale/lv/fusiondirectory.po
+++ b/ssh/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po
index dbb452df4f..94a94f7f73 100644
--- a/ssh/locale/nb/fusiondirectory.po
+++ b/ssh/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po
index 2fed07e5d9..30f361dd34 100644
--- a/ssh/locale/nl/fusiondirectory.po
+++ b/ssh/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po
index f54ee7308c..1f2e134c81 100644
--- a/ssh/locale/pl/fusiondirectory.po
+++ b/ssh/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po
index e2917ef1a2..1a147d94b5 100644
--- a/ssh/locale/pt/fusiondirectory.po
+++ b/ssh/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po
index b0138ca94b..887b18a986 100644
--- a/ssh/locale/pt_BR/fusiondirectory.po
+++ b/ssh/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po
index 0b1ca4798a..a4a2706767 100644
--- a/ssh/locale/ru/fusiondirectory.po
+++ b/ssh/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po
index 97763eb0d2..e4256d7be7 100644
--- a/ssh/locale/ru@petr1708/fusiondirectory.po
+++ b/ssh/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po
index 5bef3e7b25..1dcc3d1ead 100644
--- a/ssh/locale/sv/fusiondirectory.po
+++ b/ssh/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/tr_TR/fusiondirectory.po b/ssh/locale/tr_TR/fusiondirectory.po
index 005bad7022..2f26ca7a29 100644
--- a/ssh/locale/tr_TR/fusiondirectory.po
+++ b/ssh/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po
index 400cbcc47e..5e0d7c8a35 100644
--- a/ssh/locale/ug/fusiondirectory.po
+++ b/ssh/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po
index 6ec8f43df1..eebef435e0 100644
--- a/ssh/locale/vi_VN/fusiondirectory.po
+++ b/ssh/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po
index 828c3b7972..03a72fce7c 100644
--- a/ssh/locale/zh/fusiondirectory.po
+++ b/ssh/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh_TW/fusiondirectory.po b/ssh/locale/zh_TW/fusiondirectory.po
index 19f095b85d..4d60b9ca6c 100644
--- a/ssh/locale/zh_TW/fusiondirectory.po
+++ b/ssh/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/af_ZA/fusiondirectory.po b/subcontracting/locale/af_ZA/fusiondirectory.po
index 3e1f792120..c75656f822 100644
--- a/subcontracting/locale/af_ZA/fusiondirectory.po
+++ b/subcontracting/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po
index 92f5bcb9d5..cecb5cd9b2 100644
--- a/subcontracting/locale/ar/fusiondirectory.po
+++ b/subcontracting/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po
index 42259272bc..bb3a92a088 100644
--- a/subcontracting/locale/ca/fusiondirectory.po
+++ b/subcontracting/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po
index d10d55b48b..6e48a33434 100644
--- a/subcontracting/locale/cs_CZ/fusiondirectory.po
+++ b/subcontracting/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po
index ab2840c7c9..89308e14eb 100644
--- a/subcontracting/locale/de/fusiondirectory.po
+++ b/subcontracting/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po
index cea9184dff..d4f0b250f9 100644
--- a/subcontracting/locale/el_GR/fusiondirectory.po
+++ b/subcontracting/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po
index d323a4f30d..6a3c3aab09 100644
--- a/subcontracting/locale/es/fusiondirectory.po
+++ b/subcontracting/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po
index 15373810a4..429d7bb329 100644
--- a/subcontracting/locale/es_CO/fusiondirectory.po
+++ b/subcontracting/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po
index b46ba41b43..bc32ca3b27 100644
--- a/subcontracting/locale/es_VE/fusiondirectory.po
+++ b/subcontracting/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po
index 5e9ae36544..9e4705b83b 100644
--- a/subcontracting/locale/fa_IR/fusiondirectory.po
+++ b/subcontracting/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po
index 96b2ba4474..91f156e534 100644
--- a/subcontracting/locale/fi_FI/fusiondirectory.po
+++ b/subcontracting/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po
index f1972a592d..45c419a9b8 100644
--- a/subcontracting/locale/fr/fusiondirectory.po
+++ b/subcontracting/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po
index 70ea1e132c..9a4b540908 100644
--- a/subcontracting/locale/hu_HU/fusiondirectory.po
+++ b/subcontracting/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po
index 07557c4ddb..1530fb52f6 100644
--- a/subcontracting/locale/id/fusiondirectory.po
+++ b/subcontracting/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po
index 5d8d8c7133..9a8aa8604a 100644
--- a/subcontracting/locale/it_IT/fusiondirectory.po
+++ b/subcontracting/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/subcontracting/locale/ja/fusiondirectory.po b/subcontracting/locale/ja/fusiondirectory.po
index 56badc687f..99b4fd0c50 100644
--- a/subcontracting/locale/ja/fusiondirectory.po
+++ b/subcontracting/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ko/fusiondirectory.po b/subcontracting/locale/ko/fusiondirectory.po
index 64fce6575f..eb2256d487 100644
--- a/subcontracting/locale/ko/fusiondirectory.po
+++ b/subcontracting/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po
index 9e1a82d8eb..f55e1e0321 100644
--- a/subcontracting/locale/lv/fusiondirectory.po
+++ b/subcontracting/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po
index 7a33b1726f..6a7f46b3d2 100644
--- a/subcontracting/locale/nb/fusiondirectory.po
+++ b/subcontracting/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po
index b983d4826d..42f7d3dd9d 100644
--- a/subcontracting/locale/nl/fusiondirectory.po
+++ b/subcontracting/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po
index 0cf7e8a287..4cb42a0254 100644
--- a/subcontracting/locale/pl/fusiondirectory.po
+++ b/subcontracting/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po
index dce824a1ef..03ba043aff 100644
--- a/subcontracting/locale/pt/fusiondirectory.po
+++ b/subcontracting/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po
index 1058579ab6..f23c2554ed 100644
--- a/subcontracting/locale/pt_BR/fusiondirectory.po
+++ b/subcontracting/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po
index dbac70d8c9..efc50ce8c8 100644
--- a/subcontracting/locale/ru/fusiondirectory.po
+++ b/subcontracting/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po
index 3a78f12e4e..cb4cea3c2f 100644
--- a/subcontracting/locale/ru@petr1708/fusiondirectory.po
+++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po
index d5b6d54010..ac86e1c67b 100644
--- a/subcontracting/locale/sv/fusiondirectory.po
+++ b/subcontracting/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/subcontracting/locale/tr_TR/fusiondirectory.po b/subcontracting/locale/tr_TR/fusiondirectory.po
index e7d9790e9f..a19c3c0461 100644
--- a/subcontracting/locale/tr_TR/fusiondirectory.po
+++ b/subcontracting/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po
index 119c5e823f..888e5342eb 100644
--- a/subcontracting/locale/ug/fusiondirectory.po
+++ b/subcontracting/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po
index 51e30c7d61..6e27d05b0c 100644
--- a/subcontracting/locale/vi_VN/fusiondirectory.po
+++ b/subcontracting/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po
index 2c6d6b3dc8..bf4accc983 100644
--- a/subcontracting/locale/zh/fusiondirectory.po
+++ b/subcontracting/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/subcontracting/locale/zh_TW/fusiondirectory.po b/subcontracting/locale/zh_TW/fusiondirectory.po
index 0ce205717a..d437b887e6 100644
--- a/subcontracting/locale/zh_TW/fusiondirectory.po
+++ b/subcontracting/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/af_ZA/fusiondirectory.po b/sudo/locale/af_ZA/fusiondirectory.po
index 2b60995349..0bf0b95e6d 100644
--- a/sudo/locale/af_ZA/fusiondirectory.po
+++ b/sudo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: af_ZA\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po
index 54d92bbe9b..940e7bf574 100644
--- a/sudo/locale/ar/fusiondirectory.po
+++ b/sudo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: ar\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po
index 6eb3ad2a68..4258d741ab 100644
--- a/sudo/locale/ca/fusiondirectory.po
+++ b/sudo/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po
index 288761d9ed..1f480903dc 100644
--- a/sudo/locale/cs_CZ/fusiondirectory.po
+++ b/sudo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -22,7 +22,7 @@ msgstr ""
 "Language: cs_CZ\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "sudo"
@@ -31,7 +31,7 @@ msgstr "sudo"
 msgid "Sudo management"
 msgstr "Správa sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "role v sudo"
 
diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po
index 8c25ba2f29..0b659e5d37 100644
--- a/sudo/locale/de/fusiondirectory.po
+++ b/sudo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "SUDO-Verwaltung"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Sudo-Rolle"
 
diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po
index 1db129827f..99fa36d721 100644
--- a/sudo/locale/el_GR/fusiondirectory.po
+++ b/sudo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Διαχείριση Sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Ρόλος Sudo"
 
diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po
index 2f33f35dca..253fa8490c 100644
--- a/sudo/locale/es/fusiondirectory.po
+++ b/sudo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Administración Sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Rol Sudo"
 
diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po
index 2bb8193173..45ddae0d59 100644
--- a/sudo/locale/es_CO/fusiondirectory.po
+++ b/sudo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po
index 9cc42373a0..ccec0a6757 100644
--- a/sudo/locale/es_VE/fusiondirectory.po
+++ b/sudo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Administración Sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Rol Sudo"
 
diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po
index df029ce987..fe86935260 100644
--- a/sudo/locale/fa_IR/fusiondirectory.po
+++ b/sudo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: fa_IR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po
index 21b92365ec..720874ec27 100644
--- a/sudo/locale/fi_FI/fusiondirectory.po
+++ b/sudo/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po
index bb23569a70..7279fb8f3d 100644
--- a/sudo/locale/fr/fusiondirectory.po
+++ b/sudo/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,7 +22,7 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -31,7 +31,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Gestion sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Rôle sudo"
 
diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po
index 448ac02975..a69128c2d1 100644
--- a/sudo/locale/hu_HU/fusiondirectory.po
+++ b/sudo/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: hu_HU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po
index 5e5d42947c..0594c819be 100644
--- a/sudo/locale/id/fusiondirectory.po
+++ b/sudo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index 84d4c1923c..5c7093d511 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -22,7 +22,7 @@ msgstr ""
 "Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -31,7 +31,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Gestione di Sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Ruolo Sudo"
 
diff --git a/sudo/locale/ja/fusiondirectory.po b/sudo/locale/ja/fusiondirectory.po
index 02713fcc06..8bf7eca9e9 100644
--- a/sudo/locale/ja/fusiondirectory.po
+++ b/sudo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/ko/fusiondirectory.po b/sudo/locale/ko/fusiondirectory.po
index a211918aff..ba831e863d 100644
--- a/sudo/locale/ko/fusiondirectory.po
+++ b/sudo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Sudo  관리"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Sudo ì—­í• "
 
diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po
index d62058be49..1724c8c15f 100644
--- a/sudo/locale/lv/fusiondirectory.po
+++ b/sudo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: lv\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po
index 9abd296de4..8b8bf36d4a 100644
--- a/sudo/locale/nb/fusiondirectory.po
+++ b/sudo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po
index aeb6421b3b..b6701b68d1 100644
--- a/sudo/locale/nl/fusiondirectory.po
+++ b/sudo/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -22,7 +22,7 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -31,7 +31,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Sudo-beheer"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Sudo-rol"
 
diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po
index 5b38b3f9b1..6c4088daa9 100644
--- a/sudo/locale/pl/fusiondirectory.po
+++ b/sudo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po
index 2ac5ec2d09..f3a903b670 100644
--- a/sudo/locale/pt/fusiondirectory.po
+++ b/sudo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po
index e7ae786950..8587c2ce0d 100644
--- a/sudo/locale/pt_BR/fusiondirectory.po
+++ b/sudo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr "Sudo"
@@ -30,7 +30,7 @@ msgstr "Sudo"
 msgid "Sudo management"
 msgstr "Gestação sudo"
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr "Função sudo"
 
diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po
index cc3dc559ed..bc09c4e424 100644
--- a/sudo/locale/ru/fusiondirectory.po
+++ b/sudo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po
index 3eac3d222b..2efb959312 100644
--- a/sudo/locale/ru@petr1708/fusiondirectory.po
+++ b/sudo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: ru@petr1708\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po
index 5e3bf97b1c..1c026b0921 100644
--- a/sudo/locale/sv/fusiondirectory.po
+++ b/sudo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/tr_TR/fusiondirectory.po b/sudo/locale/tr_TR/fusiondirectory.po
index 3dcc891cd9..dbc2dd714f 100644
--- a/sudo/locale/tr_TR/fusiondirectory.po
+++ b/sudo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: tr_TR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po
index e0374b36fe..2d9eea5d9c 100644
--- a/sudo/locale/ug/fusiondirectory.po
+++ b/sudo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: ug\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po
index 32346b8715..6b64ad9ad9 100644
--- a/sudo/locale/vi_VN/fusiondirectory.po
+++ b/sudo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po
index 5c334dfa57..4bd1f068ad 100644
--- a/sudo/locale/zh/fusiondirectory.po
+++ b/sudo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -30,7 +30,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/sudo/locale/zh_TW/fusiondirectory.po b/sudo/locale/zh_TW/fusiondirectory.po
index 8981d99013..69eb2dc4dc 100644
--- a/sudo/locale/zh_TW/fusiondirectory.po
+++ b/sudo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:123
+#: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
 msgid "Sudo"
 msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
 msgid "Sudo management"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
diff --git a/supann/locale/af_ZA/fusiondirectory.po b/supann/locale/af_ZA/fusiondirectory.po
index 718700f42d..200963e3e8 100644
--- a/supann/locale/af_ZA/fusiondirectory.po
+++ b/supann/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po
index f0decf1f45..ca9552afff 100644
--- a/supann/locale/ar/fusiondirectory.po
+++ b/supann/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po
index 804ab9e20f..fa1162483a 100644
--- a/supann/locale/ca/fusiondirectory.po
+++ b/supann/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po
index 7875f2e464..e7a5433026 100644
--- a/supann/locale/cs_CZ/fusiondirectory.po
+++ b/supann/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po
index e69c6d1872..643ffcd8ff 100644
--- a/supann/locale/de/fusiondirectory.po
+++ b/supann/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po
index c9ea0bcbdb..ca4f3e120c 100644
--- a/supann/locale/el_GR/fusiondirectory.po
+++ b/supann/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po
index 75652b68f0..1a80b66501 100644
--- a/supann/locale/es/fusiondirectory.po
+++ b/supann/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po
index 900e63b3f4..acf0dbdc68 100644
--- a/supann/locale/es_CO/fusiondirectory.po
+++ b/supann/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po
index beafbe991d..99bb33a610 100644
--- a/supann/locale/es_VE/fusiondirectory.po
+++ b/supann/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po
index 56680054cb..81c17218aa 100644
--- a/supann/locale/fa_IR/fusiondirectory.po
+++ b/supann/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po
index d0f2ee275a..fdab2645eb 100644
--- a/supann/locale/fi_FI/fusiondirectory.po
+++ b/supann/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po
index 2e631938a1..c837c0006b 100644
--- a/supann/locale/fr/fusiondirectory.po
+++ b/supann/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2019
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2019\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po
index e5cab7743d..1d84263a99 100644
--- a/supann/locale/hu_HU/fusiondirectory.po
+++ b/supann/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po
index 29deceafc6..ea0ba6ce76 100644
--- a/supann/locale/id/fusiondirectory.po
+++ b/supann/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index 1d4b9f695e..8ca0678bb2 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/supann/locale/ja/fusiondirectory.po b/supann/locale/ja/fusiondirectory.po
index ad5c2746be..f9cc5894da 100644
--- a/supann/locale/ja/fusiondirectory.po
+++ b/supann/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ko/fusiondirectory.po b/supann/locale/ko/fusiondirectory.po
index a368d474ed..b6662f6b04 100644
--- a/supann/locale/ko/fusiondirectory.po
+++ b/supann/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po
index 4658b93ac0..3436ad9d7f 100644
--- a/supann/locale/lv/fusiondirectory.po
+++ b/supann/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po
index ac8d6e5433..49b90da4a7 100644
--- a/supann/locale/nb/fusiondirectory.po
+++ b/supann/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po
index 71dd88c19c..8ba0c74596 100644
--- a/supann/locale/nl/fusiondirectory.po
+++ b/supann/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po
index 2cd66b7e99..718279a7ad 100644
--- a/supann/locale/pl/fusiondirectory.po
+++ b/supann/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po
index ab9eb508ad..4f401e31b1 100644
--- a/supann/locale/pt/fusiondirectory.po
+++ b/supann/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po
index 8338faa4cd..7e25cbbd91 100644
--- a/supann/locale/pt_BR/fusiondirectory.po
+++ b/supann/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po
index daff8787b0..57efa29d91 100644
--- a/supann/locale/ru/fusiondirectory.po
+++ b/supann/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po
index 6b27955818..40e400a04b 100644
--- a/supann/locale/ru@petr1708/fusiondirectory.po
+++ b/supann/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po
index 7d3f223fd6..af2da40cd9 100644
--- a/supann/locale/sv/fusiondirectory.po
+++ b/supann/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/supann/locale/tr_TR/fusiondirectory.po b/supann/locale/tr_TR/fusiondirectory.po
index e9057be013..0bbd259532 100644
--- a/supann/locale/tr_TR/fusiondirectory.po
+++ b/supann/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po
index ac803b5085..398f9344fe 100644
--- a/supann/locale/ug/fusiondirectory.po
+++ b/supann/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po
index e83c84779e..a5b23f3172 100644
--- a/supann/locale/vi_VN/fusiondirectory.po
+++ b/supann/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po
index 920f35b291..f4a587b6a6 100644
--- a/supann/locale/zh/fusiondirectory.po
+++ b/supann/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/supann/locale/zh_TW/fusiondirectory.po b/supann/locale/zh_TW/fusiondirectory.po
index 0d60744d1a..d74ca6aa3d 100644
--- a/supann/locale/zh_TW/fusiondirectory.po
+++ b/supann/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/af_ZA/fusiondirectory.po b/sympa/locale/af_ZA/fusiondirectory.po
index 8da81189da..08ce26c57e 100644
--- a/sympa/locale/af_ZA/fusiondirectory.po
+++ b/sympa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po
index dc7cc0762b..f20ff4dd9b 100644
--- a/sympa/locale/ar/fusiondirectory.po
+++ b/sympa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po
index 960a1d335d..c539b0aadf 100644
--- a/sympa/locale/ca/fusiondirectory.po
+++ b/sympa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po
index 29dcb14f3b..fe8a6c2b49 100644
--- a/sympa/locale/cs_CZ/fusiondirectory.po
+++ b/sympa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po
index 06606166b8..376fa63de3 100644
--- a/sympa/locale/de/fusiondirectory.po
+++ b/sympa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po
index bcd5c02d91..fcd8bfde78 100644
--- a/sympa/locale/el_GR/fusiondirectory.po
+++ b/sympa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po
index 5fb7462902..577baf3a6d 100644
--- a/sympa/locale/es/fusiondirectory.po
+++ b/sympa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po
index 185b08f004..b4516a9a9f 100644
--- a/sympa/locale/es_CO/fusiondirectory.po
+++ b/sympa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po
index 69f538178b..7cdafac15f 100644
--- a/sympa/locale/es_VE/fusiondirectory.po
+++ b/sympa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po
index baef19a97b..b9ff2f07a4 100644
--- a/sympa/locale/fa_IR/fusiondirectory.po
+++ b/sympa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po
index be10b27c8a..c67e87a0bd 100644
--- a/sympa/locale/fi_FI/fusiondirectory.po
+++ b/sympa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po
index ca86b685d8..64233bbdcf 100644
--- a/sympa/locale/fr/fusiondirectory.po
+++ b/sympa/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po
index 3452e1c246..757d45cdef 100644
--- a/sympa/locale/hu_HU/fusiondirectory.po
+++ b/sympa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po
index 9d71198915..4b1b33d938 100644
--- a/sympa/locale/id/fusiondirectory.po
+++ b/sympa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po
index 0c0b5e0506..a83e8397ee 100644
--- a/sympa/locale/it_IT/fusiondirectory.po
+++ b/sympa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sympa/locale/ja/fusiondirectory.po b/sympa/locale/ja/fusiondirectory.po
index 5984328bbd..c853e112d6 100644
--- a/sympa/locale/ja/fusiondirectory.po
+++ b/sympa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ko/fusiondirectory.po b/sympa/locale/ko/fusiondirectory.po
index adf818c682..c0f7955703 100644
--- a/sympa/locale/ko/fusiondirectory.po
+++ b/sympa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po
index df9dac289b..2b725e40bf 100644
--- a/sympa/locale/lv/fusiondirectory.po
+++ b/sympa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po
index b543deecc7..ce3863baf3 100644
--- a/sympa/locale/nb/fusiondirectory.po
+++ b/sympa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po
index f82985fcaf..9570ad6c45 100644
--- a/sympa/locale/nl/fusiondirectory.po
+++ b/sympa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po
index c151a20ecc..556f5f9c12 100644
--- a/sympa/locale/pl/fusiondirectory.po
+++ b/sympa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po
index 7d5288cd6e..204e500ac3 100644
--- a/sympa/locale/pt/fusiondirectory.po
+++ b/sympa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po
index c5cf183873..e249f9d2eb 100644
--- a/sympa/locale/pt_BR/fusiondirectory.po
+++ b/sympa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po
index 4b569cb3a4..0939dfa6e7 100644
--- a/sympa/locale/ru/fusiondirectory.po
+++ b/sympa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po
index 90deead166..97b74cb9d3 100644
--- a/sympa/locale/ru@petr1708/fusiondirectory.po
+++ b/sympa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po
index 6dea35b6c8..9f3c5401ed 100644
--- a/sympa/locale/sv/fusiondirectory.po
+++ b/sympa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sympa/locale/tr_TR/fusiondirectory.po b/sympa/locale/tr_TR/fusiondirectory.po
index 597ec2356e..684332a56e 100644
--- a/sympa/locale/tr_TR/fusiondirectory.po
+++ b/sympa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po
index ac06af6a90..9373c08970 100644
--- a/sympa/locale/ug/fusiondirectory.po
+++ b/sympa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po
index 972851f8d8..87b94c1291 100644
--- a/sympa/locale/vi_VN/fusiondirectory.po
+++ b/sympa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po
index d92075722c..72c0eef029 100644
--- a/sympa/locale/zh/fusiondirectory.po
+++ b/sympa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sympa/locale/zh_TW/fusiondirectory.po b/sympa/locale/zh_TW/fusiondirectory.po
index c0b20e045c..dd4add331c 100644
--- a/sympa/locale/zh_TW/fusiondirectory.po
+++ b/sympa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/af_ZA/fusiondirectory.po b/systems/locale/af_ZA/fusiondirectory.po
index 34e25c3d58..f9ca872c30 100644
--- a/systems/locale/af_ZA/fusiondirectory.po
+++ b/systems/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po
index 27c8206150..26764ac1e7 100644
--- a/systems/locale/ar/fusiondirectory.po
+++ b/systems/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po
index a4b9d5b113..55a3201001 100644
--- a/systems/locale/ca/fusiondirectory.po
+++ b/systems/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po
index 650a697018..b3e02224c0 100644
--- a/systems/locale/cs_CZ/fusiondirectory.po
+++ b/systems/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po
index e58ed8995e..bf7a74dbf2 100644
--- a/systems/locale/de/fusiondirectory.po
+++ b/systems/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po
index 843ab28f11..68ad095334 100644
--- a/systems/locale/el_GR/fusiondirectory.po
+++ b/systems/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po
index 9b9f6807b6..699712f621 100644
--- a/systems/locale/es/fusiondirectory.po
+++ b/systems/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po
index 3a2cf42568..1949436300 100644
--- a/systems/locale/es_CO/fusiondirectory.po
+++ b/systems/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po
index 0e760b2835..25754c0899 100644
--- a/systems/locale/es_VE/fusiondirectory.po
+++ b/systems/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po
index 6c566a62a5..599322a5fa 100644
--- a/systems/locale/fa_IR/fusiondirectory.po
+++ b/systems/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po
index abbc43303c..feba08835f 100644
--- a/systems/locale/fi_FI/fusiondirectory.po
+++ b/systems/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po
index 16ad938630..518fd95d82 100644
--- a/systems/locale/fr/fusiondirectory.po
+++ b/systems/locale/fr/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # MCMic, 2018
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po
index f2a1942372..5ccab372b7 100644
--- a/systems/locale/hu_HU/fusiondirectory.po
+++ b/systems/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po
index c9674ad85b..54b4101087 100644
--- a/systems/locale/id/fusiondirectory.po
+++ b/systems/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 8a6fe4a914..0d4ae10740 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/systems/locale/ja/fusiondirectory.po b/systems/locale/ja/fusiondirectory.po
index 315fde4e1e..f2ed92b02a 100644
--- a/systems/locale/ja/fusiondirectory.po
+++ b/systems/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ko/fusiondirectory.po b/systems/locale/ko/fusiondirectory.po
index 0533f650c5..9f52a5d9c6 100644
--- a/systems/locale/ko/fusiondirectory.po
+++ b/systems/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po
index fd3f1f534d..7c1a530822 100644
--- a/systems/locale/lv/fusiondirectory.po
+++ b/systems/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po
index 4ef4ee4025..4119f8b2f8 100644
--- a/systems/locale/nb/fusiondirectory.po
+++ b/systems/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po
index 3080788a7c..af161a1a28 100644
--- a/systems/locale/nl/fusiondirectory.po
+++ b/systems/locale/nl/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po
index e65a3c15ab..cc0130e7a9 100644
--- a/systems/locale/pl/fusiondirectory.po
+++ b/systems/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po
index f2d1cb405f..c90ef95518 100644
--- a/systems/locale/pt/fusiondirectory.po
+++ b/systems/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po
index 2104dc4e15..2f4e36b330 100644
--- a/systems/locale/pt_BR/fusiondirectory.po
+++ b/systems/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po
index ad05b84d74..6c19add262 100644
--- a/systems/locale/ru/fusiondirectory.po
+++ b/systems/locale/ru/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po
index 88976db2e7..693e85c875 100644
--- a/systems/locale/ru@petr1708/fusiondirectory.po
+++ b/systems/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po
index d869139763..11b15c1a53 100644
--- a/systems/locale/sv/fusiondirectory.po
+++ b/systems/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/systems/locale/tr_TR/fusiondirectory.po b/systems/locale/tr_TR/fusiondirectory.po
index 50b6d0f6f2..84961c6fa8 100644
--- a/systems/locale/tr_TR/fusiondirectory.po
+++ b/systems/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po
index ca597289a1..ea1be43bdc 100644
--- a/systems/locale/ug/fusiondirectory.po
+++ b/systems/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po
index f3ec846f8e..32692bd96d 100644
--- a/systems/locale/vi_VN/fusiondirectory.po
+++ b/systems/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po
index 76e4e3a6e4..34fbcf3826 100644
--- a/systems/locale/zh/fusiondirectory.po
+++ b/systems/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/systems/locale/zh_TW/fusiondirectory.po b/systems/locale/zh_TW/fusiondirectory.po
index 72a85832ee..c06fd159bf 100644
--- a/systems/locale/zh_TW/fusiondirectory.po
+++ b/systems/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/af_ZA/fusiondirectory.po b/user-reminder/locale/af_ZA/fusiondirectory.po
index ab092b1ea8..5432ab8a3c 100644
--- a/user-reminder/locale/af_ZA/fusiondirectory.po
+++ b/user-reminder/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po
index ce3049c976..97561d18c2 100644
--- a/user-reminder/locale/ar/fusiondirectory.po
+++ b/user-reminder/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po
index 6d3b428d18..c29090a7d8 100644
--- a/user-reminder/locale/ca/fusiondirectory.po
+++ b/user-reminder/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po
index ae6b53ead5..9250e3df97 100644
--- a/user-reminder/locale/cs_CZ/fusiondirectory.po
+++ b/user-reminder/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po
index 39a573b814..ef26fba557 100644
--- a/user-reminder/locale/de/fusiondirectory.po
+++ b/user-reminder/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po
index c46dbfbd68..e7aea5b0a6 100644
--- a/user-reminder/locale/el_GR/fusiondirectory.po
+++ b/user-reminder/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po
index c36200148f..65e9671d73 100644
--- a/user-reminder/locale/es/fusiondirectory.po
+++ b/user-reminder/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po
index 9e03eef6aa..4716f5ea1b 100644
--- a/user-reminder/locale/es_CO/fusiondirectory.po
+++ b/user-reminder/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po
index 7dfdb71f7c..0f0ffc94a0 100644
--- a/user-reminder/locale/es_VE/fusiondirectory.po
+++ b/user-reminder/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po
index fe6d842d20..8874e477bf 100644
--- a/user-reminder/locale/fa_IR/fusiondirectory.po
+++ b/user-reminder/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po
index 197341cc2a..4bcd83a958 100644
--- a/user-reminder/locale/fi_FI/fusiondirectory.po
+++ b/user-reminder/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po
index 10ab524373..873ef58dad 100644
--- a/user-reminder/locale/fr/fusiondirectory.po
+++ b/user-reminder/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2018
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2018\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po
index 9211caf489..510ea87043 100644
--- a/user-reminder/locale/hu_HU/fusiondirectory.po
+++ b/user-reminder/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po
index 20ebc74eab..3e05a837bd 100644
--- a/user-reminder/locale/id/fusiondirectory.po
+++ b/user-reminder/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index f7e3694b3f..1bedcfdf8c 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/user-reminder/locale/ja/fusiondirectory.po b/user-reminder/locale/ja/fusiondirectory.po
index 115215820d..36a571ef8e 100644
--- a/user-reminder/locale/ja/fusiondirectory.po
+++ b/user-reminder/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ko/fusiondirectory.po b/user-reminder/locale/ko/fusiondirectory.po
index efe9d8a8fa..3862f69e8c 100644
--- a/user-reminder/locale/ko/fusiondirectory.po
+++ b/user-reminder/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po
index 57ce62af03..23c0a81cba 100644
--- a/user-reminder/locale/lv/fusiondirectory.po
+++ b/user-reminder/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po
index 7a3bad342a..bfecd5b3af 100644
--- a/user-reminder/locale/nb/fusiondirectory.po
+++ b/user-reminder/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po
index 38a4831a35..961f7cd3be 100644
--- a/user-reminder/locale/nl/fusiondirectory.po
+++ b/user-reminder/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po
index 99b1674047..1c582f0f29 100644
--- a/user-reminder/locale/pl/fusiondirectory.po
+++ b/user-reminder/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po
index b116c3207c..96ee526089 100644
--- a/user-reminder/locale/pt/fusiondirectory.po
+++ b/user-reminder/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po
index edf1c6cdde..c0d0b1cc18 100644
--- a/user-reminder/locale/pt_BR/fusiondirectory.po
+++ b/user-reminder/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po
index af82504f90..e7634c7811 100644
--- a/user-reminder/locale/ru/fusiondirectory.po
+++ b/user-reminder/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po
index 890b8197c1..3d93fff5a7 100644
--- a/user-reminder/locale/ru@petr1708/fusiondirectory.po
+++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po
index ea64eaf58d..1eee86cf46 100644
--- a/user-reminder/locale/sv/fusiondirectory.po
+++ b/user-reminder/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/user-reminder/locale/tr_TR/fusiondirectory.po b/user-reminder/locale/tr_TR/fusiondirectory.po
index 76e35aba06..f9aa864371 100644
--- a/user-reminder/locale/tr_TR/fusiondirectory.po
+++ b/user-reminder/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po
index ba6d7adbae..83e65ae1ed 100644
--- a/user-reminder/locale/ug/fusiondirectory.po
+++ b/user-reminder/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po
index 46e723f80e..bb467614b5 100644
--- a/user-reminder/locale/vi_VN/fusiondirectory.po
+++ b/user-reminder/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po
index 817e33f317..a31c90970c 100644
--- a/user-reminder/locale/zh/fusiondirectory.po
+++ b/user-reminder/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/user-reminder/locale/zh_TW/fusiondirectory.po b/user-reminder/locale/zh_TW/fusiondirectory.po
index 0c51233424..14cc8ff431 100644
--- a/user-reminder/locale/zh_TW/fusiondirectory.po
+++ b/user-reminder/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/af_ZA/fusiondirectory.po b/weblink/locale/af_ZA/fusiondirectory.po
index daa3213b6e..3bbda1e3f1 100644
--- a/weblink/locale/af_ZA/fusiondirectory.po
+++ b/weblink/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po
index b571a4ab08..15e35f38bd 100644
--- a/weblink/locale/ar/fusiondirectory.po
+++ b/weblink/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po
index ad30744160..b8ab2b0f76 100644
--- a/weblink/locale/ca/fusiondirectory.po
+++ b/weblink/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po
index 8510394c7a..bc2c6265b2 100644
--- a/weblink/locale/cs_CZ/fusiondirectory.po
+++ b/weblink/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po
index 70ca8c2583..46edde3109 100644
--- a/weblink/locale/de/fusiondirectory.po
+++ b/weblink/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po
index c2534a2a8d..73203930c3 100644
--- a/weblink/locale/el_GR/fusiondirectory.po
+++ b/weblink/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po
index eaa3510ca7..dd435de46c 100644
--- a/weblink/locale/es/fusiondirectory.po
+++ b/weblink/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po
index 9420d4dbee..03819578bc 100644
--- a/weblink/locale/es_CO/fusiondirectory.po
+++ b/weblink/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po
index f204a7bacd..0a4d586da6 100644
--- a/weblink/locale/es_VE/fusiondirectory.po
+++ b/weblink/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po
index ce8d28cb7b..34f325369b 100644
--- a/weblink/locale/fa_IR/fusiondirectory.po
+++ b/weblink/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po
index 43cb500512..e679400910 100644
--- a/weblink/locale/fi_FI/fusiondirectory.po
+++ b/weblink/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po
index 9e6c9becbe..9fbc52372d 100644
--- a/weblink/locale/fr/fusiondirectory.po
+++ b/weblink/locale/fr/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Benoit Mortier <benoit.mortier@opensides.be>, 2017
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>, 2017\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po
index 7d1926522a..abac7d8737 100644
--- a/weblink/locale/hu_HU/fusiondirectory.po
+++ b/weblink/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po
index ca0f885725..5398a77f54 100644
--- a/weblink/locale/id/fusiondirectory.po
+++ b/weblink/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index c027efbaa8..ff7997e7b5 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/weblink/locale/ja/fusiondirectory.po b/weblink/locale/ja/fusiondirectory.po
index 44f4baa87d..d070eb2438 100644
--- a/weblink/locale/ja/fusiondirectory.po
+++ b/weblink/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ko/fusiondirectory.po b/weblink/locale/ko/fusiondirectory.po
index 7c6b5c84a9..41d3add616 100644
--- a/weblink/locale/ko/fusiondirectory.po
+++ b/weblink/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po
index adc0d939a5..15a46edb4e 100644
--- a/weblink/locale/lv/fusiondirectory.po
+++ b/weblink/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po
index 9dadfebd3e..a12b6c97be 100644
--- a/weblink/locale/nb/fusiondirectory.po
+++ b/weblink/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po
index 8a396f2fdf..5f9116c1e5 100644
--- a/weblink/locale/nl/fusiondirectory.po
+++ b/weblink/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po
index b044d6ae9d..baa6400f29 100644
--- a/weblink/locale/pl/fusiondirectory.po
+++ b/weblink/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po
index c23dd1afad..ba1baa5348 100644
--- a/weblink/locale/pt/fusiondirectory.po
+++ b/weblink/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po
index 14c8b6d74f..1fb22476bb 100644
--- a/weblink/locale/pt_BR/fusiondirectory.po
+++ b/weblink/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po
index e4acdc7cab..fa62b99950 100644
--- a/weblink/locale/ru/fusiondirectory.po
+++ b/weblink/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po
index f9ca22fe60..fe8a2b07bd 100644
--- a/weblink/locale/ru@petr1708/fusiondirectory.po
+++ b/weblink/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po
index 1ab600f0b3..570884e665 100644
--- a/weblink/locale/sv/fusiondirectory.po
+++ b/weblink/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/tr_TR/fusiondirectory.po b/weblink/locale/tr_TR/fusiondirectory.po
index 6ffb567349..44f920e3cf 100644
--- a/weblink/locale/tr_TR/fusiondirectory.po
+++ b/weblink/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po
index 0e10330583..466d5884d4 100644
--- a/weblink/locale/ug/fusiondirectory.po
+++ b/weblink/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po
index b7bf445839..f38b0ad2cc 100644
--- a/weblink/locale/vi_VN/fusiondirectory.po
+++ b/weblink/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po
index 9661d165f2..423b3e0005 100644
--- a/weblink/locale/zh/fusiondirectory.po
+++ b/weblink/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh_TW/fusiondirectory.po b/weblink/locale/zh_TW/fusiondirectory.po
index 23e7a845b4..1814118326 100644
--- a/weblink/locale/zh_TW/fusiondirectory.po
+++ b/weblink/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/af_ZA/fusiondirectory.po b/webservice/locale/af_ZA/fusiondirectory.po
index e891836fc7..3aee31a585 100644
--- a/webservice/locale/af_ZA/fusiondirectory.po
+++ b/webservice/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po
index 101917396a..a3c8bdb122 100644
--- a/webservice/locale/ar/fusiondirectory.po
+++ b/webservice/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po
index 65e77ae585..80a7f8b9f6 100644
--- a/webservice/locale/ca/fusiondirectory.po
+++ b/webservice/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po
index 697efe976a..38113d4e34 100644
--- a/webservice/locale/cs_CZ/fusiondirectory.po
+++ b/webservice/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po
index 926b950e7e..8196a0048b 100644
--- a/webservice/locale/de/fusiondirectory.po
+++ b/webservice/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po
index aff754d68c..f097511489 100644
--- a/webservice/locale/el_GR/fusiondirectory.po
+++ b/webservice/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po
index c317f72499..e86d04be80 100644
--- a/webservice/locale/es/fusiondirectory.po
+++ b/webservice/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po
index 735a95d965..6946c1350c 100644
--- a/webservice/locale/es_CO/fusiondirectory.po
+++ b/webservice/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po
index 26c07128f6..69d8edf7a3 100644
--- a/webservice/locale/es_VE/fusiondirectory.po
+++ b/webservice/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po
index c19252aa20..8e6971562a 100644
--- a/webservice/locale/fa_IR/fusiondirectory.po
+++ b/webservice/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po
index 42df38cd28..1b1bf7e9c6 100644
--- a/webservice/locale/fi_FI/fusiondirectory.po
+++ b/webservice/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po
index 25710c2f6b..5b806af855 100644
--- a/webservice/locale/fr/fusiondirectory.po
+++ b/webservice/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po
index 940acda28b..beeb5d6a5e 100644
--- a/webservice/locale/hu_HU/fusiondirectory.po
+++ b/webservice/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po
index 78dd89fa22..bf85d1d7cf 100644
--- a/webservice/locale/id/fusiondirectory.po
+++ b/webservice/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index a50776280a..982fcc5ca3 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/webservice/locale/ja/fusiondirectory.po b/webservice/locale/ja/fusiondirectory.po
index 75d67ca8e0..fa4a813f16 100644
--- a/webservice/locale/ja/fusiondirectory.po
+++ b/webservice/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ko/fusiondirectory.po b/webservice/locale/ko/fusiondirectory.po
index 08e20cedb3..0e9c6d742d 100644
--- a/webservice/locale/ko/fusiondirectory.po
+++ b/webservice/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po
index a62dc884cf..f8ff641431 100644
--- a/webservice/locale/lv/fusiondirectory.po
+++ b/webservice/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po
index b55fc0cae9..31cd64fe89 100644
--- a/webservice/locale/nb/fusiondirectory.po
+++ b/webservice/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po
index 290eed48de..1af9e87f36 100644
--- a/webservice/locale/nl/fusiondirectory.po
+++ b/webservice/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po
index a5a0ab8c0b..c966470cde 100644
--- a/webservice/locale/pl/fusiondirectory.po
+++ b/webservice/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po
index 668447df54..786d30b3f7 100644
--- a/webservice/locale/pt/fusiondirectory.po
+++ b/webservice/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po
index 17eb56ceeb..92c4785acb 100644
--- a/webservice/locale/pt_BR/fusiondirectory.po
+++ b/webservice/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po
index ffc409642d..c72cb5251e 100644
--- a/webservice/locale/ru/fusiondirectory.po
+++ b/webservice/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po
index 1a78e0fff2..0c62aa8b47 100644
--- a/webservice/locale/ru@petr1708/fusiondirectory.po
+++ b/webservice/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po
index e9348c6b9c..75c732c639 100644
--- a/webservice/locale/sv/fusiondirectory.po
+++ b/webservice/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/webservice/locale/tr_TR/fusiondirectory.po b/webservice/locale/tr_TR/fusiondirectory.po
index b3a0a1fa48..b09a5ffa7e 100644
--- a/webservice/locale/tr_TR/fusiondirectory.po
+++ b/webservice/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po
index fd3eee43c9..413eddc73d 100644
--- a/webservice/locale/ug/fusiondirectory.po
+++ b/webservice/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po
index c104f64585..ffba75efae 100644
--- a/webservice/locale/vi_VN/fusiondirectory.po
+++ b/webservice/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po
index e6a2a28546..1b0d18ed4b 100644
--- a/webservice/locale/zh/fusiondirectory.po
+++ b/webservice/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/zh_TW/fusiondirectory.po b/webservice/locale/zh_TW/fusiondirectory.po
index 0bc53fa32b..74ff5bbe3c 100644
--- a/webservice/locale/zh_TW/fusiondirectory.po
+++ b/webservice/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-06-27 08:29+0000\n"
+"POT-Creation-Date: 2019-10-01 16:19+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
-- 
GitLab


From b850ad12200738539fe7d622482f5d790d764073 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Tue, 12 Nov 2019 15:41:07 +0100
Subject: [PATCH 21/73] :ambulance: fix(dovecot) Make sure quotaValue is an
 integer

Returning a float from getQuota may cause trouble.
Did not add a type hint because it may also be an empty string.

issue #5966
---
 .../personal/mail/mail-methods/class_mail-methods-dovecot.inc   | 2 +-
 mail/personal/mail/class_mailAccount.inc                        | 2 +-
 .../mail/mail-methods/class_mail-methods-renater-partage.inc    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 1a2818d52b..4109e02249 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -137,7 +137,7 @@ class mailMethodDovecot extends mailMethod
         if (($quota_value['STORAGE']['limit'] == 2147483647) || ($quota_value['STORAGE']['limit'] <= 0)) {
           $this->quotaValue = '';
         } else {
-          $this->quotaValue = $quota_value['STORAGE']['limit'] / 1024;
+          $this->quotaValue = int($quota_value['STORAGE']['limit'] / 1024);
         }
         $this->quota_loaded = TRUE;
 
diff --git a/mail/personal/mail/class_mailAccount.inc b/mail/personal/mail/class_mailAccount.inc
index 21fc98ba27..68b43fac30 100644
--- a/mail/personal/mail/class_mailAccount.inc
+++ b/mail/personal/mail/class_mailAccount.inc
@@ -105,7 +105,7 @@ class mailAccount extends simplePlugin
             array()
           ),
           new MailQuotaAttribute (
-            _('Quota size'), 'Define quota size in MB',
+            _('Quota size'), _('Define quota size in MiB'),
             'gosaMailQuota', FALSE,
             0, FALSE
           )
diff --git a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
index e61f19f952..da8c06a644 100644
--- a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
+++ b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
@@ -635,7 +635,7 @@ class mailMethodRenaterPartage extends mailMethod
   {
     if ($this->cacheAccount()) {
       /* Partage sends quota in bytes */
-      return $this->cachedAccount['account']['quota'] / (1024 * 1024);
+      return int($this->cachedAccount['account']['quota'] / (1024 * 1024));
     }
     return $quotaValue;
   }
-- 
GitLab


From a4e9361e93dd6beb74a3f274d69c1ba702ffc0a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Wed, 13 Nov 2019 11:42:28 +0100
Subject: [PATCH 22/73] :ambulance: fix(mail) Fix casts to int syntax

issue #5966
---
 .../personal/mail/mail-methods/class_mail-methods-dovecot.inc   | 2 +-
 .../mail/mail-methods/class_mail-methods-renater-partage.inc    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 4109e02249..9e62ba9c71 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -137,7 +137,7 @@ class mailMethodDovecot extends mailMethod
         if (($quota_value['STORAGE']['limit'] == 2147483647) || ($quota_value['STORAGE']['limit'] <= 0)) {
           $this->quotaValue = '';
         } else {
-          $this->quotaValue = int($quota_value['STORAGE']['limit'] / 1024);
+          $this->quotaValue = (int)($quota_value['STORAGE']['limit'] / 1024);
         }
         $this->quota_loaded = TRUE;
 
diff --git a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
index da8c06a644..4a29051bac 100644
--- a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
+++ b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
@@ -635,7 +635,7 @@ class mailMethodRenaterPartage extends mailMethod
   {
     if ($this->cacheAccount()) {
       /* Partage sends quota in bytes */
-      return int($this->cachedAccount['account']['quota'] / (1024 * 1024));
+      return (int)($this->cachedAccount['account']['quota'] / (1024 * 1024));
     }
     return $quotaValue;
   }
-- 
GitLab


From 000e303774b45326c64cc02725f99bd7052d7826 Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@opensides.be>
Date: Fri, 29 Nov 2019 16:46:06 +0100
Subject: [PATCH 23/73] :handshake: fix(locales) updates locales for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@opensides.be>
---
 alias/locale/af_ZA/fusiondirectory.po         |  2 +-
 alias/locale/ar/fusiondirectory.po            |  2 +-
 alias/locale/ca/fusiondirectory.po            |  2 +-
 alias/locale/cs_CZ/fusiondirectory.po         |  2 +-
 alias/locale/de/fusiondirectory.po            |  2 +-
 alias/locale/el_GR/fusiondirectory.po         |  2 +-
 alias/locale/es/fusiondirectory.po            |  2 +-
 alias/locale/es_CO/fusiondirectory.po         |  2 +-
 alias/locale/es_VE/fusiondirectory.po         |  2 +-
 alias/locale/fa_IR/fusiondirectory.po         |  2 +-
 alias/locale/fi_FI/fusiondirectory.po         |  2 +-
 alias/locale/fr/fusiondirectory.po            |  2 +-
 alias/locale/hu_HU/fusiondirectory.po         |  2 +-
 alias/locale/id/fusiondirectory.po            |  2 +-
 alias/locale/it_IT/fusiondirectory.po         |  2 +-
 alias/locale/ja/fusiondirectory.po            |  2 +-
 alias/locale/ko/fusiondirectory.po            |  2 +-
 alias/locale/lv/fusiondirectory.po            |  2 +-
 alias/locale/nb/fusiondirectory.po            |  2 +-
 alias/locale/nl/fusiondirectory.po            |  2 +-
 alias/locale/pl/fusiondirectory.po            |  2 +-
 alias/locale/pt/fusiondirectory.po            |  2 +-
 alias/locale/pt_BR/fusiondirectory.po         |  2 +-
 alias/locale/ru/fusiondirectory.po            |  2 +-
 alias/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 alias/locale/sv/fusiondirectory.po            |  2 +-
 alias/locale/tr_TR/fusiondirectory.po         |  2 +-
 alias/locale/ug/fusiondirectory.po            |  2 +-
 alias/locale/vi_VN/fusiondirectory.po         |  2 +-
 alias/locale/zh/fusiondirectory.po            |  2 +-
 alias/locale/zh_TW/fusiondirectory.po         |  2 +-
 applications/locale/af_ZA/fusiondirectory.po  |  2 +-
 applications/locale/ar/fusiondirectory.po     |  2 +-
 applications/locale/ca/fusiondirectory.po     |  2 +-
 applications/locale/cs_CZ/fusiondirectory.po  |  2 +-
 applications/locale/de/fusiondirectory.po     |  2 +-
 applications/locale/el_GR/fusiondirectory.po  |  2 +-
 applications/locale/es/fusiondirectory.po     |  2 +-
 applications/locale/es_CO/fusiondirectory.po  |  2 +-
 applications/locale/es_VE/fusiondirectory.po  |  2 +-
 applications/locale/fa_IR/fusiondirectory.po  |  2 +-
 applications/locale/fi_FI/fusiondirectory.po  |  2 +-
 applications/locale/fr/fusiondirectory.po     |  2 +-
 applications/locale/hu_HU/fusiondirectory.po  |  2 +-
 applications/locale/id/fusiondirectory.po     |  2 +-
 applications/locale/it_IT/fusiondirectory.po  |  2 +-
 applications/locale/ja/fusiondirectory.po     |  2 +-
 applications/locale/ko/fusiondirectory.po     |  2 +-
 applications/locale/lv/fusiondirectory.po     |  2 +-
 applications/locale/nb/fusiondirectory.po     |  2 +-
 applications/locale/nl/fusiondirectory.po     |  2 +-
 applications/locale/pl/fusiondirectory.po     |  2 +-
 applications/locale/pt/fusiondirectory.po     |  2 +-
 applications/locale/pt_BR/fusiondirectory.po  |  2 +-
 applications/locale/ru/fusiondirectory.po     |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 applications/locale/sv/fusiondirectory.po     |  2 +-
 applications/locale/tr_TR/fusiondirectory.po  |  2 +-
 applications/locale/ug/fusiondirectory.po     |  2 +-
 applications/locale/vi_VN/fusiondirectory.po  |  2 +-
 applications/locale/zh/fusiondirectory.po     |  2 +-
 applications/locale/zh_TW/fusiondirectory.po  |  2 +-
 argonaut/locale/af_ZA/fusiondirectory.po      |  2 +-
 argonaut/locale/ar/fusiondirectory.po         |  2 +-
 argonaut/locale/ca/fusiondirectory.po         |  2 +-
 argonaut/locale/cs_CZ/fusiondirectory.po      |  2 +-
 argonaut/locale/de/fusiondirectory.po         |  2 +-
 argonaut/locale/el_GR/fusiondirectory.po      |  2 +-
 argonaut/locale/es/fusiondirectory.po         |  2 +-
 argonaut/locale/es_CO/fusiondirectory.po      |  2 +-
 argonaut/locale/es_VE/fusiondirectory.po      |  2 +-
 argonaut/locale/fa_IR/fusiondirectory.po      |  2 +-
 argonaut/locale/fi_FI/fusiondirectory.po      |  2 +-
 argonaut/locale/fr/fusiondirectory.po         |  2 +-
 argonaut/locale/hu_HU/fusiondirectory.po      |  2 +-
 argonaut/locale/id/fusiondirectory.po         |  2 +-
 argonaut/locale/it_IT/fusiondirectory.po      |  2 +-
 argonaut/locale/ja/fusiondirectory.po         |  2 +-
 argonaut/locale/ko/fusiondirectory.po         | 26 +++++++++----------
 argonaut/locale/lv/fusiondirectory.po         |  2 +-
 argonaut/locale/nb/fusiondirectory.po         |  2 +-
 argonaut/locale/nl/fusiondirectory.po         |  2 +-
 argonaut/locale/pl/fusiondirectory.po         |  2 +-
 argonaut/locale/pt/fusiondirectory.po         |  2 +-
 argonaut/locale/pt_BR/fusiondirectory.po      |  2 +-
 argonaut/locale/ru/fusiondirectory.po         |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 argonaut/locale/sv/fusiondirectory.po         |  2 +-
 argonaut/locale/tr_TR/fusiondirectory.po      |  2 +-
 argonaut/locale/ug/fusiondirectory.po         |  2 +-
 argonaut/locale/vi_VN/fusiondirectory.po      |  2 +-
 argonaut/locale/zh/fusiondirectory.po         |  2 +-
 argonaut/locale/zh_TW/fusiondirectory.po      |  2 +-
 audit/locale/af_ZA/fusiondirectory.po         |  2 +-
 audit/locale/ar/fusiondirectory.po            |  2 +-
 audit/locale/ca/fusiondirectory.po            |  2 +-
 audit/locale/cs_CZ/fusiondirectory.po         |  2 +-
 audit/locale/de/fusiondirectory.po            |  2 +-
 audit/locale/el_GR/fusiondirectory.po         |  2 +-
 audit/locale/es/fusiondirectory.po            |  2 +-
 audit/locale/es_CO/fusiondirectory.po         |  2 +-
 audit/locale/es_VE/fusiondirectory.po         |  2 +-
 audit/locale/fa_IR/fusiondirectory.po         |  2 +-
 audit/locale/fi_FI/fusiondirectory.po         |  2 +-
 audit/locale/fr/fusiondirectory.po            |  2 +-
 audit/locale/hu_HU/fusiondirectory.po         |  2 +-
 audit/locale/id/fusiondirectory.po            |  2 +-
 audit/locale/it_IT/fusiondirectory.po         |  2 +-
 audit/locale/ja/fusiondirectory.po            |  2 +-
 audit/locale/ko/fusiondirectory.po            |  2 +-
 audit/locale/lv/fusiondirectory.po            |  2 +-
 audit/locale/nb/fusiondirectory.po            |  2 +-
 audit/locale/nl/fusiondirectory.po            |  2 +-
 audit/locale/pl/fusiondirectory.po            |  2 +-
 audit/locale/pt/fusiondirectory.po            |  2 +-
 audit/locale/pt_BR/fusiondirectory.po         |  2 +-
 audit/locale/ru/fusiondirectory.po            |  2 +-
 audit/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 audit/locale/sv/fusiondirectory.po            |  2 +-
 audit/locale/tr_TR/fusiondirectory.po         |  2 +-
 audit/locale/ug/fusiondirectory.po            |  2 +-
 audit/locale/vi_VN/fusiondirectory.po         |  2 +-
 audit/locale/zh/fusiondirectory.po            |  2 +-
 audit/locale/zh_TW/fusiondirectory.po         |  2 +-
 autofs/locale/af_ZA/fusiondirectory.po        |  2 +-
 autofs/locale/ar/fusiondirectory.po           |  2 +-
 autofs/locale/ca/fusiondirectory.po           |  2 +-
 autofs/locale/cs_CZ/fusiondirectory.po        |  2 +-
 autofs/locale/de/fusiondirectory.po           |  2 +-
 autofs/locale/el_GR/fusiondirectory.po        |  2 +-
 autofs/locale/es/fusiondirectory.po           |  2 +-
 autofs/locale/es_CO/fusiondirectory.po        |  2 +-
 autofs/locale/es_VE/fusiondirectory.po        |  2 +-
 autofs/locale/fa_IR/fusiondirectory.po        |  2 +-
 autofs/locale/fi_FI/fusiondirectory.po        |  2 +-
 autofs/locale/fr/fusiondirectory.po           |  2 +-
 autofs/locale/hu_HU/fusiondirectory.po        |  2 +-
 autofs/locale/id/fusiondirectory.po           |  2 +-
 autofs/locale/it_IT/fusiondirectory.po        |  2 +-
 autofs/locale/ja/fusiondirectory.po           |  2 +-
 autofs/locale/ko/fusiondirectory.po           |  2 +-
 autofs/locale/lv/fusiondirectory.po           |  2 +-
 autofs/locale/nb/fusiondirectory.po           |  2 +-
 autofs/locale/nl/fusiondirectory.po           |  2 +-
 autofs/locale/pl/fusiondirectory.po           |  2 +-
 autofs/locale/pt/fusiondirectory.po           |  2 +-
 autofs/locale/pt_BR/fusiondirectory.po        |  2 +-
 autofs/locale/ru/fusiondirectory.po           |  2 +-
 autofs/locale/ru@petr1708/fusiondirectory.po  |  2 +-
 autofs/locale/sv/fusiondirectory.po           |  2 +-
 autofs/locale/tr_TR/fusiondirectory.po        |  2 +-
 autofs/locale/ug/fusiondirectory.po           |  2 +-
 autofs/locale/vi_VN/fusiondirectory.po        |  2 +-
 autofs/locale/zh/fusiondirectory.po           |  2 +-
 autofs/locale/zh_TW/fusiondirectory.po        |  2 +-
 certificates/locale/af_ZA/fusiondirectory.po  |  2 +-
 certificates/locale/ar/fusiondirectory.po     |  2 +-
 certificates/locale/ca/fusiondirectory.po     |  2 +-
 certificates/locale/cs_CZ/fusiondirectory.po  |  2 +-
 certificates/locale/de/fusiondirectory.po     |  2 +-
 certificates/locale/el_GR/fusiondirectory.po  |  2 +-
 certificates/locale/es/fusiondirectory.po     |  2 +-
 certificates/locale/es_CO/fusiondirectory.po  |  2 +-
 certificates/locale/es_VE/fusiondirectory.po  |  2 +-
 certificates/locale/fa_IR/fusiondirectory.po  |  2 +-
 certificates/locale/fi_FI/fusiondirectory.po  |  2 +-
 certificates/locale/fr/fusiondirectory.po     |  2 +-
 certificates/locale/hu_HU/fusiondirectory.po  |  2 +-
 certificates/locale/id/fusiondirectory.po     |  2 +-
 certificates/locale/it_IT/fusiondirectory.po  |  2 +-
 certificates/locale/ja/fusiondirectory.po     |  2 +-
 certificates/locale/ko/fusiondirectory.po     |  2 +-
 certificates/locale/lv/fusiondirectory.po     |  2 +-
 certificates/locale/nb/fusiondirectory.po     |  2 +-
 certificates/locale/nl/fusiondirectory.po     |  2 +-
 certificates/locale/pl/fusiondirectory.po     |  2 +-
 certificates/locale/pt/fusiondirectory.po     |  2 +-
 certificates/locale/pt_BR/fusiondirectory.po  |  2 +-
 certificates/locale/ru/fusiondirectory.po     |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 certificates/locale/sv/fusiondirectory.po     |  2 +-
 certificates/locale/tr_TR/fusiondirectory.po  |  2 +-
 certificates/locale/ug/fusiondirectory.po     |  2 +-
 certificates/locale/vi_VN/fusiondirectory.po  |  2 +-
 certificates/locale/zh/fusiondirectory.po     |  2 +-
 certificates/locale/zh_TW/fusiondirectory.po  |  2 +-
 community/locale/af_ZA/fusiondirectory.po     |  2 +-
 community/locale/ar/fusiondirectory.po        |  2 +-
 community/locale/ca/fusiondirectory.po        |  2 +-
 community/locale/cs_CZ/fusiondirectory.po     |  2 +-
 community/locale/de/fusiondirectory.po        |  2 +-
 community/locale/el_GR/fusiondirectory.po     |  2 +-
 community/locale/es/fusiondirectory.po        |  2 +-
 community/locale/es_CO/fusiondirectory.po     |  2 +-
 community/locale/es_VE/fusiondirectory.po     |  2 +-
 community/locale/fa_IR/fusiondirectory.po     |  2 +-
 community/locale/fi_FI/fusiondirectory.po     |  2 +-
 community/locale/fr/fusiondirectory.po        |  2 +-
 community/locale/hu_HU/fusiondirectory.po     |  2 +-
 community/locale/id/fusiondirectory.po        |  2 +-
 community/locale/it_IT/fusiondirectory.po     |  2 +-
 community/locale/ja/fusiondirectory.po        |  2 +-
 community/locale/ko/fusiondirectory.po        |  2 +-
 community/locale/lv/fusiondirectory.po        |  2 +-
 community/locale/nb/fusiondirectory.po        |  2 +-
 community/locale/nl/fusiondirectory.po        |  2 +-
 community/locale/pl/fusiondirectory.po        |  2 +-
 community/locale/pt/fusiondirectory.po        |  2 +-
 community/locale/pt_BR/fusiondirectory.po     |  2 +-
 community/locale/ru/fusiondirectory.po        |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 community/locale/sv/fusiondirectory.po        |  2 +-
 community/locale/tr_TR/fusiondirectory.po     |  2 +-
 community/locale/ug/fusiondirectory.po        |  2 +-
 community/locale/vi_VN/fusiondirectory.po     |  2 +-
 community/locale/zh/fusiondirectory.po        |  2 +-
 community/locale/zh_TW/fusiondirectory.po     |  2 +-
 cyrus/locale/af_ZA/fusiondirectory.po         |  2 +-
 cyrus/locale/ar/fusiondirectory.po            |  2 +-
 cyrus/locale/ca/fusiondirectory.po            |  2 +-
 cyrus/locale/cs_CZ/fusiondirectory.po         |  2 +-
 cyrus/locale/de/fusiondirectory.po            |  2 +-
 cyrus/locale/el_GR/fusiondirectory.po         |  2 +-
 cyrus/locale/es/fusiondirectory.po            |  2 +-
 cyrus/locale/es_CO/fusiondirectory.po         |  2 +-
 cyrus/locale/es_VE/fusiondirectory.po         |  2 +-
 cyrus/locale/fa_IR/fusiondirectory.po         |  2 +-
 cyrus/locale/fi_FI/fusiondirectory.po         |  2 +-
 cyrus/locale/fr/fusiondirectory.po            |  2 +-
 cyrus/locale/hu_HU/fusiondirectory.po         |  2 +-
 cyrus/locale/id/fusiondirectory.po            |  2 +-
 cyrus/locale/it_IT/fusiondirectory.po         |  2 +-
 cyrus/locale/ja/fusiondirectory.po            |  2 +-
 cyrus/locale/ko/fusiondirectory.po            |  2 +-
 cyrus/locale/lv/fusiondirectory.po            |  2 +-
 cyrus/locale/nb/fusiondirectory.po            |  2 +-
 cyrus/locale/nl/fusiondirectory.po            |  2 +-
 cyrus/locale/pl/fusiondirectory.po            |  2 +-
 cyrus/locale/pt/fusiondirectory.po            |  2 +-
 cyrus/locale/pt_BR/fusiondirectory.po         |  2 +-
 cyrus/locale/ru/fusiondirectory.po            |  2 +-
 cyrus/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 cyrus/locale/sv/fusiondirectory.po            |  2 +-
 cyrus/locale/tr_TR/fusiondirectory.po         |  2 +-
 cyrus/locale/ug/fusiondirectory.po            |  2 +-
 cyrus/locale/vi_VN/fusiondirectory.po         |  2 +-
 cyrus/locale/zh/fusiondirectory.po            |  2 +-
 cyrus/locale/zh_TW/fusiondirectory.po         |  2 +-
 debconf/locale/af_ZA/fusiondirectory.po       |  2 +-
 debconf/locale/ar/fusiondirectory.po          |  2 +-
 debconf/locale/ca/fusiondirectory.po          |  2 +-
 debconf/locale/cs_CZ/fusiondirectory.po       |  2 +-
 debconf/locale/de/fusiondirectory.po          |  2 +-
 debconf/locale/el_GR/fusiondirectory.po       |  2 +-
 debconf/locale/es/fusiondirectory.po          |  2 +-
 debconf/locale/es_CO/fusiondirectory.po       |  2 +-
 debconf/locale/es_VE/fusiondirectory.po       |  2 +-
 debconf/locale/fa_IR/fusiondirectory.po       |  2 +-
 debconf/locale/fi_FI/fusiondirectory.po       |  2 +-
 debconf/locale/fr/fusiondirectory.po          |  2 +-
 debconf/locale/hu_HU/fusiondirectory.po       |  2 +-
 debconf/locale/id/fusiondirectory.po          |  2 +-
 debconf/locale/it_IT/fusiondirectory.po       |  2 +-
 debconf/locale/ja/fusiondirectory.po          |  2 +-
 debconf/locale/ko/fusiondirectory.po          |  2 +-
 debconf/locale/lv/fusiondirectory.po          |  2 +-
 debconf/locale/nb/fusiondirectory.po          |  2 +-
 debconf/locale/nl/fusiondirectory.po          |  2 +-
 debconf/locale/pl/fusiondirectory.po          |  2 +-
 debconf/locale/pt/fusiondirectory.po          |  2 +-
 debconf/locale/pt_BR/fusiondirectory.po       |  2 +-
 debconf/locale/ru/fusiondirectory.po          |  2 +-
 debconf/locale/ru@petr1708/fusiondirectory.po |  2 +-
 debconf/locale/sv/fusiondirectory.po          |  2 +-
 debconf/locale/tr_TR/fusiondirectory.po       |  2 +-
 debconf/locale/ug/fusiondirectory.po          |  2 +-
 debconf/locale/vi_VN/fusiondirectory.po       |  2 +-
 debconf/locale/zh/fusiondirectory.po          |  2 +-
 debconf/locale/zh_TW/fusiondirectory.po       |  2 +-
 developers/locale/af_ZA/fusiondirectory.po    |  2 +-
 developers/locale/ar/fusiondirectory.po       |  2 +-
 developers/locale/ca/fusiondirectory.po       |  2 +-
 developers/locale/cs_CZ/fusiondirectory.po    |  2 +-
 developers/locale/de/fusiondirectory.po       |  2 +-
 developers/locale/el_GR/fusiondirectory.po    |  2 +-
 developers/locale/es/fusiondirectory.po       |  2 +-
 developers/locale/es_CO/fusiondirectory.po    |  2 +-
 developers/locale/es_VE/fusiondirectory.po    |  2 +-
 developers/locale/fa_IR/fusiondirectory.po    |  2 +-
 developers/locale/fi_FI/fusiondirectory.po    |  2 +-
 developers/locale/fr/fusiondirectory.po       |  2 +-
 developers/locale/hu_HU/fusiondirectory.po    |  2 +-
 developers/locale/id/fusiondirectory.po       |  2 +-
 developers/locale/it_IT/fusiondirectory.po    |  2 +-
 developers/locale/ja/fusiondirectory.po       |  2 +-
 developers/locale/ko/fusiondirectory.po       |  2 +-
 developers/locale/lv/fusiondirectory.po       |  2 +-
 developers/locale/nb/fusiondirectory.po       |  2 +-
 developers/locale/nl/fusiondirectory.po       |  2 +-
 developers/locale/pl/fusiondirectory.po       |  2 +-
 developers/locale/pt/fusiondirectory.po       |  2 +-
 developers/locale/pt_BR/fusiondirectory.po    |  2 +-
 developers/locale/ru/fusiondirectory.po       |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 developers/locale/sv/fusiondirectory.po       |  2 +-
 developers/locale/tr_TR/fusiondirectory.po    |  2 +-
 developers/locale/ug/fusiondirectory.po       |  2 +-
 developers/locale/vi_VN/fusiondirectory.po    |  2 +-
 developers/locale/zh/fusiondirectory.po       |  2 +-
 developers/locale/zh_TW/fusiondirectory.po    |  2 +-
 dhcp/locale/af_ZA/fusiondirectory.po          |  2 +-
 dhcp/locale/ar/fusiondirectory.po             |  2 +-
 dhcp/locale/ca/fusiondirectory.po             |  2 +-
 dhcp/locale/cs_CZ/fusiondirectory.po          |  2 +-
 dhcp/locale/de/fusiondirectory.po             |  2 +-
 dhcp/locale/el_GR/fusiondirectory.po          |  2 +-
 dhcp/locale/es/fusiondirectory.po             |  2 +-
 dhcp/locale/es_CO/fusiondirectory.po          |  2 +-
 dhcp/locale/es_VE/fusiondirectory.po          |  2 +-
 dhcp/locale/fa_IR/fusiondirectory.po          |  2 +-
 dhcp/locale/fi_FI/fusiondirectory.po          |  2 +-
 dhcp/locale/fr/fusiondirectory.po             |  2 +-
 dhcp/locale/hu_HU/fusiondirectory.po          |  2 +-
 dhcp/locale/id/fusiondirectory.po             |  2 +-
 dhcp/locale/it_IT/fusiondirectory.po          |  2 +-
 dhcp/locale/ja/fusiondirectory.po             |  2 +-
 dhcp/locale/ko/fusiondirectory.po             |  2 +-
 dhcp/locale/lv/fusiondirectory.po             |  2 +-
 dhcp/locale/nb/fusiondirectory.po             |  2 +-
 dhcp/locale/nl/fusiondirectory.po             |  2 +-
 dhcp/locale/pl/fusiondirectory.po             |  2 +-
 dhcp/locale/pt/fusiondirectory.po             |  2 +-
 dhcp/locale/pt_BR/fusiondirectory.po          |  2 +-
 dhcp/locale/ru/fusiondirectory.po             |  2 +-
 dhcp/locale/ru@petr1708/fusiondirectory.po    |  2 +-
 dhcp/locale/sv/fusiondirectory.po             |  2 +-
 dhcp/locale/tr_TR/fusiondirectory.po          |  2 +-
 dhcp/locale/ug/fusiondirectory.po             |  2 +-
 dhcp/locale/vi_VN/fusiondirectory.po          |  2 +-
 dhcp/locale/zh/fusiondirectory.po             |  2 +-
 dhcp/locale/zh_TW/fusiondirectory.po          |  2 +-
 dns/locale/af_ZA/fusiondirectory.po           |  2 +-
 dns/locale/ar/fusiondirectory.po              |  2 +-
 dns/locale/ca/fusiondirectory.po              |  2 +-
 dns/locale/cs_CZ/fusiondirectory.po           |  2 +-
 dns/locale/de/fusiondirectory.po              |  2 +-
 dns/locale/el_GR/fusiondirectory.po           |  2 +-
 dns/locale/es/fusiondirectory.po              |  2 +-
 dns/locale/es_CO/fusiondirectory.po           |  2 +-
 dns/locale/es_VE/fusiondirectory.po           |  2 +-
 dns/locale/fa_IR/fusiondirectory.po           |  2 +-
 dns/locale/fi_FI/fusiondirectory.po           |  2 +-
 dns/locale/fr/fusiondirectory.po              |  2 +-
 dns/locale/hu_HU/fusiondirectory.po           |  2 +-
 dns/locale/id/fusiondirectory.po              |  2 +-
 dns/locale/it_IT/fusiondirectory.po           |  2 +-
 dns/locale/ja/fusiondirectory.po              |  2 +-
 dns/locale/ko/fusiondirectory.po              | 10 +++----
 dns/locale/lv/fusiondirectory.po              |  2 +-
 dns/locale/nb/fusiondirectory.po              |  2 +-
 dns/locale/nl/fusiondirectory.po              |  2 +-
 dns/locale/pl/fusiondirectory.po              |  2 +-
 dns/locale/pt/fusiondirectory.po              |  2 +-
 dns/locale/pt_BR/fusiondirectory.po           |  2 +-
 dns/locale/ru/fusiondirectory.po              |  2 +-
 dns/locale/ru@petr1708/fusiondirectory.po     |  2 +-
 dns/locale/sv/fusiondirectory.po              |  2 +-
 dns/locale/tr_TR/fusiondirectory.po           |  2 +-
 dns/locale/ug/fusiondirectory.po              |  2 +-
 dns/locale/vi_VN/fusiondirectory.po           |  2 +-
 dns/locale/zh/fusiondirectory.po              |  2 +-
 dns/locale/zh_TW/fusiondirectory.po           |  2 +-
 dovecot/locale/af_ZA/fusiondirectory.po       |  2 +-
 dovecot/locale/ar/fusiondirectory.po          |  2 +-
 dovecot/locale/ca/fusiondirectory.po          |  2 +-
 dovecot/locale/cs_CZ/fusiondirectory.po       |  2 +-
 dovecot/locale/de/fusiondirectory.po          |  2 +-
 dovecot/locale/el_GR/fusiondirectory.po       |  2 +-
 dovecot/locale/es/fusiondirectory.po          |  2 +-
 dovecot/locale/es_CO/fusiondirectory.po       |  2 +-
 dovecot/locale/es_VE/fusiondirectory.po       |  2 +-
 dovecot/locale/fa_IR/fusiondirectory.po       |  2 +-
 dovecot/locale/fi_FI/fusiondirectory.po       |  2 +-
 dovecot/locale/fr/fusiondirectory.po          |  2 +-
 dovecot/locale/hu_HU/fusiondirectory.po       |  2 +-
 dovecot/locale/id/fusiondirectory.po          |  2 +-
 dovecot/locale/it_IT/fusiondirectory.po       |  2 +-
 dovecot/locale/ja/fusiondirectory.po          |  2 +-
 dovecot/locale/ko/fusiondirectory.po          |  2 +-
 dovecot/locale/lv/fusiondirectory.po          |  2 +-
 dovecot/locale/nb/fusiondirectory.po          |  2 +-
 dovecot/locale/nl/fusiondirectory.po          |  2 +-
 dovecot/locale/pl/fusiondirectory.po          |  2 +-
 dovecot/locale/pt/fusiondirectory.po          |  2 +-
 dovecot/locale/pt_BR/fusiondirectory.po       |  2 +-
 dovecot/locale/ru/fusiondirectory.po          |  2 +-
 dovecot/locale/ru@petr1708/fusiondirectory.po |  2 +-
 dovecot/locale/sv/fusiondirectory.po          |  2 +-
 dovecot/locale/tr_TR/fusiondirectory.po       |  2 +-
 dovecot/locale/ug/fusiondirectory.po          |  2 +-
 dovecot/locale/vi_VN/fusiondirectory.po       |  2 +-
 dovecot/locale/zh/fusiondirectory.po          |  2 +-
 dovecot/locale/zh_TW/fusiondirectory.po       |  2 +-
 dsa/locale/af_ZA/fusiondirectory.po           |  2 +-
 dsa/locale/ar/fusiondirectory.po              |  2 +-
 dsa/locale/ca/fusiondirectory.po              |  2 +-
 dsa/locale/cs_CZ/fusiondirectory.po           |  2 +-
 dsa/locale/de/fusiondirectory.po              |  2 +-
 dsa/locale/el_GR/fusiondirectory.po           |  2 +-
 dsa/locale/es/fusiondirectory.po              |  2 +-
 dsa/locale/es_CO/fusiondirectory.po           |  2 +-
 dsa/locale/es_VE/fusiondirectory.po           |  2 +-
 dsa/locale/fa_IR/fusiondirectory.po           |  2 +-
 dsa/locale/fi_FI/fusiondirectory.po           |  2 +-
 dsa/locale/fr/fusiondirectory.po              |  2 +-
 dsa/locale/hu_HU/fusiondirectory.po           |  2 +-
 dsa/locale/id/fusiondirectory.po              |  2 +-
 dsa/locale/it_IT/fusiondirectory.po           |  2 +-
 dsa/locale/ja/fusiondirectory.po              |  2 +-
 dsa/locale/ko/fusiondirectory.po              |  2 +-
 dsa/locale/lv/fusiondirectory.po              |  2 +-
 dsa/locale/nb/fusiondirectory.po              |  2 +-
 dsa/locale/nl/fusiondirectory.po              |  2 +-
 dsa/locale/pl/fusiondirectory.po              |  2 +-
 dsa/locale/pt/fusiondirectory.po              |  2 +-
 dsa/locale/pt_BR/fusiondirectory.po           |  2 +-
 dsa/locale/ru/fusiondirectory.po              |  2 +-
 dsa/locale/ru@petr1708/fusiondirectory.po     |  2 +-
 dsa/locale/sv/fusiondirectory.po              |  2 +-
 dsa/locale/tr_TR/fusiondirectory.po           |  2 +-
 dsa/locale/ug/fusiondirectory.po              |  2 +-
 dsa/locale/vi_VN/fusiondirectory.po           |  2 +-
 dsa/locale/zh/fusiondirectory.po              |  2 +-
 dsa/locale/zh_TW/fusiondirectory.po           |  2 +-
 ejbca/locale/af_ZA/fusiondirectory.po         |  2 +-
 ejbca/locale/ar/fusiondirectory.po            |  2 +-
 ejbca/locale/ca/fusiondirectory.po            |  2 +-
 ejbca/locale/cs_CZ/fusiondirectory.po         |  2 +-
 ejbca/locale/de/fusiondirectory.po            |  2 +-
 ejbca/locale/el_GR/fusiondirectory.po         |  2 +-
 ejbca/locale/es/fusiondirectory.po            |  2 +-
 ejbca/locale/es_CO/fusiondirectory.po         |  2 +-
 ejbca/locale/es_VE/fusiondirectory.po         |  2 +-
 ejbca/locale/fa_IR/fusiondirectory.po         |  2 +-
 ejbca/locale/fi_FI/fusiondirectory.po         |  2 +-
 ejbca/locale/fr/fusiondirectory.po            |  2 +-
 ejbca/locale/hu_HU/fusiondirectory.po         |  2 +-
 ejbca/locale/id/fusiondirectory.po            |  2 +-
 ejbca/locale/it_IT/fusiondirectory.po         |  2 +-
 ejbca/locale/ja/fusiondirectory.po            |  2 +-
 ejbca/locale/ko/fusiondirectory.po            |  2 +-
 ejbca/locale/lv/fusiondirectory.po            |  2 +-
 ejbca/locale/nb/fusiondirectory.po            |  2 +-
 ejbca/locale/nl/fusiondirectory.po            |  2 +-
 ejbca/locale/pl/fusiondirectory.po            |  2 +-
 ejbca/locale/pt/fusiondirectory.po            |  2 +-
 ejbca/locale/pt_BR/fusiondirectory.po         |  2 +-
 ejbca/locale/ru/fusiondirectory.po            |  2 +-
 ejbca/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 ejbca/locale/sv/fusiondirectory.po            |  2 +-
 ejbca/locale/tr_TR/fusiondirectory.po         |  2 +-
 ejbca/locale/ug/fusiondirectory.po            |  2 +-
 ejbca/locale/vi_VN/fusiondirectory.po         |  2 +-
 ejbca/locale/zh/fusiondirectory.po            |  2 +-
 ejbca/locale/zh_TW/fusiondirectory.po         |  2 +-
 fai/locale/af_ZA/fusiondirectory.po           |  2 +-
 fai/locale/ar/fusiondirectory.po              |  2 +-
 fai/locale/ca/fusiondirectory.po              |  2 +-
 fai/locale/cs_CZ/fusiondirectory.po           |  2 +-
 fai/locale/de/fusiondirectory.po              |  2 +-
 fai/locale/el_GR/fusiondirectory.po           |  2 +-
 fai/locale/es/fusiondirectory.po              |  2 +-
 fai/locale/es_CO/fusiondirectory.po           |  2 +-
 fai/locale/es_VE/fusiondirectory.po           |  2 +-
 fai/locale/fa_IR/fusiondirectory.po           |  2 +-
 fai/locale/fi_FI/fusiondirectory.po           |  2 +-
 fai/locale/fr/fusiondirectory.po              |  2 +-
 fai/locale/hu_HU/fusiondirectory.po           |  2 +-
 fai/locale/id/fusiondirectory.po              |  2 +-
 fai/locale/it_IT/fusiondirectory.po           |  2 +-
 fai/locale/ja/fusiondirectory.po              |  2 +-
 fai/locale/ko/fusiondirectory.po              | 20 +++++++-------
 fai/locale/lv/fusiondirectory.po              |  2 +-
 fai/locale/nb/fusiondirectory.po              |  2 +-
 fai/locale/nl/fusiondirectory.po              |  2 +-
 fai/locale/pl/fusiondirectory.po              |  2 +-
 fai/locale/pt/fusiondirectory.po              |  2 +-
 fai/locale/pt_BR/fusiondirectory.po           |  2 +-
 fai/locale/ru/fusiondirectory.po              |  2 +-
 fai/locale/ru@petr1708/fusiondirectory.po     |  2 +-
 fai/locale/sv/fusiondirectory.po              |  2 +-
 fai/locale/tr_TR/fusiondirectory.po           |  2 +-
 fai/locale/ug/fusiondirectory.po              |  2 +-
 fai/locale/vi_VN/fusiondirectory.po           |  2 +-
 fai/locale/zh/fusiondirectory.po              |  2 +-
 fai/locale/zh_TW/fusiondirectory.po           |  2 +-
 freeradius/locale/af_ZA/fusiondirectory.po    |  2 +-
 freeradius/locale/ar/fusiondirectory.po       |  2 +-
 freeradius/locale/ca/fusiondirectory.po       |  2 +-
 freeradius/locale/cs_CZ/fusiondirectory.po    |  2 +-
 freeradius/locale/de/fusiondirectory.po       |  2 +-
 freeradius/locale/el_GR/fusiondirectory.po    |  2 +-
 freeradius/locale/es/fusiondirectory.po       |  2 +-
 freeradius/locale/es_CO/fusiondirectory.po    |  2 +-
 freeradius/locale/es_VE/fusiondirectory.po    |  2 +-
 freeradius/locale/fa_IR/fusiondirectory.po    |  2 +-
 freeradius/locale/fi_FI/fusiondirectory.po    |  2 +-
 freeradius/locale/fr/fusiondirectory.po       |  2 +-
 freeradius/locale/hu_HU/fusiondirectory.po    |  2 +-
 freeradius/locale/id/fusiondirectory.po       |  2 +-
 freeradius/locale/it_IT/fusiondirectory.po    |  2 +-
 freeradius/locale/ja/fusiondirectory.po       |  2 +-
 freeradius/locale/ko/fusiondirectory.po       |  2 +-
 freeradius/locale/lv/fusiondirectory.po       |  2 +-
 freeradius/locale/nb/fusiondirectory.po       |  2 +-
 freeradius/locale/nl/fusiondirectory.po       |  2 +-
 freeradius/locale/pl/fusiondirectory.po       |  2 +-
 freeradius/locale/pt/fusiondirectory.po       |  2 +-
 freeradius/locale/pt_BR/fusiondirectory.po    |  2 +-
 freeradius/locale/ru/fusiondirectory.po       |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 freeradius/locale/sv/fusiondirectory.po       |  2 +-
 freeradius/locale/tr_TR/fusiondirectory.po    |  2 +-
 freeradius/locale/ug/fusiondirectory.po       |  2 +-
 freeradius/locale/vi_VN/fusiondirectory.po    |  2 +-
 freeradius/locale/zh/fusiondirectory.po       |  2 +-
 freeradius/locale/zh_TW/fusiondirectory.po    |  2 +-
 .../locale/af_ZA/fusiondirectory.po           |  2 +-
 fusioninventory/locale/ar/fusiondirectory.po  |  2 +-
 fusioninventory/locale/ca/fusiondirectory.po  |  2 +-
 .../locale/cs_CZ/fusiondirectory.po           |  2 +-
 fusioninventory/locale/de/fusiondirectory.po  |  2 +-
 .../locale/el_GR/fusiondirectory.po           |  2 +-
 fusioninventory/locale/es/fusiondirectory.po  |  2 +-
 .../locale/es_CO/fusiondirectory.po           |  2 +-
 .../locale/es_VE/fusiondirectory.po           |  2 +-
 .../locale/fa_IR/fusiondirectory.po           |  2 +-
 .../locale/fi_FI/fusiondirectory.po           |  2 +-
 fusioninventory/locale/fr/fusiondirectory.po  |  2 +-
 .../locale/hu_HU/fusiondirectory.po           |  2 +-
 fusioninventory/locale/id/fusiondirectory.po  |  2 +-
 .../locale/it_IT/fusiondirectory.po           |  2 +-
 fusioninventory/locale/ja/fusiondirectory.po  |  2 +-
 fusioninventory/locale/ko/fusiondirectory.po  |  2 +-
 fusioninventory/locale/lv/fusiondirectory.po  |  2 +-
 fusioninventory/locale/nb/fusiondirectory.po  |  2 +-
 fusioninventory/locale/nl/fusiondirectory.po  |  2 +-
 fusioninventory/locale/pl/fusiondirectory.po  |  2 +-
 fusioninventory/locale/pt/fusiondirectory.po  |  2 +-
 .../locale/pt_BR/fusiondirectory.po           |  2 +-
 fusioninventory/locale/ru/fusiondirectory.po  |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 fusioninventory/locale/sv/fusiondirectory.po  |  2 +-
 .../locale/tr_TR/fusiondirectory.po           |  2 +-
 fusioninventory/locale/ug/fusiondirectory.po  |  2 +-
 .../locale/vi_VN/fusiondirectory.po           |  2 +-
 fusioninventory/locale/zh/fusiondirectory.po  |  2 +-
 .../locale/zh_TW/fusiondirectory.po           |  2 +-
 gpg/locale/af_ZA/fusiondirectory.po           |  2 +-
 gpg/locale/ar/fusiondirectory.po              |  2 +-
 gpg/locale/ca/fusiondirectory.po              |  2 +-
 gpg/locale/cs_CZ/fusiondirectory.po           |  2 +-
 gpg/locale/de/fusiondirectory.po              |  2 +-
 gpg/locale/el_GR/fusiondirectory.po           |  2 +-
 gpg/locale/es/fusiondirectory.po              |  2 +-
 gpg/locale/es_CO/fusiondirectory.po           |  2 +-
 gpg/locale/es_VE/fusiondirectory.po           |  2 +-
 gpg/locale/fa_IR/fusiondirectory.po           |  2 +-
 gpg/locale/fi_FI/fusiondirectory.po           |  2 +-
 gpg/locale/fr/fusiondirectory.po              |  2 +-
 gpg/locale/hu_HU/fusiondirectory.po           |  2 +-
 gpg/locale/id/fusiondirectory.po              |  2 +-
 gpg/locale/it_IT/fusiondirectory.po           |  2 +-
 gpg/locale/ja/fusiondirectory.po              |  2 +-
 gpg/locale/ko/fusiondirectory.po              |  2 +-
 gpg/locale/lv/fusiondirectory.po              |  2 +-
 gpg/locale/nb/fusiondirectory.po              |  2 +-
 gpg/locale/nl/fusiondirectory.po              |  2 +-
 gpg/locale/pl/fusiondirectory.po              |  2 +-
 gpg/locale/pt/fusiondirectory.po              |  2 +-
 gpg/locale/pt_BR/fusiondirectory.po           |  2 +-
 gpg/locale/ru/fusiondirectory.po              |  2 +-
 gpg/locale/ru@petr1708/fusiondirectory.po     |  2 +-
 gpg/locale/sv/fusiondirectory.po              |  2 +-
 gpg/locale/tr_TR/fusiondirectory.po           |  2 +-
 gpg/locale/ug/fusiondirectory.po              |  2 +-
 gpg/locale/vi_VN/fusiondirectory.po           |  2 +-
 gpg/locale/zh/fusiondirectory.po              |  2 +-
 gpg/locale/zh_TW/fusiondirectory.po           |  2 +-
 ipmi/locale/af_ZA/fusiondirectory.po          |  2 +-
 ipmi/locale/ar/fusiondirectory.po             |  2 +-
 ipmi/locale/ca/fusiondirectory.po             |  2 +-
 ipmi/locale/cs_CZ/fusiondirectory.po          |  2 +-
 ipmi/locale/de/fusiondirectory.po             |  2 +-
 ipmi/locale/el_GR/fusiondirectory.po          |  2 +-
 ipmi/locale/es/fusiondirectory.po             |  2 +-
 ipmi/locale/es_CO/fusiondirectory.po          |  2 +-
 ipmi/locale/es_VE/fusiondirectory.po          |  2 +-
 ipmi/locale/fa_IR/fusiondirectory.po          |  2 +-
 ipmi/locale/fi_FI/fusiondirectory.po          |  2 +-
 ipmi/locale/fr/fusiondirectory.po             |  2 +-
 ipmi/locale/hu_HU/fusiondirectory.po          |  2 +-
 ipmi/locale/id/fusiondirectory.po             |  2 +-
 ipmi/locale/it_IT/fusiondirectory.po          |  2 +-
 ipmi/locale/ja/fusiondirectory.po             |  2 +-
 ipmi/locale/ko/fusiondirectory.po             |  2 +-
 ipmi/locale/lv/fusiondirectory.po             |  2 +-
 ipmi/locale/nb/fusiondirectory.po             |  2 +-
 ipmi/locale/nl/fusiondirectory.po             |  2 +-
 ipmi/locale/pl/fusiondirectory.po             |  2 +-
 ipmi/locale/pt/fusiondirectory.po             |  2 +-
 ipmi/locale/pt_BR/fusiondirectory.po          |  2 +-
 ipmi/locale/ru/fusiondirectory.po             |  2 +-
 ipmi/locale/ru@petr1708/fusiondirectory.po    |  2 +-
 ipmi/locale/sv/fusiondirectory.po             |  2 +-
 ipmi/locale/tr_TR/fusiondirectory.po          |  2 +-
 ipmi/locale/ug/fusiondirectory.po             |  2 +-
 ipmi/locale/vi_VN/fusiondirectory.po          |  2 +-
 ipmi/locale/zh/fusiondirectory.po             |  2 +-
 ipmi/locale/zh_TW/fusiondirectory.po          |  2 +-
 ldapdump/locale/af_ZA/fusiondirectory.po      |  2 +-
 ldapdump/locale/ar/fusiondirectory.po         |  2 +-
 ldapdump/locale/ca/fusiondirectory.po         |  2 +-
 ldapdump/locale/cs_CZ/fusiondirectory.po      |  2 +-
 ldapdump/locale/de/fusiondirectory.po         |  2 +-
 ldapdump/locale/el_GR/fusiondirectory.po      |  2 +-
 ldapdump/locale/es/fusiondirectory.po         |  2 +-
 ldapdump/locale/es_CO/fusiondirectory.po      |  2 +-
 ldapdump/locale/es_VE/fusiondirectory.po      |  2 +-
 ldapdump/locale/fa_IR/fusiondirectory.po      |  2 +-
 ldapdump/locale/fi_FI/fusiondirectory.po      |  2 +-
 ldapdump/locale/fr/fusiondirectory.po         |  2 +-
 ldapdump/locale/hu_HU/fusiondirectory.po      |  2 +-
 ldapdump/locale/id/fusiondirectory.po         |  2 +-
 ldapdump/locale/it_IT/fusiondirectory.po      |  2 +-
 ldapdump/locale/ja/fusiondirectory.po         |  2 +-
 ldapdump/locale/ko/fusiondirectory.po         |  2 +-
 ldapdump/locale/lv/fusiondirectory.po         |  2 +-
 ldapdump/locale/nb/fusiondirectory.po         |  2 +-
 ldapdump/locale/nl/fusiondirectory.po         |  2 +-
 ldapdump/locale/pl/fusiondirectory.po         |  2 +-
 ldapdump/locale/pt/fusiondirectory.po         |  2 +-
 ldapdump/locale/pt_BR/fusiondirectory.po      |  2 +-
 ldapdump/locale/ru/fusiondirectory.po         |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 ldapdump/locale/sv/fusiondirectory.po         |  2 +-
 ldapdump/locale/tr_TR/fusiondirectory.po      |  2 +-
 ldapdump/locale/ug/fusiondirectory.po         |  2 +-
 ldapdump/locale/vi_VN/fusiondirectory.po      |  2 +-
 ldapdump/locale/zh/fusiondirectory.po         |  2 +-
 ldapdump/locale/zh_TW/fusiondirectory.po      |  2 +-
 ldapmanager/locale/af_ZA/fusiondirectory.po   |  2 +-
 ldapmanager/locale/ar/fusiondirectory.po      |  2 +-
 ldapmanager/locale/ca/fusiondirectory.po      |  2 +-
 ldapmanager/locale/cs_CZ/fusiondirectory.po   |  2 +-
 ldapmanager/locale/de/fusiondirectory.po      |  2 +-
 ldapmanager/locale/el_GR/fusiondirectory.po   |  2 +-
 ldapmanager/locale/es/fusiondirectory.po      |  2 +-
 ldapmanager/locale/es_CO/fusiondirectory.po   |  2 +-
 ldapmanager/locale/es_VE/fusiondirectory.po   |  2 +-
 ldapmanager/locale/fa_IR/fusiondirectory.po   |  2 +-
 ldapmanager/locale/fi_FI/fusiondirectory.po   |  2 +-
 ldapmanager/locale/fr/fusiondirectory.po      |  2 +-
 ldapmanager/locale/hu_HU/fusiondirectory.po   |  2 +-
 ldapmanager/locale/id/fusiondirectory.po      |  2 +-
 ldapmanager/locale/it_IT/fusiondirectory.po   |  2 +-
 ldapmanager/locale/ja/fusiondirectory.po      |  2 +-
 ldapmanager/locale/ko/fusiondirectory.po      |  2 +-
 ldapmanager/locale/lv/fusiondirectory.po      |  2 +-
 ldapmanager/locale/nb/fusiondirectory.po      |  2 +-
 ldapmanager/locale/nl/fusiondirectory.po      |  2 +-
 ldapmanager/locale/pl/fusiondirectory.po      |  2 +-
 ldapmanager/locale/pt/fusiondirectory.po      |  2 +-
 ldapmanager/locale/pt_BR/fusiondirectory.po   |  2 +-
 ldapmanager/locale/ru/fusiondirectory.po      |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 ldapmanager/locale/sv/fusiondirectory.po      |  2 +-
 ldapmanager/locale/tr_TR/fusiondirectory.po   |  2 +-
 ldapmanager/locale/ug/fusiondirectory.po      |  2 +-
 ldapmanager/locale/vi_VN/fusiondirectory.po   |  2 +-
 ldapmanager/locale/zh/fusiondirectory.po      |  2 +-
 ldapmanager/locale/zh_TW/fusiondirectory.po   |  2 +-
 mail/locale/af_ZA/fusiondirectory.po          |  6 ++++-
 mail/locale/ar/fusiondirectory.po             |  6 ++++-
 mail/locale/ca/fusiondirectory.po             |  6 ++++-
 mail/locale/cs_CZ/fusiondirectory.po          |  6 ++++-
 mail/locale/de/fusiondirectory.po             |  6 ++++-
 mail/locale/el_GR/fusiondirectory.po          |  6 ++++-
 mail/locale/es/fusiondirectory.po             |  6 ++++-
 mail/locale/es_CO/fusiondirectory.po          |  6 ++++-
 mail/locale/es_VE/fusiondirectory.po          |  6 ++++-
 mail/locale/fa_IR/fusiondirectory.po          |  6 ++++-
 mail/locale/fi_FI/fusiondirectory.po          |  6 ++++-
 mail/locale/fr/fusiondirectory.po             |  6 ++++-
 mail/locale/hu_HU/fusiondirectory.po          |  6 ++++-
 mail/locale/id/fusiondirectory.po             |  6 ++++-
 mail/locale/it_IT/fusiondirectory.po          | 10 ++++---
 mail/locale/ja/fusiondirectory.po             |  6 ++++-
 mail/locale/ko/fusiondirectory.po             | 20 +++++++++-----
 mail/locale/lv/fusiondirectory.po             |  6 ++++-
 mail/locale/nb/fusiondirectory.po             |  6 ++++-
 mail/locale/nl/fusiondirectory.po             |  6 ++++-
 mail/locale/pl/fusiondirectory.po             |  6 ++++-
 mail/locale/pt/fusiondirectory.po             |  6 ++++-
 mail/locale/pt_BR/fusiondirectory.po          |  6 ++++-
 mail/locale/ru/fusiondirectory.po             |  6 ++++-
 mail/locale/ru@petr1708/fusiondirectory.po    |  6 ++++-
 mail/locale/sv/fusiondirectory.po             |  6 ++++-
 mail/locale/tr_TR/fusiondirectory.po          |  6 ++++-
 mail/locale/ug/fusiondirectory.po             |  6 ++++-
 mail/locale/vi_VN/fusiondirectory.po          |  6 ++++-
 mail/locale/zh/fusiondirectory.po             |  6 ++++-
 mail/locale/zh_TW/fusiondirectory.po          |  6 ++++-
 mixedgroups/locale/af_ZA/fusiondirectory.po   |  2 +-
 mixedgroups/locale/ar/fusiondirectory.po      |  2 +-
 mixedgroups/locale/ca/fusiondirectory.po      |  2 +-
 mixedgroups/locale/cs_CZ/fusiondirectory.po   |  2 +-
 mixedgroups/locale/de/fusiondirectory.po      |  2 +-
 mixedgroups/locale/el_GR/fusiondirectory.po   |  2 +-
 mixedgroups/locale/es/fusiondirectory.po      |  2 +-
 mixedgroups/locale/es_CO/fusiondirectory.po   |  2 +-
 mixedgroups/locale/es_VE/fusiondirectory.po   |  2 +-
 mixedgroups/locale/fa_IR/fusiondirectory.po   |  2 +-
 mixedgroups/locale/fi_FI/fusiondirectory.po   |  2 +-
 mixedgroups/locale/fr/fusiondirectory.po      |  2 +-
 mixedgroups/locale/hu_HU/fusiondirectory.po   |  2 +-
 mixedgroups/locale/id/fusiondirectory.po      |  2 +-
 mixedgroups/locale/it_IT/fusiondirectory.po   |  2 +-
 mixedgroups/locale/ja/fusiondirectory.po      |  2 +-
 mixedgroups/locale/ko/fusiondirectory.po      |  2 +-
 mixedgroups/locale/lv/fusiondirectory.po      |  2 +-
 mixedgroups/locale/nb/fusiondirectory.po      |  2 +-
 mixedgroups/locale/nl/fusiondirectory.po      |  2 +-
 mixedgroups/locale/pl/fusiondirectory.po      |  2 +-
 mixedgroups/locale/pt/fusiondirectory.po      |  2 +-
 mixedgroups/locale/pt_BR/fusiondirectory.po   |  2 +-
 mixedgroups/locale/ru/fusiondirectory.po      |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 mixedgroups/locale/sv/fusiondirectory.po      |  2 +-
 mixedgroups/locale/tr_TR/fusiondirectory.po   |  2 +-
 mixedgroups/locale/ug/fusiondirectory.po      |  2 +-
 mixedgroups/locale/vi_VN/fusiondirectory.po   |  2 +-
 mixedgroups/locale/zh/fusiondirectory.po      |  2 +-
 mixedgroups/locale/zh_TW/fusiondirectory.po   |  2 +-
 nagios/locale/af_ZA/fusiondirectory.po        |  2 +-
 nagios/locale/ar/fusiondirectory.po           |  2 +-
 nagios/locale/ca/fusiondirectory.po           |  2 +-
 nagios/locale/cs_CZ/fusiondirectory.po        |  2 +-
 nagios/locale/de/fusiondirectory.po           |  2 +-
 nagios/locale/el_GR/fusiondirectory.po        |  2 +-
 nagios/locale/es/fusiondirectory.po           |  2 +-
 nagios/locale/es_CO/fusiondirectory.po        |  2 +-
 nagios/locale/es_VE/fusiondirectory.po        |  2 +-
 nagios/locale/fa_IR/fusiondirectory.po        |  2 +-
 nagios/locale/fi_FI/fusiondirectory.po        |  2 +-
 nagios/locale/fr/fusiondirectory.po           |  2 +-
 nagios/locale/hu_HU/fusiondirectory.po        |  2 +-
 nagios/locale/id/fusiondirectory.po           |  2 +-
 nagios/locale/it_IT/fusiondirectory.po        |  2 +-
 nagios/locale/ja/fusiondirectory.po           |  2 +-
 nagios/locale/ko/fusiondirectory.po           |  2 +-
 nagios/locale/lv/fusiondirectory.po           |  2 +-
 nagios/locale/nb/fusiondirectory.po           |  2 +-
 nagios/locale/nl/fusiondirectory.po           |  2 +-
 nagios/locale/pl/fusiondirectory.po           |  2 +-
 nagios/locale/pt/fusiondirectory.po           |  2 +-
 nagios/locale/pt_BR/fusiondirectory.po        |  2 +-
 nagios/locale/ru/fusiondirectory.po           |  2 +-
 nagios/locale/ru@petr1708/fusiondirectory.po  |  2 +-
 nagios/locale/sv/fusiondirectory.po           |  2 +-
 nagios/locale/tr_TR/fusiondirectory.po        |  2 +-
 nagios/locale/ug/fusiondirectory.po           |  2 +-
 nagios/locale/vi_VN/fusiondirectory.po        |  2 +-
 nagios/locale/zh/fusiondirectory.po           |  2 +-
 nagios/locale/zh_TW/fusiondirectory.po        |  2 +-
 netgroups/locale/af_ZA/fusiondirectory.po     |  2 +-
 netgroups/locale/ar/fusiondirectory.po        |  2 +-
 netgroups/locale/ca/fusiondirectory.po        |  2 +-
 netgroups/locale/cs_CZ/fusiondirectory.po     |  2 +-
 netgroups/locale/de/fusiondirectory.po        |  2 +-
 netgroups/locale/el_GR/fusiondirectory.po     |  2 +-
 netgroups/locale/es/fusiondirectory.po        |  2 +-
 netgroups/locale/es_CO/fusiondirectory.po     |  2 +-
 netgroups/locale/es_VE/fusiondirectory.po     |  2 +-
 netgroups/locale/fa_IR/fusiondirectory.po     |  2 +-
 netgroups/locale/fi_FI/fusiondirectory.po     |  2 +-
 netgroups/locale/fr/fusiondirectory.po        |  2 +-
 netgroups/locale/hu_HU/fusiondirectory.po     |  2 +-
 netgroups/locale/id/fusiondirectory.po        |  2 +-
 netgroups/locale/it_IT/fusiondirectory.po     |  2 +-
 netgroups/locale/ja/fusiondirectory.po        |  2 +-
 netgroups/locale/ko/fusiondirectory.po        |  2 +-
 netgroups/locale/lv/fusiondirectory.po        |  2 +-
 netgroups/locale/nb/fusiondirectory.po        |  2 +-
 netgroups/locale/nl/fusiondirectory.po        |  2 +-
 netgroups/locale/pl/fusiondirectory.po        |  2 +-
 netgroups/locale/pt/fusiondirectory.po        |  2 +-
 netgroups/locale/pt_BR/fusiondirectory.po     |  2 +-
 netgroups/locale/ru/fusiondirectory.po        |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 netgroups/locale/sv/fusiondirectory.po        |  2 +-
 netgroups/locale/tr_TR/fusiondirectory.po     |  2 +-
 netgroups/locale/ug/fusiondirectory.po        |  2 +-
 netgroups/locale/vi_VN/fusiondirectory.po     |  2 +-
 netgroups/locale/zh/fusiondirectory.po        |  2 +-
 netgroups/locale/zh_TW/fusiondirectory.po     |  2 +-
 newsletter/locale/af_ZA/fusiondirectory.po    |  2 +-
 newsletter/locale/ar/fusiondirectory.po       |  2 +-
 newsletter/locale/ca/fusiondirectory.po       |  2 +-
 newsletter/locale/cs_CZ/fusiondirectory.po    |  2 +-
 newsletter/locale/de/fusiondirectory.po       |  2 +-
 newsletter/locale/el_GR/fusiondirectory.po    |  2 +-
 newsletter/locale/es/fusiondirectory.po       |  2 +-
 newsletter/locale/es_CO/fusiondirectory.po    |  2 +-
 newsletter/locale/es_VE/fusiondirectory.po    |  2 +-
 newsletter/locale/fa_IR/fusiondirectory.po    |  2 +-
 newsletter/locale/fi_FI/fusiondirectory.po    |  2 +-
 newsletter/locale/fr/fusiondirectory.po       |  2 +-
 newsletter/locale/hu_HU/fusiondirectory.po    |  2 +-
 newsletter/locale/id/fusiondirectory.po       |  2 +-
 newsletter/locale/it_IT/fusiondirectory.po    |  2 +-
 newsletter/locale/ja/fusiondirectory.po       |  2 +-
 newsletter/locale/ko/fusiondirectory.po       |  2 +-
 newsletter/locale/lv/fusiondirectory.po       |  2 +-
 newsletter/locale/nb/fusiondirectory.po       |  2 +-
 newsletter/locale/nl/fusiondirectory.po       |  2 +-
 newsletter/locale/pl/fusiondirectory.po       |  2 +-
 newsletter/locale/pt/fusiondirectory.po       |  2 +-
 newsletter/locale/pt_BR/fusiondirectory.po    |  2 +-
 newsletter/locale/ru/fusiondirectory.po       |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 newsletter/locale/sv/fusiondirectory.po       |  2 +-
 newsletter/locale/tr_TR/fusiondirectory.po    |  2 +-
 newsletter/locale/ug/fusiondirectory.po       |  2 +-
 newsletter/locale/vi_VN/fusiondirectory.po    |  2 +-
 newsletter/locale/zh/fusiondirectory.po       |  2 +-
 newsletter/locale/zh_TW/fusiondirectory.po    |  2 +-
 opsi/locale/af_ZA/fusiondirectory.po          |  2 +-
 opsi/locale/ar/fusiondirectory.po             |  2 +-
 opsi/locale/ca/fusiondirectory.po             |  2 +-
 opsi/locale/cs_CZ/fusiondirectory.po          |  2 +-
 opsi/locale/de/fusiondirectory.po             |  2 +-
 opsi/locale/el_GR/fusiondirectory.po          |  2 +-
 opsi/locale/es/fusiondirectory.po             |  2 +-
 opsi/locale/es_CO/fusiondirectory.po          |  2 +-
 opsi/locale/es_VE/fusiondirectory.po          |  2 +-
 opsi/locale/fa_IR/fusiondirectory.po          |  2 +-
 opsi/locale/fi_FI/fusiondirectory.po          |  2 +-
 opsi/locale/fr/fusiondirectory.po             |  2 +-
 opsi/locale/hu_HU/fusiondirectory.po          |  2 +-
 opsi/locale/id/fusiondirectory.po             |  2 +-
 opsi/locale/it_IT/fusiondirectory.po          |  2 +-
 opsi/locale/ja/fusiondirectory.po             |  2 +-
 opsi/locale/ko/fusiondirectory.po             |  2 +-
 opsi/locale/lv/fusiondirectory.po             |  2 +-
 opsi/locale/nb/fusiondirectory.po             |  2 +-
 opsi/locale/nl/fusiondirectory.po             |  2 +-
 opsi/locale/pl/fusiondirectory.po             |  2 +-
 opsi/locale/pt/fusiondirectory.po             |  2 +-
 opsi/locale/pt_BR/fusiondirectory.po          |  2 +-
 opsi/locale/ru/fusiondirectory.po             |  2 +-
 opsi/locale/ru@petr1708/fusiondirectory.po    |  2 +-
 opsi/locale/sv/fusiondirectory.po             |  2 +-
 opsi/locale/tr_TR/fusiondirectory.po          |  2 +-
 opsi/locale/ug/fusiondirectory.po             |  2 +-
 opsi/locale/vi_VN/fusiondirectory.po          |  2 +-
 opsi/locale/zh/fusiondirectory.po             |  2 +-
 opsi/locale/zh_TW/fusiondirectory.po          |  2 +-
 personal/locale/af_ZA/fusiondirectory.po      |  2 +-
 personal/locale/ar/fusiondirectory.po         |  2 +-
 personal/locale/ca/fusiondirectory.po         |  2 +-
 personal/locale/cs_CZ/fusiondirectory.po      |  2 +-
 personal/locale/de/fusiondirectory.po         |  2 +-
 personal/locale/el_GR/fusiondirectory.po      |  2 +-
 personal/locale/es/fusiondirectory.po         |  2 +-
 personal/locale/es_CO/fusiondirectory.po      |  2 +-
 personal/locale/es_VE/fusiondirectory.po      |  2 +-
 personal/locale/fa_IR/fusiondirectory.po      |  2 +-
 personal/locale/fi_FI/fusiondirectory.po      |  2 +-
 personal/locale/fr/fusiondirectory.po         |  2 +-
 personal/locale/hu_HU/fusiondirectory.po      |  2 +-
 personal/locale/id/fusiondirectory.po         |  2 +-
 personal/locale/it_IT/fusiondirectory.po      |  6 ++---
 personal/locale/ja/fusiondirectory.po         |  2 +-
 personal/locale/ko/fusiondirectory.po         |  8 +++---
 personal/locale/lv/fusiondirectory.po         |  2 +-
 personal/locale/nb/fusiondirectory.po         |  2 +-
 personal/locale/nl/fusiondirectory.po         |  2 +-
 personal/locale/pl/fusiondirectory.po         |  2 +-
 personal/locale/pt/fusiondirectory.po         |  2 +-
 personal/locale/pt_BR/fusiondirectory.po      |  2 +-
 personal/locale/ru/fusiondirectory.po         |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 personal/locale/sv/fusiondirectory.po         |  2 +-
 personal/locale/tr_TR/fusiondirectory.po      |  2 +-
 personal/locale/ug/fusiondirectory.po         |  2 +-
 personal/locale/vi_VN/fusiondirectory.po      |  2 +-
 personal/locale/zh/fusiondirectory.po         |  2 +-
 personal/locale/zh_TW/fusiondirectory.po      |  2 +-
 posix/locale/af_ZA/fusiondirectory.po         |  2 +-
 posix/locale/ar/fusiondirectory.po            |  2 +-
 posix/locale/ca/fusiondirectory.po            |  2 +-
 posix/locale/cs_CZ/fusiondirectory.po         |  2 +-
 posix/locale/de/fusiondirectory.po            |  2 +-
 posix/locale/el_GR/fusiondirectory.po         |  2 +-
 posix/locale/es/fusiondirectory.po            |  2 +-
 posix/locale/es_CO/fusiondirectory.po         |  2 +-
 posix/locale/es_VE/fusiondirectory.po         |  2 +-
 posix/locale/fa_IR/fusiondirectory.po         |  2 +-
 posix/locale/fi_FI/fusiondirectory.po         |  2 +-
 posix/locale/fr/fusiondirectory.po            |  2 +-
 posix/locale/hu_HU/fusiondirectory.po         |  2 +-
 posix/locale/id/fusiondirectory.po            |  2 +-
 posix/locale/it_IT/fusiondirectory.po         |  2 +-
 posix/locale/ja/fusiondirectory.po            |  2 +-
 posix/locale/ko/fusiondirectory.po            | 15 ++++++-----
 posix/locale/lv/fusiondirectory.po            |  2 +-
 posix/locale/nb/fusiondirectory.po            |  2 +-
 posix/locale/nl/fusiondirectory.po            |  2 +-
 posix/locale/pl/fusiondirectory.po            |  2 +-
 posix/locale/pt/fusiondirectory.po            |  2 +-
 posix/locale/pt_BR/fusiondirectory.po         |  2 +-
 posix/locale/ru/fusiondirectory.po            |  2 +-
 posix/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 posix/locale/sv/fusiondirectory.po            |  2 +-
 posix/locale/tr_TR/fusiondirectory.po         |  2 +-
 posix/locale/ug/fusiondirectory.po            |  2 +-
 posix/locale/vi_VN/fusiondirectory.po         |  2 +-
 posix/locale/zh/fusiondirectory.po            |  2 +-
 posix/locale/zh_TW/fusiondirectory.po         |  2 +-
 postfix/locale/af_ZA/fusiondirectory.po       |  2 +-
 postfix/locale/ar/fusiondirectory.po          |  2 +-
 postfix/locale/ca/fusiondirectory.po          |  2 +-
 postfix/locale/cs_CZ/fusiondirectory.po       |  2 +-
 postfix/locale/de/fusiondirectory.po          |  2 +-
 postfix/locale/el_GR/fusiondirectory.po       |  2 +-
 postfix/locale/es/fusiondirectory.po          |  2 +-
 postfix/locale/es_CO/fusiondirectory.po       |  2 +-
 postfix/locale/es_VE/fusiondirectory.po       |  2 +-
 postfix/locale/fa_IR/fusiondirectory.po       |  2 +-
 postfix/locale/fi_FI/fusiondirectory.po       |  2 +-
 postfix/locale/fr/fusiondirectory.po          |  2 +-
 postfix/locale/hu_HU/fusiondirectory.po       |  2 +-
 postfix/locale/id/fusiondirectory.po          |  2 +-
 postfix/locale/it_IT/fusiondirectory.po       |  2 +-
 postfix/locale/ja/fusiondirectory.po          |  2 +-
 postfix/locale/ko/fusiondirectory.po          |  2 +-
 postfix/locale/lv/fusiondirectory.po          |  2 +-
 postfix/locale/nb/fusiondirectory.po          |  2 +-
 postfix/locale/nl/fusiondirectory.po          |  2 +-
 postfix/locale/pl/fusiondirectory.po          |  2 +-
 postfix/locale/pt/fusiondirectory.po          |  2 +-
 postfix/locale/pt_BR/fusiondirectory.po       |  2 +-
 postfix/locale/ru/fusiondirectory.po          |  2 +-
 postfix/locale/ru@petr1708/fusiondirectory.po |  2 +-
 postfix/locale/sv/fusiondirectory.po          |  2 +-
 postfix/locale/tr_TR/fusiondirectory.po       |  2 +-
 postfix/locale/ug/fusiondirectory.po          |  2 +-
 postfix/locale/vi_VN/fusiondirectory.po       |  2 +-
 postfix/locale/zh/fusiondirectory.po          |  2 +-
 postfix/locale/zh_TW/fusiondirectory.po       |  2 +-
 ppolicy/locale/af_ZA/fusiondirectory.po       |  2 +-
 ppolicy/locale/ar/fusiondirectory.po          |  2 +-
 ppolicy/locale/ca/fusiondirectory.po          |  2 +-
 ppolicy/locale/cs_CZ/fusiondirectory.po       |  2 +-
 ppolicy/locale/de/fusiondirectory.po          |  2 +-
 ppolicy/locale/el_GR/fusiondirectory.po       |  2 +-
 ppolicy/locale/es/fusiondirectory.po          |  2 +-
 ppolicy/locale/es_CO/fusiondirectory.po       |  2 +-
 ppolicy/locale/es_VE/fusiondirectory.po       |  2 +-
 ppolicy/locale/fa_IR/fusiondirectory.po       |  2 +-
 ppolicy/locale/fi_FI/fusiondirectory.po       |  2 +-
 ppolicy/locale/fr/fusiondirectory.po          |  2 +-
 ppolicy/locale/hu_HU/fusiondirectory.po       |  2 +-
 ppolicy/locale/id/fusiondirectory.po          |  2 +-
 ppolicy/locale/it_IT/fusiondirectory.po       |  2 +-
 ppolicy/locale/ja/fusiondirectory.po          |  2 +-
 ppolicy/locale/ko/fusiondirectory.po          |  8 +++---
 ppolicy/locale/lv/fusiondirectory.po          |  2 +-
 ppolicy/locale/nb/fusiondirectory.po          |  2 +-
 ppolicy/locale/nl/fusiondirectory.po          |  2 +-
 ppolicy/locale/pl/fusiondirectory.po          |  2 +-
 ppolicy/locale/pt/fusiondirectory.po          |  2 +-
 ppolicy/locale/pt_BR/fusiondirectory.po       |  2 +-
 ppolicy/locale/ru/fusiondirectory.po          |  2 +-
 ppolicy/locale/ru@petr1708/fusiondirectory.po |  2 +-
 ppolicy/locale/sv/fusiondirectory.po          |  2 +-
 ppolicy/locale/tr_TR/fusiondirectory.po       |  2 +-
 ppolicy/locale/ug/fusiondirectory.po          |  2 +-
 ppolicy/locale/vi_VN/fusiondirectory.po       |  2 +-
 ppolicy/locale/zh/fusiondirectory.po          |  2 +-
 ppolicy/locale/zh_TW/fusiondirectory.po       |  2 +-
 puppet/locale/af_ZA/fusiondirectory.po        |  2 +-
 puppet/locale/ar/fusiondirectory.po           |  2 +-
 puppet/locale/ca/fusiondirectory.po           |  2 +-
 puppet/locale/cs_CZ/fusiondirectory.po        |  2 +-
 puppet/locale/de/fusiondirectory.po           |  2 +-
 puppet/locale/el_GR/fusiondirectory.po        |  2 +-
 puppet/locale/es/fusiondirectory.po           |  2 +-
 puppet/locale/es_CO/fusiondirectory.po        |  2 +-
 puppet/locale/es_VE/fusiondirectory.po        |  2 +-
 puppet/locale/fa_IR/fusiondirectory.po        |  2 +-
 puppet/locale/fi_FI/fusiondirectory.po        |  2 +-
 puppet/locale/fr/fusiondirectory.po           |  2 +-
 puppet/locale/hu_HU/fusiondirectory.po        |  2 +-
 puppet/locale/id/fusiondirectory.po           |  2 +-
 puppet/locale/it_IT/fusiondirectory.po        |  2 +-
 puppet/locale/ja/fusiondirectory.po           |  2 +-
 puppet/locale/ko/fusiondirectory.po           |  2 +-
 puppet/locale/lv/fusiondirectory.po           |  2 +-
 puppet/locale/nb/fusiondirectory.po           |  2 +-
 puppet/locale/nl/fusiondirectory.po           |  2 +-
 puppet/locale/pl/fusiondirectory.po           |  2 +-
 puppet/locale/pt/fusiondirectory.po           |  2 +-
 puppet/locale/pt_BR/fusiondirectory.po        |  2 +-
 puppet/locale/ru/fusiondirectory.po           |  2 +-
 puppet/locale/ru@petr1708/fusiondirectory.po  |  2 +-
 puppet/locale/sv/fusiondirectory.po           |  2 +-
 puppet/locale/tr_TR/fusiondirectory.po        |  2 +-
 puppet/locale/ug/fusiondirectory.po           |  2 +-
 puppet/locale/vi_VN/fusiondirectory.po        |  2 +-
 puppet/locale/zh/fusiondirectory.po           |  2 +-
 puppet/locale/zh_TW/fusiondirectory.po        |  2 +-
 pureftpd/locale/af_ZA/fusiondirectory.po      |  2 +-
 pureftpd/locale/ar/fusiondirectory.po         |  2 +-
 pureftpd/locale/ca/fusiondirectory.po         |  2 +-
 pureftpd/locale/cs_CZ/fusiondirectory.po      |  2 +-
 pureftpd/locale/de/fusiondirectory.po         |  2 +-
 pureftpd/locale/el_GR/fusiondirectory.po      |  2 +-
 pureftpd/locale/es/fusiondirectory.po         |  2 +-
 pureftpd/locale/es_CO/fusiondirectory.po      |  2 +-
 pureftpd/locale/es_VE/fusiondirectory.po      |  2 +-
 pureftpd/locale/fa_IR/fusiondirectory.po      |  2 +-
 pureftpd/locale/fi_FI/fusiondirectory.po      |  2 +-
 pureftpd/locale/fr/fusiondirectory.po         |  2 +-
 pureftpd/locale/hu_HU/fusiondirectory.po      |  2 +-
 pureftpd/locale/id/fusiondirectory.po         |  2 +-
 pureftpd/locale/it_IT/fusiondirectory.po      |  2 +-
 pureftpd/locale/ja/fusiondirectory.po         |  2 +-
 pureftpd/locale/ko/fusiondirectory.po         |  2 +-
 pureftpd/locale/lv/fusiondirectory.po         |  2 +-
 pureftpd/locale/nb/fusiondirectory.po         |  2 +-
 pureftpd/locale/nl/fusiondirectory.po         |  2 +-
 pureftpd/locale/pl/fusiondirectory.po         |  2 +-
 pureftpd/locale/pt/fusiondirectory.po         |  2 +-
 pureftpd/locale/pt_BR/fusiondirectory.po      |  2 +-
 pureftpd/locale/ru/fusiondirectory.po         |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 pureftpd/locale/sv/fusiondirectory.po         |  2 +-
 pureftpd/locale/tr_TR/fusiondirectory.po      |  2 +-
 pureftpd/locale/ug/fusiondirectory.po         |  2 +-
 pureftpd/locale/vi_VN/fusiondirectory.po      |  2 +-
 pureftpd/locale/zh/fusiondirectory.po         |  2 +-
 pureftpd/locale/zh_TW/fusiondirectory.po      |  2 +-
 quota/locale/af_ZA/fusiondirectory.po         |  2 +-
 quota/locale/ar/fusiondirectory.po            |  2 +-
 quota/locale/ca/fusiondirectory.po            |  2 +-
 quota/locale/cs_CZ/fusiondirectory.po         |  2 +-
 quota/locale/de/fusiondirectory.po            |  2 +-
 quota/locale/el_GR/fusiondirectory.po         |  2 +-
 quota/locale/es/fusiondirectory.po            |  2 +-
 quota/locale/es_CO/fusiondirectory.po         |  2 +-
 quota/locale/es_VE/fusiondirectory.po         |  2 +-
 quota/locale/fa_IR/fusiondirectory.po         |  2 +-
 quota/locale/fi_FI/fusiondirectory.po         |  2 +-
 quota/locale/fr/fusiondirectory.po            |  2 +-
 quota/locale/hu_HU/fusiondirectory.po         |  2 +-
 quota/locale/id/fusiondirectory.po            |  2 +-
 quota/locale/it_IT/fusiondirectory.po         |  2 +-
 quota/locale/ja/fusiondirectory.po            |  2 +-
 quota/locale/ko/fusiondirectory.po            |  2 +-
 quota/locale/lv/fusiondirectory.po            |  2 +-
 quota/locale/nb/fusiondirectory.po            |  2 +-
 quota/locale/nl/fusiondirectory.po            |  2 +-
 quota/locale/pl/fusiondirectory.po            |  2 +-
 quota/locale/pt/fusiondirectory.po            |  2 +-
 quota/locale/pt_BR/fusiondirectory.po         |  2 +-
 quota/locale/ru/fusiondirectory.po            |  2 +-
 quota/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 quota/locale/sv/fusiondirectory.po            |  2 +-
 quota/locale/tr_TR/fusiondirectory.po         |  2 +-
 quota/locale/ug/fusiondirectory.po            |  2 +-
 quota/locale/vi_VN/fusiondirectory.po         |  2 +-
 quota/locale/zh/fusiondirectory.po            |  2 +-
 quota/locale/zh_TW/fusiondirectory.po         |  2 +-
 .../locale/af_ZA/fusiondirectory.po           |  2 +-
 renater-partage/locale/ar/fusiondirectory.po  |  2 +-
 renater-partage/locale/ca/fusiondirectory.po  |  2 +-
 .../locale/cs_CZ/fusiondirectory.po           |  2 +-
 renater-partage/locale/de/fusiondirectory.po  |  2 +-
 .../locale/el_GR/fusiondirectory.po           |  2 +-
 renater-partage/locale/es/fusiondirectory.po  |  2 +-
 .../locale/es_CO/fusiondirectory.po           |  2 +-
 .../locale/es_VE/fusiondirectory.po           |  2 +-
 .../locale/fa_IR/fusiondirectory.po           |  2 +-
 .../locale/fi_FI/fusiondirectory.po           |  2 +-
 renater-partage/locale/fr/fusiondirectory.po  |  2 +-
 .../locale/hu_HU/fusiondirectory.po           |  2 +-
 renater-partage/locale/id/fusiondirectory.po  |  2 +-
 .../locale/it_IT/fusiondirectory.po           |  2 +-
 renater-partage/locale/ja/fusiondirectory.po  |  2 +-
 renater-partage/locale/ko/fusiondirectory.po  |  8 +++---
 renater-partage/locale/lv/fusiondirectory.po  |  2 +-
 renater-partage/locale/nb/fusiondirectory.po  |  2 +-
 renater-partage/locale/nl/fusiondirectory.po  |  2 +-
 renater-partage/locale/pl/fusiondirectory.po  |  2 +-
 renater-partage/locale/pt/fusiondirectory.po  |  2 +-
 .../locale/pt_BR/fusiondirectory.po           |  2 +-
 renater-partage/locale/ru/fusiondirectory.po  |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 renater-partage/locale/sv/fusiondirectory.po  |  2 +-
 .../locale/tr_TR/fusiondirectory.po           |  2 +-
 renater-partage/locale/ug/fusiondirectory.po  |  2 +-
 .../locale/vi_VN/fusiondirectory.po           |  2 +-
 renater-partage/locale/zh/fusiondirectory.po  |  2 +-
 .../locale/zh_TW/fusiondirectory.po           |  2 +-
 repository/locale/af_ZA/fusiondirectory.po    |  2 +-
 repository/locale/ar/fusiondirectory.po       |  2 +-
 repository/locale/ca/fusiondirectory.po       |  2 +-
 repository/locale/cs_CZ/fusiondirectory.po    |  2 +-
 repository/locale/de/fusiondirectory.po       |  2 +-
 repository/locale/el_GR/fusiondirectory.po    |  2 +-
 repository/locale/es/fusiondirectory.po       |  2 +-
 repository/locale/es_CO/fusiondirectory.po    |  2 +-
 repository/locale/es_VE/fusiondirectory.po    |  2 +-
 repository/locale/fa_IR/fusiondirectory.po    |  2 +-
 repository/locale/fi_FI/fusiondirectory.po    |  2 +-
 repository/locale/fr/fusiondirectory.po       |  2 +-
 repository/locale/hu_HU/fusiondirectory.po    |  2 +-
 repository/locale/id/fusiondirectory.po       |  2 +-
 repository/locale/it_IT/fusiondirectory.po    |  2 +-
 repository/locale/ja/fusiondirectory.po       |  2 +-
 repository/locale/ko/fusiondirectory.po       |  2 +-
 repository/locale/lv/fusiondirectory.po       |  2 +-
 repository/locale/nb/fusiondirectory.po       |  2 +-
 repository/locale/nl/fusiondirectory.po       |  2 +-
 repository/locale/pl/fusiondirectory.po       |  2 +-
 repository/locale/pt/fusiondirectory.po       |  2 +-
 repository/locale/pt_BR/fusiondirectory.po    |  2 +-
 repository/locale/ru/fusiondirectory.po       |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 repository/locale/sv/fusiondirectory.po       |  2 +-
 repository/locale/tr_TR/fusiondirectory.po    |  2 +-
 repository/locale/ug/fusiondirectory.po       |  2 +-
 repository/locale/vi_VN/fusiondirectory.po    |  2 +-
 repository/locale/zh/fusiondirectory.po       |  2 +-
 repository/locale/zh_TW/fusiondirectory.po    |  2 +-
 samba/locale/af_ZA/fusiondirectory.po         |  2 +-
 samba/locale/ar/fusiondirectory.po            |  2 +-
 samba/locale/ca/fusiondirectory.po            |  2 +-
 samba/locale/cs_CZ/fusiondirectory.po         |  2 +-
 samba/locale/de/fusiondirectory.po            |  2 +-
 samba/locale/el_GR/fusiondirectory.po         |  2 +-
 samba/locale/es/fusiondirectory.po            |  2 +-
 samba/locale/es_CO/fusiondirectory.po         |  2 +-
 samba/locale/es_VE/fusiondirectory.po         |  2 +-
 samba/locale/fa_IR/fusiondirectory.po         |  2 +-
 samba/locale/fi_FI/fusiondirectory.po         |  2 +-
 samba/locale/fr/fusiondirectory.po            |  2 +-
 samba/locale/hu_HU/fusiondirectory.po         |  2 +-
 samba/locale/id/fusiondirectory.po            |  2 +-
 samba/locale/it_IT/fusiondirectory.po         |  2 +-
 samba/locale/ja/fusiondirectory.po            |  2 +-
 samba/locale/ko/fusiondirectory.po            |  2 +-
 samba/locale/lv/fusiondirectory.po            |  2 +-
 samba/locale/nb/fusiondirectory.po            |  2 +-
 samba/locale/nl/fusiondirectory.po            |  2 +-
 samba/locale/pl/fusiondirectory.po            |  2 +-
 samba/locale/pt/fusiondirectory.po            |  2 +-
 samba/locale/pt_BR/fusiondirectory.po         |  2 +-
 samba/locale/ru/fusiondirectory.po            |  2 +-
 samba/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 samba/locale/sv/fusiondirectory.po            |  2 +-
 samba/locale/tr_TR/fusiondirectory.po         |  2 +-
 samba/locale/ug/fusiondirectory.po            |  2 +-
 samba/locale/vi_VN/fusiondirectory.po         |  2 +-
 samba/locale/zh/fusiondirectory.po            |  2 +-
 samba/locale/zh_TW/fusiondirectory.po         |  2 +-
 sinaps/locale/af_ZA/fusiondirectory.po        |  2 +-
 sinaps/locale/ar/fusiondirectory.po           |  2 +-
 sinaps/locale/ca/fusiondirectory.po           |  2 +-
 sinaps/locale/cs_CZ/fusiondirectory.po        |  2 +-
 sinaps/locale/de/fusiondirectory.po           |  2 +-
 sinaps/locale/el_GR/fusiondirectory.po        |  2 +-
 sinaps/locale/es/fusiondirectory.po           |  2 +-
 sinaps/locale/es_CO/fusiondirectory.po        |  2 +-
 sinaps/locale/es_VE/fusiondirectory.po        |  2 +-
 sinaps/locale/fa_IR/fusiondirectory.po        |  2 +-
 sinaps/locale/fi_FI/fusiondirectory.po        |  2 +-
 sinaps/locale/fr/fusiondirectory.po           |  6 ++---
 sinaps/locale/hu_HU/fusiondirectory.po        |  2 +-
 sinaps/locale/id/fusiondirectory.po           |  2 +-
 sinaps/locale/it_IT/fusiondirectory.po        |  6 ++---
 sinaps/locale/ja/fusiondirectory.po           |  2 +-
 sinaps/locale/ko/fusiondirectory.po           |  2 +-
 sinaps/locale/lv/fusiondirectory.po           |  2 +-
 sinaps/locale/nb/fusiondirectory.po           |  2 +-
 sinaps/locale/nl/fusiondirectory.po           |  2 +-
 sinaps/locale/pl/fusiondirectory.po           |  2 +-
 sinaps/locale/pt/fusiondirectory.po           |  2 +-
 sinaps/locale/pt_BR/fusiondirectory.po        |  2 +-
 sinaps/locale/ru/fusiondirectory.po           |  2 +-
 sinaps/locale/ru@petr1708/fusiondirectory.po  |  2 +-
 sinaps/locale/sv/fusiondirectory.po           |  2 +-
 sinaps/locale/tr_TR/fusiondirectory.po        |  2 +-
 sinaps/locale/ug/fusiondirectory.po           |  2 +-
 sinaps/locale/vi_VN/fusiondirectory.po        |  2 +-
 sinaps/locale/zh/fusiondirectory.po           |  2 +-
 sinaps/locale/zh_TW/fusiondirectory.po        |  2 +-
 sogo/locale/af_ZA/fusiondirectory.po          |  2 +-
 sogo/locale/ar/fusiondirectory.po             |  2 +-
 sogo/locale/ca/fusiondirectory.po             |  2 +-
 sogo/locale/cs_CZ/fusiondirectory.po          |  2 +-
 sogo/locale/de/fusiondirectory.po             |  2 +-
 sogo/locale/el_GR/fusiondirectory.po          |  2 +-
 sogo/locale/es/fusiondirectory.po             |  2 +-
 sogo/locale/es_CO/fusiondirectory.po          |  2 +-
 sogo/locale/es_VE/fusiondirectory.po          |  2 +-
 sogo/locale/fa_IR/fusiondirectory.po          |  2 +-
 sogo/locale/fi_FI/fusiondirectory.po          |  2 +-
 sogo/locale/fr/fusiondirectory.po             |  2 +-
 sogo/locale/hu_HU/fusiondirectory.po          |  2 +-
 sogo/locale/id/fusiondirectory.po             |  2 +-
 sogo/locale/it_IT/fusiondirectory.po          |  2 +-
 sogo/locale/ja/fusiondirectory.po             |  2 +-
 sogo/locale/ko/fusiondirectory.po             |  2 +-
 sogo/locale/lv/fusiondirectory.po             |  2 +-
 sogo/locale/nb/fusiondirectory.po             |  2 +-
 sogo/locale/nl/fusiondirectory.po             |  2 +-
 sogo/locale/pl/fusiondirectory.po             |  2 +-
 sogo/locale/pt/fusiondirectory.po             |  2 +-
 sogo/locale/pt_BR/fusiondirectory.po          |  2 +-
 sogo/locale/ru/fusiondirectory.po             |  2 +-
 sogo/locale/ru@petr1708/fusiondirectory.po    |  2 +-
 sogo/locale/sv/fusiondirectory.po             |  2 +-
 sogo/locale/tr_TR/fusiondirectory.po          |  2 +-
 sogo/locale/ug/fusiondirectory.po             |  2 +-
 sogo/locale/vi_VN/fusiondirectory.po          |  2 +-
 sogo/locale/zh/fusiondirectory.po             |  2 +-
 sogo/locale/zh_TW/fusiondirectory.po          |  2 +-
 spamassassin/locale/af_ZA/fusiondirectory.po  |  2 +-
 spamassassin/locale/ar/fusiondirectory.po     |  2 +-
 spamassassin/locale/ca/fusiondirectory.po     |  2 +-
 spamassassin/locale/cs_CZ/fusiondirectory.po  |  2 +-
 spamassassin/locale/de/fusiondirectory.po     |  2 +-
 spamassassin/locale/el_GR/fusiondirectory.po  |  2 +-
 spamassassin/locale/es/fusiondirectory.po     |  2 +-
 spamassassin/locale/es_CO/fusiondirectory.po  |  2 +-
 spamassassin/locale/es_VE/fusiondirectory.po  |  2 +-
 spamassassin/locale/fa_IR/fusiondirectory.po  |  2 +-
 spamassassin/locale/fi_FI/fusiondirectory.po  |  2 +-
 spamassassin/locale/fr/fusiondirectory.po     |  2 +-
 spamassassin/locale/hu_HU/fusiondirectory.po  |  2 +-
 spamassassin/locale/id/fusiondirectory.po     |  2 +-
 spamassassin/locale/it_IT/fusiondirectory.po  |  2 +-
 spamassassin/locale/ja/fusiondirectory.po     |  2 +-
 spamassassin/locale/ko/fusiondirectory.po     |  2 +-
 spamassassin/locale/lv/fusiondirectory.po     |  2 +-
 spamassassin/locale/nb/fusiondirectory.po     |  2 +-
 spamassassin/locale/nl/fusiondirectory.po     |  2 +-
 spamassassin/locale/pl/fusiondirectory.po     |  2 +-
 spamassassin/locale/pt/fusiondirectory.po     |  2 +-
 spamassassin/locale/pt_BR/fusiondirectory.po  |  2 +-
 spamassassin/locale/ru/fusiondirectory.po     |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 spamassassin/locale/sv/fusiondirectory.po     |  2 +-
 spamassassin/locale/tr_TR/fusiondirectory.po  |  2 +-
 spamassassin/locale/ug/fusiondirectory.po     |  2 +-
 spamassassin/locale/vi_VN/fusiondirectory.po  |  2 +-
 spamassassin/locale/zh/fusiondirectory.po     |  2 +-
 spamassassin/locale/zh_TW/fusiondirectory.po  |  2 +-
 squid/locale/af_ZA/fusiondirectory.po         |  2 +-
 squid/locale/ar/fusiondirectory.po            |  2 +-
 squid/locale/ca/fusiondirectory.po            |  2 +-
 squid/locale/cs_CZ/fusiondirectory.po         |  2 +-
 squid/locale/de/fusiondirectory.po            |  2 +-
 squid/locale/el_GR/fusiondirectory.po         |  2 +-
 squid/locale/es/fusiondirectory.po            |  2 +-
 squid/locale/es_CO/fusiondirectory.po         |  2 +-
 squid/locale/es_VE/fusiondirectory.po         |  2 +-
 squid/locale/fa_IR/fusiondirectory.po         |  2 +-
 squid/locale/fi_FI/fusiondirectory.po         |  2 +-
 squid/locale/fr/fusiondirectory.po            |  2 +-
 squid/locale/hu_HU/fusiondirectory.po         |  2 +-
 squid/locale/id/fusiondirectory.po            |  2 +-
 squid/locale/it_IT/fusiondirectory.po         |  2 +-
 squid/locale/ja/fusiondirectory.po            |  2 +-
 squid/locale/ko/fusiondirectory.po            |  2 +-
 squid/locale/lv/fusiondirectory.po            |  2 +-
 squid/locale/nb/fusiondirectory.po            |  2 +-
 squid/locale/nl/fusiondirectory.po            |  2 +-
 squid/locale/pl/fusiondirectory.po            |  2 +-
 squid/locale/pt/fusiondirectory.po            |  2 +-
 squid/locale/pt_BR/fusiondirectory.po         |  2 +-
 squid/locale/ru/fusiondirectory.po            |  2 +-
 squid/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 squid/locale/sv/fusiondirectory.po            |  2 +-
 squid/locale/tr_TR/fusiondirectory.po         |  2 +-
 squid/locale/ug/fusiondirectory.po            |  2 +-
 squid/locale/vi_VN/fusiondirectory.po         |  2 +-
 squid/locale/zh/fusiondirectory.po            |  2 +-
 squid/locale/zh_TW/fusiondirectory.po         |  2 +-
 ssh/locale/af_ZA/fusiondirectory.po           |  2 +-
 ssh/locale/ar/fusiondirectory.po              |  2 +-
 ssh/locale/ca/fusiondirectory.po              |  2 +-
 ssh/locale/cs_CZ/fusiondirectory.po           |  2 +-
 ssh/locale/de/fusiondirectory.po              |  2 +-
 ssh/locale/el_GR/fusiondirectory.po           |  2 +-
 ssh/locale/es/fusiondirectory.po              |  2 +-
 ssh/locale/es_CO/fusiondirectory.po           |  2 +-
 ssh/locale/es_VE/fusiondirectory.po           |  2 +-
 ssh/locale/fa_IR/fusiondirectory.po           |  2 +-
 ssh/locale/fi_FI/fusiondirectory.po           |  2 +-
 ssh/locale/fr/fusiondirectory.po              |  2 +-
 ssh/locale/hu_HU/fusiondirectory.po           |  2 +-
 ssh/locale/id/fusiondirectory.po              |  2 +-
 ssh/locale/it_IT/fusiondirectory.po           |  2 +-
 ssh/locale/ja/fusiondirectory.po              |  2 +-
 ssh/locale/ko/fusiondirectory.po              |  2 +-
 ssh/locale/lv/fusiondirectory.po              |  2 +-
 ssh/locale/nb/fusiondirectory.po              |  2 +-
 ssh/locale/nl/fusiondirectory.po              |  2 +-
 ssh/locale/pl/fusiondirectory.po              |  2 +-
 ssh/locale/pt/fusiondirectory.po              |  2 +-
 ssh/locale/pt_BR/fusiondirectory.po           |  2 +-
 ssh/locale/ru/fusiondirectory.po              |  2 +-
 ssh/locale/ru@petr1708/fusiondirectory.po     |  2 +-
 ssh/locale/sv/fusiondirectory.po              |  2 +-
 ssh/locale/tr_TR/fusiondirectory.po           |  2 +-
 ssh/locale/ug/fusiondirectory.po              |  2 +-
 ssh/locale/vi_VN/fusiondirectory.po           |  2 +-
 ssh/locale/zh/fusiondirectory.po              |  2 +-
 ssh/locale/zh_TW/fusiondirectory.po           |  2 +-
 .../locale/af_ZA/fusiondirectory.po           |  2 +-
 subcontracting/locale/ar/fusiondirectory.po   |  2 +-
 subcontracting/locale/ca/fusiondirectory.po   |  2 +-
 .../locale/cs_CZ/fusiondirectory.po           |  2 +-
 subcontracting/locale/de/fusiondirectory.po   |  2 +-
 .../locale/el_GR/fusiondirectory.po           |  2 +-
 subcontracting/locale/es/fusiondirectory.po   |  2 +-
 .../locale/es_CO/fusiondirectory.po           |  2 +-
 .../locale/es_VE/fusiondirectory.po           |  2 +-
 .../locale/fa_IR/fusiondirectory.po           |  2 +-
 .../locale/fi_FI/fusiondirectory.po           |  2 +-
 subcontracting/locale/fr/fusiondirectory.po   |  2 +-
 .../locale/hu_HU/fusiondirectory.po           |  2 +-
 subcontracting/locale/id/fusiondirectory.po   |  2 +-
 .../locale/it_IT/fusiondirectory.po           |  2 +-
 subcontracting/locale/ja/fusiondirectory.po   |  2 +-
 subcontracting/locale/ko/fusiondirectory.po   |  2 +-
 subcontracting/locale/lv/fusiondirectory.po   |  2 +-
 subcontracting/locale/nb/fusiondirectory.po   |  2 +-
 subcontracting/locale/nl/fusiondirectory.po   |  2 +-
 subcontracting/locale/pl/fusiondirectory.po   |  2 +-
 subcontracting/locale/pt/fusiondirectory.po   |  2 +-
 .../locale/pt_BR/fusiondirectory.po           |  2 +-
 subcontracting/locale/ru/fusiondirectory.po   |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 subcontracting/locale/sv/fusiondirectory.po   |  2 +-
 .../locale/tr_TR/fusiondirectory.po           |  2 +-
 subcontracting/locale/ug/fusiondirectory.po   |  2 +-
 .../locale/vi_VN/fusiondirectory.po           |  2 +-
 subcontracting/locale/zh/fusiondirectory.po   |  2 +-
 .../locale/zh_TW/fusiondirectory.po           |  2 +-
 sudo/locale/af_ZA/fusiondirectory.po          |  2 +-
 sudo/locale/ar/fusiondirectory.po             |  2 +-
 sudo/locale/ca/fusiondirectory.po             |  2 +-
 sudo/locale/cs_CZ/fusiondirectory.po          |  2 +-
 sudo/locale/de/fusiondirectory.po             |  2 +-
 sudo/locale/el_GR/fusiondirectory.po          |  2 +-
 sudo/locale/es/fusiondirectory.po             |  2 +-
 sudo/locale/es_CO/fusiondirectory.po          |  2 +-
 sudo/locale/es_VE/fusiondirectory.po          |  2 +-
 sudo/locale/fa_IR/fusiondirectory.po          |  2 +-
 sudo/locale/fi_FI/fusiondirectory.po          |  2 +-
 sudo/locale/fr/fusiondirectory.po             |  2 +-
 sudo/locale/hu_HU/fusiondirectory.po          |  2 +-
 sudo/locale/id/fusiondirectory.po             |  2 +-
 sudo/locale/it_IT/fusiondirectory.po          |  2 +-
 sudo/locale/ja/fusiondirectory.po             |  2 +-
 sudo/locale/ko/fusiondirectory.po             |  2 +-
 sudo/locale/lv/fusiondirectory.po             |  2 +-
 sudo/locale/nb/fusiondirectory.po             |  2 +-
 sudo/locale/nl/fusiondirectory.po             |  2 +-
 sudo/locale/pl/fusiondirectory.po             |  2 +-
 sudo/locale/pt/fusiondirectory.po             |  2 +-
 sudo/locale/pt_BR/fusiondirectory.po          |  2 +-
 sudo/locale/ru/fusiondirectory.po             |  2 +-
 sudo/locale/ru@petr1708/fusiondirectory.po    |  2 +-
 sudo/locale/sv/fusiondirectory.po             |  2 +-
 sudo/locale/tr_TR/fusiondirectory.po          |  2 +-
 sudo/locale/ug/fusiondirectory.po             |  2 +-
 sudo/locale/vi_VN/fusiondirectory.po          |  2 +-
 sudo/locale/zh/fusiondirectory.po             |  2 +-
 sudo/locale/zh_TW/fusiondirectory.po          |  2 +-
 supann/locale/af_ZA/fusiondirectory.po        |  2 +-
 supann/locale/ar/fusiondirectory.po           |  2 +-
 supann/locale/ca/fusiondirectory.po           |  2 +-
 supann/locale/cs_CZ/fusiondirectory.po        |  2 +-
 supann/locale/de/fusiondirectory.po           |  2 +-
 supann/locale/el_GR/fusiondirectory.po        |  2 +-
 supann/locale/es/fusiondirectory.po           |  2 +-
 supann/locale/es_CO/fusiondirectory.po        |  2 +-
 supann/locale/es_VE/fusiondirectory.po        |  2 +-
 supann/locale/fa_IR/fusiondirectory.po        |  2 +-
 supann/locale/fi_FI/fusiondirectory.po        |  2 +-
 supann/locale/fr/fusiondirectory.po           |  2 +-
 supann/locale/hu_HU/fusiondirectory.po        |  2 +-
 supann/locale/id/fusiondirectory.po           |  2 +-
 supann/locale/it_IT/fusiondirectory.po        |  2 +-
 supann/locale/ja/fusiondirectory.po           |  2 +-
 supann/locale/ko/fusiondirectory.po           | 14 +++++-----
 supann/locale/lv/fusiondirectory.po           |  2 +-
 supann/locale/nb/fusiondirectory.po           |  2 +-
 supann/locale/nl/fusiondirectory.po           |  2 +-
 supann/locale/pl/fusiondirectory.po           |  2 +-
 supann/locale/pt/fusiondirectory.po           |  2 +-
 supann/locale/pt_BR/fusiondirectory.po        |  2 +-
 supann/locale/ru/fusiondirectory.po           |  2 +-
 supann/locale/ru@petr1708/fusiondirectory.po  |  2 +-
 supann/locale/sv/fusiondirectory.po           |  2 +-
 supann/locale/tr_TR/fusiondirectory.po        |  2 +-
 supann/locale/ug/fusiondirectory.po           |  2 +-
 supann/locale/vi_VN/fusiondirectory.po        |  2 +-
 supann/locale/zh/fusiondirectory.po           |  2 +-
 supann/locale/zh_TW/fusiondirectory.po        |  2 +-
 sympa/locale/af_ZA/fusiondirectory.po         |  2 +-
 sympa/locale/ar/fusiondirectory.po            |  2 +-
 sympa/locale/ca/fusiondirectory.po            |  2 +-
 sympa/locale/cs_CZ/fusiondirectory.po         |  2 +-
 sympa/locale/de/fusiondirectory.po            |  2 +-
 sympa/locale/el_GR/fusiondirectory.po         |  2 +-
 sympa/locale/es/fusiondirectory.po            |  2 +-
 sympa/locale/es_CO/fusiondirectory.po         |  2 +-
 sympa/locale/es_VE/fusiondirectory.po         |  2 +-
 sympa/locale/fa_IR/fusiondirectory.po         |  2 +-
 sympa/locale/fi_FI/fusiondirectory.po         |  2 +-
 sympa/locale/fr/fusiondirectory.po            |  2 +-
 sympa/locale/hu_HU/fusiondirectory.po         |  2 +-
 sympa/locale/id/fusiondirectory.po            |  2 +-
 sympa/locale/it_IT/fusiondirectory.po         |  2 +-
 sympa/locale/ja/fusiondirectory.po            |  2 +-
 sympa/locale/ko/fusiondirectory.po            |  2 +-
 sympa/locale/lv/fusiondirectory.po            |  2 +-
 sympa/locale/nb/fusiondirectory.po            |  2 +-
 sympa/locale/nl/fusiondirectory.po            |  2 +-
 sympa/locale/pl/fusiondirectory.po            |  2 +-
 sympa/locale/pt/fusiondirectory.po            |  2 +-
 sympa/locale/pt_BR/fusiondirectory.po         |  2 +-
 sympa/locale/ru/fusiondirectory.po            |  2 +-
 sympa/locale/ru@petr1708/fusiondirectory.po   |  2 +-
 sympa/locale/sv/fusiondirectory.po            |  2 +-
 sympa/locale/tr_TR/fusiondirectory.po         |  2 +-
 sympa/locale/ug/fusiondirectory.po            |  2 +-
 sympa/locale/vi_VN/fusiondirectory.po         |  2 +-
 sympa/locale/zh/fusiondirectory.po            |  2 +-
 sympa/locale/zh_TW/fusiondirectory.po         |  2 +-
 systems/locale/af_ZA/fusiondirectory.po       |  2 +-
 systems/locale/ar/fusiondirectory.po          |  2 +-
 systems/locale/ca/fusiondirectory.po          |  2 +-
 systems/locale/cs_CZ/fusiondirectory.po       |  2 +-
 systems/locale/de/fusiondirectory.po          |  2 +-
 systems/locale/el_GR/fusiondirectory.po       |  2 +-
 systems/locale/es/fusiondirectory.po          |  2 +-
 systems/locale/es_CO/fusiondirectory.po       |  2 +-
 systems/locale/es_VE/fusiondirectory.po       |  2 +-
 systems/locale/fa_IR/fusiondirectory.po       |  2 +-
 systems/locale/fi_FI/fusiondirectory.po       |  2 +-
 systems/locale/fr/fusiondirectory.po          |  2 +-
 systems/locale/hu_HU/fusiondirectory.po       |  2 +-
 systems/locale/id/fusiondirectory.po          |  2 +-
 systems/locale/it_IT/fusiondirectory.po       |  2 +-
 systems/locale/ja/fusiondirectory.po          |  2 +-
 systems/locale/ko/fusiondirectory.po          |  2 +-
 systems/locale/lv/fusiondirectory.po          |  2 +-
 systems/locale/nb/fusiondirectory.po          |  2 +-
 systems/locale/nl/fusiondirectory.po          |  2 +-
 systems/locale/pl/fusiondirectory.po          |  2 +-
 systems/locale/pt/fusiondirectory.po          |  2 +-
 systems/locale/pt_BR/fusiondirectory.po       |  2 +-
 systems/locale/ru/fusiondirectory.po          |  2 +-
 systems/locale/ru@petr1708/fusiondirectory.po |  2 +-
 systems/locale/sv/fusiondirectory.po          |  2 +-
 systems/locale/tr_TR/fusiondirectory.po       |  2 +-
 systems/locale/ug/fusiondirectory.po          |  2 +-
 systems/locale/vi_VN/fusiondirectory.po       |  2 +-
 systems/locale/zh/fusiondirectory.po          |  2 +-
 systems/locale/zh_TW/fusiondirectory.po       |  2 +-
 user-reminder/locale/af_ZA/fusiondirectory.po |  2 +-
 user-reminder/locale/ar/fusiondirectory.po    |  2 +-
 user-reminder/locale/ca/fusiondirectory.po    |  2 +-
 user-reminder/locale/cs_CZ/fusiondirectory.po |  2 +-
 user-reminder/locale/de/fusiondirectory.po    |  2 +-
 user-reminder/locale/el_GR/fusiondirectory.po |  2 +-
 user-reminder/locale/es/fusiondirectory.po    |  2 +-
 user-reminder/locale/es_CO/fusiondirectory.po |  2 +-
 user-reminder/locale/es_VE/fusiondirectory.po |  2 +-
 user-reminder/locale/fa_IR/fusiondirectory.po |  2 +-
 user-reminder/locale/fi_FI/fusiondirectory.po |  2 +-
 user-reminder/locale/fr/fusiondirectory.po    |  2 +-
 user-reminder/locale/hu_HU/fusiondirectory.po |  2 +-
 user-reminder/locale/id/fusiondirectory.po    |  2 +-
 user-reminder/locale/it_IT/fusiondirectory.po |  2 +-
 user-reminder/locale/ja/fusiondirectory.po    |  2 +-
 user-reminder/locale/ko/fusiondirectory.po    |  2 +-
 user-reminder/locale/lv/fusiondirectory.po    |  2 +-
 user-reminder/locale/nb/fusiondirectory.po    |  2 +-
 user-reminder/locale/nl/fusiondirectory.po    |  2 +-
 user-reminder/locale/pl/fusiondirectory.po    |  2 +-
 user-reminder/locale/pt/fusiondirectory.po    |  2 +-
 user-reminder/locale/pt_BR/fusiondirectory.po |  2 +-
 user-reminder/locale/ru/fusiondirectory.po    |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 user-reminder/locale/sv/fusiondirectory.po    |  2 +-
 user-reminder/locale/tr_TR/fusiondirectory.po |  2 +-
 user-reminder/locale/ug/fusiondirectory.po    |  2 +-
 user-reminder/locale/vi_VN/fusiondirectory.po |  2 +-
 user-reminder/locale/zh/fusiondirectory.po    |  2 +-
 user-reminder/locale/zh_TW/fusiondirectory.po |  2 +-
 weblink/locale/af_ZA/fusiondirectory.po       |  2 +-
 weblink/locale/ar/fusiondirectory.po          |  2 +-
 weblink/locale/ca/fusiondirectory.po          |  2 +-
 weblink/locale/cs_CZ/fusiondirectory.po       |  2 +-
 weblink/locale/de/fusiondirectory.po          |  2 +-
 weblink/locale/el_GR/fusiondirectory.po       |  2 +-
 weblink/locale/es/fusiondirectory.po          |  2 +-
 weblink/locale/es_CO/fusiondirectory.po       |  2 +-
 weblink/locale/es_VE/fusiondirectory.po       |  2 +-
 weblink/locale/fa_IR/fusiondirectory.po       |  2 +-
 weblink/locale/fi_FI/fusiondirectory.po       |  2 +-
 weblink/locale/fr/fusiondirectory.po          |  2 +-
 weblink/locale/hu_HU/fusiondirectory.po       |  2 +-
 weblink/locale/id/fusiondirectory.po          |  2 +-
 weblink/locale/it_IT/fusiondirectory.po       |  2 +-
 weblink/locale/ja/fusiondirectory.po          |  2 +-
 weblink/locale/ko/fusiondirectory.po          |  2 +-
 weblink/locale/lv/fusiondirectory.po          |  2 +-
 weblink/locale/nb/fusiondirectory.po          |  2 +-
 weblink/locale/nl/fusiondirectory.po          |  2 +-
 weblink/locale/pl/fusiondirectory.po          |  2 +-
 weblink/locale/pt/fusiondirectory.po          |  2 +-
 weblink/locale/pt_BR/fusiondirectory.po       |  2 +-
 weblink/locale/ru/fusiondirectory.po          |  2 +-
 weblink/locale/ru@petr1708/fusiondirectory.po |  2 +-
 weblink/locale/sv/fusiondirectory.po          |  2 +-
 weblink/locale/tr_TR/fusiondirectory.po       |  2 +-
 weblink/locale/ug/fusiondirectory.po          |  2 +-
 weblink/locale/vi_VN/fusiondirectory.po       |  2 +-
 weblink/locale/zh/fusiondirectory.po          |  2 +-
 weblink/locale/zh_TW/fusiondirectory.po       |  2 +-
 webservice/locale/af_ZA/fusiondirectory.po    |  2 +-
 webservice/locale/ar/fusiondirectory.po       |  2 +-
 webservice/locale/ca/fusiondirectory.po       |  2 +-
 webservice/locale/cs_CZ/fusiondirectory.po    |  2 +-
 webservice/locale/de/fusiondirectory.po       |  2 +-
 webservice/locale/el_GR/fusiondirectory.po    |  2 +-
 webservice/locale/es/fusiondirectory.po       |  2 +-
 webservice/locale/es_CO/fusiondirectory.po    |  2 +-
 webservice/locale/es_VE/fusiondirectory.po    |  2 +-
 webservice/locale/fa_IR/fusiondirectory.po    |  2 +-
 webservice/locale/fi_FI/fusiondirectory.po    |  2 +-
 webservice/locale/fr/fusiondirectory.po       |  2 +-
 webservice/locale/hu_HU/fusiondirectory.po    |  2 +-
 webservice/locale/id/fusiondirectory.po       |  2 +-
 webservice/locale/it_IT/fusiondirectory.po    |  2 +-
 webservice/locale/ja/fusiondirectory.po       |  2 +-
 webservice/locale/ko/fusiondirectory.po       |  2 +-
 webservice/locale/lv/fusiondirectory.po       |  2 +-
 webservice/locale/nb/fusiondirectory.po       |  2 +-
 webservice/locale/nl/fusiondirectory.po       |  2 +-
 webservice/locale/pl/fusiondirectory.po       |  2 +-
 webservice/locale/pt/fusiondirectory.po       |  2 +-
 webservice/locale/pt_BR/fusiondirectory.po    |  2 +-
 webservice/locale/ru/fusiondirectory.po       |  2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |  2 +-
 webservice/locale/sv/fusiondirectory.po       |  2 +-
 webservice/locale/tr_TR/fusiondirectory.po    |  2 +-
 webservice/locale/ug/fusiondirectory.po       |  2 +-
 webservice/locale/vi_VN/fusiondirectory.po    |  2 +-
 webservice/locale/zh/fusiondirectory.po       |  2 +-
 webservice/locale/zh_TW/fusiondirectory.po    |  2 +-
 1581 files changed, 1769 insertions(+), 1640 deletions(-)

diff --git a/alias/locale/af_ZA/fusiondirectory.po b/alias/locale/af_ZA/fusiondirectory.po
index 3218b68fe7..ffa66596a4 100644
--- a/alias/locale/af_ZA/fusiondirectory.po
+++ b/alias/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po
index e91535ad93..26eb9a35d9 100644
--- a/alias/locale/ar/fusiondirectory.po
+++ b/alias/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po
index d8a800cdd5..52d56b95a2 100644
--- a/alias/locale/ca/fusiondirectory.po
+++ b/alias/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po
index 60cc9aae59..3f42468b59 100644
--- a/alias/locale/cs_CZ/fusiondirectory.po
+++ b/alias/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po
index f6ac903b45..44962468d8 100644
--- a/alias/locale/de/fusiondirectory.po
+++ b/alias/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po
index cd43132abb..e9ae5a81dc 100644
--- a/alias/locale/el_GR/fusiondirectory.po
+++ b/alias/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po
index de7c2abac4..94f9b91ef2 100644
--- a/alias/locale/es/fusiondirectory.po
+++ b/alias/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po
index 1a4a33c32e..38eef9d11c 100644
--- a/alias/locale/es_CO/fusiondirectory.po
+++ b/alias/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po
index 689d302d2d..ac65d768b8 100644
--- a/alias/locale/es_VE/fusiondirectory.po
+++ b/alias/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po
index 4d7d216407..928132de2e 100644
--- a/alias/locale/fa_IR/fusiondirectory.po
+++ b/alias/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po
index 7d6f5eddc8..c09f631a21 100644
--- a/alias/locale/fi_FI/fusiondirectory.po
+++ b/alias/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po
index c553fc1dfd..3de4dab394 100644
--- a/alias/locale/fr/fusiondirectory.po
+++ b/alias/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po
index 0975f35361..cd72169dd1 100644
--- a/alias/locale/hu_HU/fusiondirectory.po
+++ b/alias/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po
index 5a0aa5e442..59b7d07824 100644
--- a/alias/locale/id/fusiondirectory.po
+++ b/alias/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index 3c8439a159..2f0fc642c3 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/alias/locale/ja/fusiondirectory.po b/alias/locale/ja/fusiondirectory.po
index b0722d1529..855d091070 100644
--- a/alias/locale/ja/fusiondirectory.po
+++ b/alias/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ko/fusiondirectory.po b/alias/locale/ko/fusiondirectory.po
index 8c06f11ec1..d29f9bf074 100644
--- a/alias/locale/ko/fusiondirectory.po
+++ b/alias/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po
index 593ca78a99..322e232d8d 100644
--- a/alias/locale/lv/fusiondirectory.po
+++ b/alias/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po
index 75856d1106..942acc2aa9 100644
--- a/alias/locale/nb/fusiondirectory.po
+++ b/alias/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po
index 61225e27f9..c39141d71e 100644
--- a/alias/locale/nl/fusiondirectory.po
+++ b/alias/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po
index ea9016d82c..9b41bc2105 100644
--- a/alias/locale/pl/fusiondirectory.po
+++ b/alias/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po
index 2c8eae8442..37c69c2373 100644
--- a/alias/locale/pt/fusiondirectory.po
+++ b/alias/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po
index 70a0b08b02..68b33dae4d 100644
--- a/alias/locale/pt_BR/fusiondirectory.po
+++ b/alias/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po
index 9186bb32af..b5ef51287d 100644
--- a/alias/locale/ru/fusiondirectory.po
+++ b/alias/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po
index 9e2392ab31..3f8d7b0aae 100644
--- a/alias/locale/ru@petr1708/fusiondirectory.po
+++ b/alias/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po
index 9b9a1fb65b..a6bea6f248 100644
--- a/alias/locale/sv/fusiondirectory.po
+++ b/alias/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/alias/locale/tr_TR/fusiondirectory.po b/alias/locale/tr_TR/fusiondirectory.po
index 6c34d31813..05e4eead38 100644
--- a/alias/locale/tr_TR/fusiondirectory.po
+++ b/alias/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po
index 277dc36868..17ca77a059 100644
--- a/alias/locale/ug/fusiondirectory.po
+++ b/alias/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po
index 31533ebf4b..b61ff2d64f 100644
--- a/alias/locale/vi_VN/fusiondirectory.po
+++ b/alias/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po
index 1a87af1443..3ae771e5a0 100644
--- a/alias/locale/zh/fusiondirectory.po
+++ b/alias/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/alias/locale/zh_TW/fusiondirectory.po b/alias/locale/zh_TW/fusiondirectory.po
index 963a1a129f..9cce41fcb2 100644
--- a/alias/locale/zh_TW/fusiondirectory.po
+++ b/alias/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/af_ZA/fusiondirectory.po b/applications/locale/af_ZA/fusiondirectory.po
index ddb81d1f36..2ec5c7e1bd 100644
--- a/applications/locale/af_ZA/fusiondirectory.po
+++ b/applications/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po
index ba93a34ea8..847522a898 100644
--- a/applications/locale/ar/fusiondirectory.po
+++ b/applications/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po
index 01fe26f204..498f518d67 100644
--- a/applications/locale/ca/fusiondirectory.po
+++ b/applications/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po
index ee032dc281..16757274f0 100644
--- a/applications/locale/cs_CZ/fusiondirectory.po
+++ b/applications/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po
index ce9a4cdb63..cd5adce55b 100644
--- a/applications/locale/de/fusiondirectory.po
+++ b/applications/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po
index 8b7715a29b..6b8f5e5d3b 100644
--- a/applications/locale/el_GR/fusiondirectory.po
+++ b/applications/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po
index fb920685a8..aa9289b74e 100644
--- a/applications/locale/es/fusiondirectory.po
+++ b/applications/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po
index f7fdcdb88f..f77524eaa9 100644
--- a/applications/locale/es_CO/fusiondirectory.po
+++ b/applications/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po
index d4c2c2d1df..7145f9ea03 100644
--- a/applications/locale/es_VE/fusiondirectory.po
+++ b/applications/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po
index bbc7c4e632..4210665696 100644
--- a/applications/locale/fa_IR/fusiondirectory.po
+++ b/applications/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po
index 626cd131ee..d8dea2408f 100644
--- a/applications/locale/fi_FI/fusiondirectory.po
+++ b/applications/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po
index e3ecfdcc78..5a3adf6519 100644
--- a/applications/locale/fr/fusiondirectory.po
+++ b/applications/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po
index fe3df17c10..8563d4ab92 100644
--- a/applications/locale/hu_HU/fusiondirectory.po
+++ b/applications/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po
index 0d647f4b4f..0bb24f739c 100644
--- a/applications/locale/id/fusiondirectory.po
+++ b/applications/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po
index 93c565bc11..900e16f552 100644
--- a/applications/locale/it_IT/fusiondirectory.po
+++ b/applications/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/applications/locale/ja/fusiondirectory.po b/applications/locale/ja/fusiondirectory.po
index 296c823963..989d08adbe 100644
--- a/applications/locale/ja/fusiondirectory.po
+++ b/applications/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ko/fusiondirectory.po b/applications/locale/ko/fusiondirectory.po
index 43bf1f3451..db1fe32cc1 100644
--- a/applications/locale/ko/fusiondirectory.po
+++ b/applications/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po
index af5baea0a6..511430b7d2 100644
--- a/applications/locale/lv/fusiondirectory.po
+++ b/applications/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po
index e8f4f0c6e3..799b479870 100644
--- a/applications/locale/nb/fusiondirectory.po
+++ b/applications/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po
index d8978dd276..0979647ec5 100644
--- a/applications/locale/nl/fusiondirectory.po
+++ b/applications/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po
index acbd0cc3c1..4328284eb2 100644
--- a/applications/locale/pl/fusiondirectory.po
+++ b/applications/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po
index be0e937dc0..06ff012e1a 100644
--- a/applications/locale/pt/fusiondirectory.po
+++ b/applications/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po
index 5536a2b8b0..d03a6d613e 100644
--- a/applications/locale/pt_BR/fusiondirectory.po
+++ b/applications/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po
index dc2cf83813..2596541dd2 100644
--- a/applications/locale/ru/fusiondirectory.po
+++ b/applications/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po
index dc1ac40b76..0bce2acbfa 100644
--- a/applications/locale/ru@petr1708/fusiondirectory.po
+++ b/applications/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po
index 2aa61b7b6f..6570b83347 100644
--- a/applications/locale/sv/fusiondirectory.po
+++ b/applications/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/applications/locale/tr_TR/fusiondirectory.po b/applications/locale/tr_TR/fusiondirectory.po
index 36399eb8f9..a32e175f75 100644
--- a/applications/locale/tr_TR/fusiondirectory.po
+++ b/applications/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po
index 927fedbd8a..cea37d81ce 100644
--- a/applications/locale/ug/fusiondirectory.po
+++ b/applications/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po
index b6e5c48357..9b47b0b9e4 100644
--- a/applications/locale/vi_VN/fusiondirectory.po
+++ b/applications/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po
index c93e2e5a70..716493b309 100644
--- a/applications/locale/zh/fusiondirectory.po
+++ b/applications/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/applications/locale/zh_TW/fusiondirectory.po b/applications/locale/zh_TW/fusiondirectory.po
index 688de6fd10..5e66c911e5 100644
--- a/applications/locale/zh_TW/fusiondirectory.po
+++ b/applications/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/af_ZA/fusiondirectory.po b/argonaut/locale/af_ZA/fusiondirectory.po
index e8a762fa6f..3dbfd5be3e 100644
--- a/argonaut/locale/af_ZA/fusiondirectory.po
+++ b/argonaut/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po
index f7e248bbb0..6b0cbd7fcc 100644
--- a/argonaut/locale/ar/fusiondirectory.po
+++ b/argonaut/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po
index b4b4b28866..20b8c0152f 100644
--- a/argonaut/locale/ca/fusiondirectory.po
+++ b/argonaut/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po
index 4d7d124bf6..df969dca41 100644
--- a/argonaut/locale/cs_CZ/fusiondirectory.po
+++ b/argonaut/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po
index e216b90de2..27f12c37bf 100644
--- a/argonaut/locale/de/fusiondirectory.po
+++ b/argonaut/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po
index b169cfd165..c387c2a8de 100644
--- a/argonaut/locale/el_GR/fusiondirectory.po
+++ b/argonaut/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po
index d0fd8b3711..39d262161d 100644
--- a/argonaut/locale/es/fusiondirectory.po
+++ b/argonaut/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po
index 75c16ba3b1..e68cc58876 100644
--- a/argonaut/locale/es_CO/fusiondirectory.po
+++ b/argonaut/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po
index d48ba2d2d0..46b9e0b200 100644
--- a/argonaut/locale/es_VE/fusiondirectory.po
+++ b/argonaut/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po
index 87d956b426..db891896a3 100644
--- a/argonaut/locale/fa_IR/fusiondirectory.po
+++ b/argonaut/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po
index 74dfb8e4fe..5a3b3e1f54 100644
--- a/argonaut/locale/fi_FI/fusiondirectory.po
+++ b/argonaut/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po
index 01043b39ed..acf93cc931 100644
--- a/argonaut/locale/fr/fusiondirectory.po
+++ b/argonaut/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po
index b80112312d..453f67816a 100644
--- a/argonaut/locale/hu_HU/fusiondirectory.po
+++ b/argonaut/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po
index 6aeeae634e..5028bacbb0 100644
--- a/argonaut/locale/id/fusiondirectory.po
+++ b/argonaut/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index 8d9f626057..7eb2b555bf 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/argonaut/locale/ja/fusiondirectory.po b/argonaut/locale/ja/fusiondirectory.po
index 5370da44f2..d72802db71 100644
--- a/argonaut/locale/ja/fusiondirectory.po
+++ b/argonaut/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ko/fusiondirectory.po b/argonaut/locale/ko/fusiondirectory.po
index 022612d019..3e31d89417 100644
--- a/argonaut/locale/ko/fusiondirectory.po
+++ b/argonaut/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -82,19 +82,19 @@ msgstr "FAI"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:45
 msgid "FAI version"
-msgstr ""
+msgstr "FAI 버전"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:45
 msgid "Version of FAI installed on the server"
-msgstr ""
+msgstr "서버에 설치된 FAI 버전"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:50
 msgid "FAI flags"
-msgstr ""
+msgstr "FAI 플래그"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:50
 msgid "Flags to pass to FAI"
-msgstr ""
+msgstr "FAI로 전달된 플래그"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:55
 msgid "NFS root"
@@ -102,31 +102,31 @@ msgstr "NFS 루트"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:60
 msgid "FAI 4 command line"
-msgstr ""
+msgstr "FAI  4 커맨드 라인"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:60
 msgid ""
 "Command line for FAI 4 - should be \"ip=dhcp root=/dev/nfs boot=live "
 "union=aufs\""
-msgstr ""
+msgstr "FAI 4를 위한 커맨드 라인 - \"ip=dhcp root=/dev/nfs boot=live union=aufs\" 필수"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:65
 msgid "FAI 5 command line"
-msgstr ""
+msgstr "FAI 5 커맨드 라인"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:65
 msgid "Command line for FAI 5 - should be \"ip=dhcp rootovl\""
-msgstr ""
+msgstr "FAI 5를 위한 커맨드 라인 - \"ip=dhcp rootovl\" 필수"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:70
 msgid "Multiple distro mode"
-msgstr ""
+msgstr "다중 distro 모드"
 
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:70
 msgid ""
 "This enables a mode for multiple distributions usage which adds the release "
 "as a suffix to kernel, initrd and nfsroot in the PXE file"
-msgstr ""
+msgstr "PXE 파일에서 커널, initrd 및 nfsroot에 접미사로 릴리스를 추가하는 다중 배포 사용 모드를 활성화합니다."
 
 #: admin/systems/services/argonaut/class_argonautServer.inc:35
 #: admin/systems/services/argonaut/class_argonautServer.inc:36
diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po
index 8b01d6e1c4..080ad18a32 100644
--- a/argonaut/locale/lv/fusiondirectory.po
+++ b/argonaut/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po
index c37025de14..82dba7192a 100644
--- a/argonaut/locale/nb/fusiondirectory.po
+++ b/argonaut/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po
index 3206ddcad7..a5801021e7 100644
--- a/argonaut/locale/nl/fusiondirectory.po
+++ b/argonaut/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po
index 08b536d9c8..5f95595bfc 100644
--- a/argonaut/locale/pl/fusiondirectory.po
+++ b/argonaut/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po
index 8337ede1d9..bad5dee9ba 100644
--- a/argonaut/locale/pt/fusiondirectory.po
+++ b/argonaut/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po
index 29323cd780..f90b0ac07c 100644
--- a/argonaut/locale/pt_BR/fusiondirectory.po
+++ b/argonaut/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po
index e5a728f68d..228615b940 100644
--- a/argonaut/locale/ru/fusiondirectory.po
+++ b/argonaut/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po
index 0f7fe31ace..8d23f96d8a 100644
--- a/argonaut/locale/ru@petr1708/fusiondirectory.po
+++ b/argonaut/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po
index 35c5946d65..1b204e05a4 100644
--- a/argonaut/locale/sv/fusiondirectory.po
+++ b/argonaut/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/argonaut/locale/tr_TR/fusiondirectory.po b/argonaut/locale/tr_TR/fusiondirectory.po
index 777c285b35..76b81126d2 100644
--- a/argonaut/locale/tr_TR/fusiondirectory.po
+++ b/argonaut/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po
index 45e23585e4..b0a5b119ce 100644
--- a/argonaut/locale/ug/fusiondirectory.po
+++ b/argonaut/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po
index 84de9b3471..4a62ee5353 100644
--- a/argonaut/locale/vi_VN/fusiondirectory.po
+++ b/argonaut/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po
index e40000e1a2..66bfcb80a0 100644
--- a/argonaut/locale/zh/fusiondirectory.po
+++ b/argonaut/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/argonaut/locale/zh_TW/fusiondirectory.po b/argonaut/locale/zh_TW/fusiondirectory.po
index 8f65baa49d..2fb6061aa5 100644
--- a/argonaut/locale/zh_TW/fusiondirectory.po
+++ b/argonaut/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/af_ZA/fusiondirectory.po b/audit/locale/af_ZA/fusiondirectory.po
index 4a6a9df533..afbf23f669 100644
--- a/audit/locale/af_ZA/fusiondirectory.po
+++ b/audit/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po
index 4bdb739936..eddf29017b 100644
--- a/audit/locale/ar/fusiondirectory.po
+++ b/audit/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po
index 3045090f9f..9648d5262c 100644
--- a/audit/locale/ca/fusiondirectory.po
+++ b/audit/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po
index 04ca5a6d94..9e7121b3b6 100644
--- a/audit/locale/cs_CZ/fusiondirectory.po
+++ b/audit/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po
index 3af8f49f3d..b9ded6cf6f 100644
--- a/audit/locale/de/fusiondirectory.po
+++ b/audit/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po
index 9d203825a8..dc1087810e 100644
--- a/audit/locale/el_GR/fusiondirectory.po
+++ b/audit/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po
index 8cb59cff3e..63e52c143d 100644
--- a/audit/locale/es/fusiondirectory.po
+++ b/audit/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po
index fee89d7a63..7728e89c2a 100644
--- a/audit/locale/es_CO/fusiondirectory.po
+++ b/audit/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po
index 308ecfe59b..8f9dbc9dba 100644
--- a/audit/locale/es_VE/fusiondirectory.po
+++ b/audit/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po
index 43e6ecf43e..6c7e7088a5 100644
--- a/audit/locale/fa_IR/fusiondirectory.po
+++ b/audit/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po
index 7f246addc5..ebb00a9325 100644
--- a/audit/locale/fi_FI/fusiondirectory.po
+++ b/audit/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po
index c18fe8a027..e203172b1d 100644
--- a/audit/locale/fr/fusiondirectory.po
+++ b/audit/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po
index 0e11707149..43c6a6f2b3 100644
--- a/audit/locale/hu_HU/fusiondirectory.po
+++ b/audit/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po
index aabc88ccc4..d1aaba37ff 100644
--- a/audit/locale/id/fusiondirectory.po
+++ b/audit/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index 31eb4b0225..e0019bcf7a 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/audit/locale/ja/fusiondirectory.po b/audit/locale/ja/fusiondirectory.po
index 11661d7065..7e787669d0 100644
--- a/audit/locale/ja/fusiondirectory.po
+++ b/audit/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ko/fusiondirectory.po b/audit/locale/ko/fusiondirectory.po
index 75843d2fa2..39daab7bae 100644
--- a/audit/locale/ko/fusiondirectory.po
+++ b/audit/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po
index 8d43268d82..a9d33a917a 100644
--- a/audit/locale/lv/fusiondirectory.po
+++ b/audit/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po
index 44e1c36ca8..3f860fd8a5 100644
--- a/audit/locale/nb/fusiondirectory.po
+++ b/audit/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po
index 142eb8901d..ad6b9ec0b7 100644
--- a/audit/locale/nl/fusiondirectory.po
+++ b/audit/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po
index 9ef1430b7e..fc6884b82c 100644
--- a/audit/locale/pl/fusiondirectory.po
+++ b/audit/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po
index 4e2366932d..8eb14595fe 100644
--- a/audit/locale/pt/fusiondirectory.po
+++ b/audit/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po
index 16f77f4d6d..3c7f05a053 100644
--- a/audit/locale/pt_BR/fusiondirectory.po
+++ b/audit/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po
index 489afdc62b..07a1ccd649 100644
--- a/audit/locale/ru/fusiondirectory.po
+++ b/audit/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po
index 0f9ab40562..b58d0efbd6 100644
--- a/audit/locale/ru@petr1708/fusiondirectory.po
+++ b/audit/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po
index 121c372784..2472834446 100644
--- a/audit/locale/sv/fusiondirectory.po
+++ b/audit/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/audit/locale/tr_TR/fusiondirectory.po b/audit/locale/tr_TR/fusiondirectory.po
index 61bb8a897c..e5daf09b06 100644
--- a/audit/locale/tr_TR/fusiondirectory.po
+++ b/audit/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po
index afe2397f45..aa9923232f 100644
--- a/audit/locale/ug/fusiondirectory.po
+++ b/audit/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po
index 69bb54a4ba..e8b3b178b0 100644
--- a/audit/locale/vi_VN/fusiondirectory.po
+++ b/audit/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po
index c35a21c306..b37d3e5bc8 100644
--- a/audit/locale/zh/fusiondirectory.po
+++ b/audit/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/audit/locale/zh_TW/fusiondirectory.po b/audit/locale/zh_TW/fusiondirectory.po
index 5d7995c02f..fb570fac6f 100644
--- a/audit/locale/zh_TW/fusiondirectory.po
+++ b/audit/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/af_ZA/fusiondirectory.po b/autofs/locale/af_ZA/fusiondirectory.po
index e280b3a198..dc097be20f 100644
--- a/autofs/locale/af_ZA/fusiondirectory.po
+++ b/autofs/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po
index e5f845abc7..1a637d2c86 100644
--- a/autofs/locale/ar/fusiondirectory.po
+++ b/autofs/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po
index 0d297ce1f9..c764f7d4d6 100644
--- a/autofs/locale/ca/fusiondirectory.po
+++ b/autofs/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po
index 2b0b345463..9dc76a9e54 100644
--- a/autofs/locale/cs_CZ/fusiondirectory.po
+++ b/autofs/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po
index 9a6b53fe29..0d005ef109 100644
--- a/autofs/locale/de/fusiondirectory.po
+++ b/autofs/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po
index f9ef885280..448f1903f7 100644
--- a/autofs/locale/el_GR/fusiondirectory.po
+++ b/autofs/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po
index 871989faa6..d3502cc889 100644
--- a/autofs/locale/es/fusiondirectory.po
+++ b/autofs/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po
index 74ec882286..a45f275a3a 100644
--- a/autofs/locale/es_CO/fusiondirectory.po
+++ b/autofs/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po
index 7b7685f24b..d8a2dcb19c 100644
--- a/autofs/locale/es_VE/fusiondirectory.po
+++ b/autofs/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po
index 73c3dc4dbd..174bdf1365 100644
--- a/autofs/locale/fa_IR/fusiondirectory.po
+++ b/autofs/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po
index ca4292eff6..936338596f 100644
--- a/autofs/locale/fi_FI/fusiondirectory.po
+++ b/autofs/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po
index b87e3aed12..4a10409447 100644
--- a/autofs/locale/fr/fusiondirectory.po
+++ b/autofs/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po
index cbcaa01c8e..9689b03a61 100644
--- a/autofs/locale/hu_HU/fusiondirectory.po
+++ b/autofs/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po
index 2b826491ec..643cb7962d 100644
--- a/autofs/locale/id/fusiondirectory.po
+++ b/autofs/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po
index 50f0c63ee4..218878ede3 100644
--- a/autofs/locale/it_IT/fusiondirectory.po
+++ b/autofs/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/autofs/locale/ja/fusiondirectory.po b/autofs/locale/ja/fusiondirectory.po
index 76b57eee6f..d5213f5775 100644
--- a/autofs/locale/ja/fusiondirectory.po
+++ b/autofs/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ko/fusiondirectory.po b/autofs/locale/ko/fusiondirectory.po
index d26abb435a..828d9f4a11 100644
--- a/autofs/locale/ko/fusiondirectory.po
+++ b/autofs/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po
index bb051d5a3b..32e8ab4afc 100644
--- a/autofs/locale/lv/fusiondirectory.po
+++ b/autofs/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po
index 2f91e71fa8..01a13bd802 100644
--- a/autofs/locale/nb/fusiondirectory.po
+++ b/autofs/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po
index fd405c6abd..d971204643 100644
--- a/autofs/locale/nl/fusiondirectory.po
+++ b/autofs/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po
index 5b3ae549b1..debc728739 100644
--- a/autofs/locale/pl/fusiondirectory.po
+++ b/autofs/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po
index 76113c9183..996e626400 100644
--- a/autofs/locale/pt/fusiondirectory.po
+++ b/autofs/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po
index ecca0a5a38..bcf4c0d929 100644
--- a/autofs/locale/pt_BR/fusiondirectory.po
+++ b/autofs/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po
index 447115c6c9..03417f304b 100644
--- a/autofs/locale/ru/fusiondirectory.po
+++ b/autofs/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po
index 91099ea485..20749feca5 100644
--- a/autofs/locale/ru@petr1708/fusiondirectory.po
+++ b/autofs/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po
index 8bec96caca..df3b4d6d21 100644
--- a/autofs/locale/sv/fusiondirectory.po
+++ b/autofs/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/autofs/locale/tr_TR/fusiondirectory.po b/autofs/locale/tr_TR/fusiondirectory.po
index 09fa417318..714e790c15 100644
--- a/autofs/locale/tr_TR/fusiondirectory.po
+++ b/autofs/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po
index 1563b55ffa..1e6a099a1a 100644
--- a/autofs/locale/ug/fusiondirectory.po
+++ b/autofs/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po
index 7e520a39fa..3f40a50de2 100644
--- a/autofs/locale/vi_VN/fusiondirectory.po
+++ b/autofs/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po
index 5d66992a52..fc54bca972 100644
--- a/autofs/locale/zh/fusiondirectory.po
+++ b/autofs/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/autofs/locale/zh_TW/fusiondirectory.po b/autofs/locale/zh_TW/fusiondirectory.po
index 9751b90b1f..7c9cd880cd 100644
--- a/autofs/locale/zh_TW/fusiondirectory.po
+++ b/autofs/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/af_ZA/fusiondirectory.po b/certificates/locale/af_ZA/fusiondirectory.po
index 386021e35b..a3429e3c67 100644
--- a/certificates/locale/af_ZA/fusiondirectory.po
+++ b/certificates/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po
index e8a1054b6d..89a0be4462 100644
--- a/certificates/locale/ar/fusiondirectory.po
+++ b/certificates/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po
index b069794b0a..45011dc7e1 100644
--- a/certificates/locale/ca/fusiondirectory.po
+++ b/certificates/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po
index b70912c212..6de8b11c9e 100644
--- a/certificates/locale/cs_CZ/fusiondirectory.po
+++ b/certificates/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po
index 02dab93384..7d4f3d1ba6 100644
--- a/certificates/locale/de/fusiondirectory.po
+++ b/certificates/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po
index a35578daad..16ce741201 100644
--- a/certificates/locale/el_GR/fusiondirectory.po
+++ b/certificates/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po
index 89aa652632..43d16c2dc0 100644
--- a/certificates/locale/es/fusiondirectory.po
+++ b/certificates/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po
index 363cb5aae7..7c39eec9fc 100644
--- a/certificates/locale/es_CO/fusiondirectory.po
+++ b/certificates/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po
index 78f5c84f2d..4e4f25c518 100644
--- a/certificates/locale/es_VE/fusiondirectory.po
+++ b/certificates/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po
index cb01d6f6f6..a292216355 100644
--- a/certificates/locale/fa_IR/fusiondirectory.po
+++ b/certificates/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po
index 705db17d39..fa35c59681 100644
--- a/certificates/locale/fi_FI/fusiondirectory.po
+++ b/certificates/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po
index 169100d02d..b49b2dbbe5 100644
--- a/certificates/locale/fr/fusiondirectory.po
+++ b/certificates/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po
index 0b4143f471..3ee72cb01b 100644
--- a/certificates/locale/hu_HU/fusiondirectory.po
+++ b/certificates/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po
index baa513518b..b043be2b46 100644
--- a/certificates/locale/id/fusiondirectory.po
+++ b/certificates/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po
index cd388ad541..1c24ad2f63 100644
--- a/certificates/locale/it_IT/fusiondirectory.po
+++ b/certificates/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/certificates/locale/ja/fusiondirectory.po b/certificates/locale/ja/fusiondirectory.po
index af451f520e..5eaebecfcd 100644
--- a/certificates/locale/ja/fusiondirectory.po
+++ b/certificates/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ko/fusiondirectory.po b/certificates/locale/ko/fusiondirectory.po
index 731bb427dd..36f1c22ee0 100644
--- a/certificates/locale/ko/fusiondirectory.po
+++ b/certificates/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po
index 6c5355bd0c..d0509c9679 100644
--- a/certificates/locale/lv/fusiondirectory.po
+++ b/certificates/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po
index 7d7be8a090..bdc0062433 100644
--- a/certificates/locale/nb/fusiondirectory.po
+++ b/certificates/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po
index 57ea11c65d..36e6cf15a8 100644
--- a/certificates/locale/nl/fusiondirectory.po
+++ b/certificates/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po
index ecd84b19de..c3fe7874bd 100644
--- a/certificates/locale/pl/fusiondirectory.po
+++ b/certificates/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po
index d50e3ae3be..8a3ae02a1f 100644
--- a/certificates/locale/pt/fusiondirectory.po
+++ b/certificates/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po
index 9d0b162d6e..45046b7144 100644
--- a/certificates/locale/pt_BR/fusiondirectory.po
+++ b/certificates/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po
index 4811437037..aa0bd28674 100644
--- a/certificates/locale/ru/fusiondirectory.po
+++ b/certificates/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po
index c8bc25917c..eb4b31496b 100644
--- a/certificates/locale/ru@petr1708/fusiondirectory.po
+++ b/certificates/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po
index 6b55c68d6d..b8cbefd570 100644
--- a/certificates/locale/sv/fusiondirectory.po
+++ b/certificates/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/certificates/locale/tr_TR/fusiondirectory.po b/certificates/locale/tr_TR/fusiondirectory.po
index f4af4d3283..3267401804 100644
--- a/certificates/locale/tr_TR/fusiondirectory.po
+++ b/certificates/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po
index 418762ab1b..daa28d1a79 100644
--- a/certificates/locale/ug/fusiondirectory.po
+++ b/certificates/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po
index 2c8e29ba4a..611255463a 100644
--- a/certificates/locale/vi_VN/fusiondirectory.po
+++ b/certificates/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po
index 3db4a4624f..bd7c5f0ca9 100644
--- a/certificates/locale/zh/fusiondirectory.po
+++ b/certificates/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/certificates/locale/zh_TW/fusiondirectory.po b/certificates/locale/zh_TW/fusiondirectory.po
index c83295741c..ece7094ea0 100644
--- a/certificates/locale/zh_TW/fusiondirectory.po
+++ b/certificates/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/af_ZA/fusiondirectory.po b/community/locale/af_ZA/fusiondirectory.po
index 055c84f7b8..b7f0443553 100644
--- a/community/locale/af_ZA/fusiondirectory.po
+++ b/community/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po
index 27b3711c2b..3698bfae6a 100644
--- a/community/locale/ar/fusiondirectory.po
+++ b/community/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po
index 2748d54028..29d3d6cab1 100644
--- a/community/locale/ca/fusiondirectory.po
+++ b/community/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po
index c83070e415..440f922cf3 100644
--- a/community/locale/cs_CZ/fusiondirectory.po
+++ b/community/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po
index b9a5e87dd0..6e03d27557 100644
--- a/community/locale/de/fusiondirectory.po
+++ b/community/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po
index e258ac64c1..a7d5bb51f8 100644
--- a/community/locale/el_GR/fusiondirectory.po
+++ b/community/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po
index f3886a9610..a70077fb73 100644
--- a/community/locale/es/fusiondirectory.po
+++ b/community/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po
index f22749a332..40e0674592 100644
--- a/community/locale/es_CO/fusiondirectory.po
+++ b/community/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po
index f6c99209c6..f3205bea98 100644
--- a/community/locale/es_VE/fusiondirectory.po
+++ b/community/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po
index dd29448065..f2736ca221 100644
--- a/community/locale/fa_IR/fusiondirectory.po
+++ b/community/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po
index eb461a3641..9c44c7093d 100644
--- a/community/locale/fi_FI/fusiondirectory.po
+++ b/community/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po
index dc4f3516cd..2fd63763b1 100644
--- a/community/locale/fr/fusiondirectory.po
+++ b/community/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po
index df47ee292b..b6fd55b573 100644
--- a/community/locale/hu_HU/fusiondirectory.po
+++ b/community/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po
index 241095e1a6..9fb76da07a 100644
--- a/community/locale/id/fusiondirectory.po
+++ b/community/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index 4a86e610d2..e41f988693 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/community/locale/ja/fusiondirectory.po b/community/locale/ja/fusiondirectory.po
index df551fa34f..ed91bb7c5c 100644
--- a/community/locale/ja/fusiondirectory.po
+++ b/community/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ko/fusiondirectory.po b/community/locale/ko/fusiondirectory.po
index 811dae8ec3..3ed3e4063e 100644
--- a/community/locale/ko/fusiondirectory.po
+++ b/community/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po
index 945e15adb4..73243d2d30 100644
--- a/community/locale/lv/fusiondirectory.po
+++ b/community/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po
index 04ab681741..6d41ebb1b2 100644
--- a/community/locale/nb/fusiondirectory.po
+++ b/community/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po
index 0521b3fec9..09453bd2bb 100644
--- a/community/locale/nl/fusiondirectory.po
+++ b/community/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po
index 2bda20fab2..1fe6a9728f 100644
--- a/community/locale/pl/fusiondirectory.po
+++ b/community/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po
index 4e5470a6d4..bc105d7459 100644
--- a/community/locale/pt/fusiondirectory.po
+++ b/community/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po
index ed9e3d6b36..96bdc79658 100644
--- a/community/locale/pt_BR/fusiondirectory.po
+++ b/community/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po
index d04751fedb..fa2f1eebdc 100644
--- a/community/locale/ru/fusiondirectory.po
+++ b/community/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po
index d5abb0c022..696891ff49 100644
--- a/community/locale/ru@petr1708/fusiondirectory.po
+++ b/community/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po
index 889d8b1b49..980dc414a9 100644
--- a/community/locale/sv/fusiondirectory.po
+++ b/community/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/community/locale/tr_TR/fusiondirectory.po b/community/locale/tr_TR/fusiondirectory.po
index eb69799a11..6de4cdb004 100644
--- a/community/locale/tr_TR/fusiondirectory.po
+++ b/community/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po
index 8ba317bef6..1dfc3294b1 100644
--- a/community/locale/ug/fusiondirectory.po
+++ b/community/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po
index 90caf535ab..f82d833ac5 100644
--- a/community/locale/vi_VN/fusiondirectory.po
+++ b/community/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po
index 8e5b2f39e4..31d457deb6 100644
--- a/community/locale/zh/fusiondirectory.po
+++ b/community/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/community/locale/zh_TW/fusiondirectory.po b/community/locale/zh_TW/fusiondirectory.po
index eb99c87322..d5f61b9205 100644
--- a/community/locale/zh_TW/fusiondirectory.po
+++ b/community/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/af_ZA/fusiondirectory.po b/cyrus/locale/af_ZA/fusiondirectory.po
index 601136f351..74ad2e0bc6 100644
--- a/cyrus/locale/af_ZA/fusiondirectory.po
+++ b/cyrus/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po
index 1ae74d505c..dbdfe8a6d9 100644
--- a/cyrus/locale/ar/fusiondirectory.po
+++ b/cyrus/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po
index 3046dc4964..a23a201298 100644
--- a/cyrus/locale/ca/fusiondirectory.po
+++ b/cyrus/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po
index cd337f3dea..55fa27859d 100644
--- a/cyrus/locale/cs_CZ/fusiondirectory.po
+++ b/cyrus/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po
index bfdf82854e..a2f54ca7e7 100644
--- a/cyrus/locale/de/fusiondirectory.po
+++ b/cyrus/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po
index eaa5adbadd..4d9ef444c2 100644
--- a/cyrus/locale/el_GR/fusiondirectory.po
+++ b/cyrus/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po
index b4efd7abb5..10fb59ea62 100644
--- a/cyrus/locale/es/fusiondirectory.po
+++ b/cyrus/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po
index 46d454262f..0e87f3644c 100644
--- a/cyrus/locale/es_CO/fusiondirectory.po
+++ b/cyrus/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po
index 8d0612ff14..71cf367d03 100644
--- a/cyrus/locale/es_VE/fusiondirectory.po
+++ b/cyrus/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po
index d4e6c52388..9717fd5baf 100644
--- a/cyrus/locale/fa_IR/fusiondirectory.po
+++ b/cyrus/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po
index f9dba9f03f..56cd455b4f 100644
--- a/cyrus/locale/fi_FI/fusiondirectory.po
+++ b/cyrus/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po
index 247e5af6ad..2f154150d6 100644
--- a/cyrus/locale/fr/fusiondirectory.po
+++ b/cyrus/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po
index 0852121688..a602e6ba75 100644
--- a/cyrus/locale/hu_HU/fusiondirectory.po
+++ b/cyrus/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po
index 7049fe2374..aec707f3d4 100644
--- a/cyrus/locale/id/fusiondirectory.po
+++ b/cyrus/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po
index 725e90e48b..e3a88de83f 100644
--- a/cyrus/locale/it_IT/fusiondirectory.po
+++ b/cyrus/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/cyrus/locale/ja/fusiondirectory.po b/cyrus/locale/ja/fusiondirectory.po
index adc8da3889..02ec34be30 100644
--- a/cyrus/locale/ja/fusiondirectory.po
+++ b/cyrus/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ko/fusiondirectory.po b/cyrus/locale/ko/fusiondirectory.po
index f703ba96ef..44f63a5232 100644
--- a/cyrus/locale/ko/fusiondirectory.po
+++ b/cyrus/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po
index b316e3092b..ced0f0a6ba 100644
--- a/cyrus/locale/lv/fusiondirectory.po
+++ b/cyrus/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po
index 53e66e3a07..ed03f227b0 100644
--- a/cyrus/locale/nb/fusiondirectory.po
+++ b/cyrus/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po
index 993323a9ba..33d74e7add 100644
--- a/cyrus/locale/nl/fusiondirectory.po
+++ b/cyrus/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po
index 38727c5cc8..4072f62623 100644
--- a/cyrus/locale/pl/fusiondirectory.po
+++ b/cyrus/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po
index d026391858..c016eb97c6 100644
--- a/cyrus/locale/pt/fusiondirectory.po
+++ b/cyrus/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po
index 0bdddce58a..2683d6a70a 100644
--- a/cyrus/locale/pt_BR/fusiondirectory.po
+++ b/cyrus/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po
index 6cd9f67f01..a499351d4a 100644
--- a/cyrus/locale/ru/fusiondirectory.po
+++ b/cyrus/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po
index 465addacfd..a1449cbc93 100644
--- a/cyrus/locale/ru@petr1708/fusiondirectory.po
+++ b/cyrus/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po
index a68b1ded0c..b12b4a0455 100644
--- a/cyrus/locale/sv/fusiondirectory.po
+++ b/cyrus/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/cyrus/locale/tr_TR/fusiondirectory.po b/cyrus/locale/tr_TR/fusiondirectory.po
index 43883fe29d..1a0a808ca6 100644
--- a/cyrus/locale/tr_TR/fusiondirectory.po
+++ b/cyrus/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po
index 9038c577c7..4baa57f447 100644
--- a/cyrus/locale/ug/fusiondirectory.po
+++ b/cyrus/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po
index aef9d3d06e..77ef3c5581 100644
--- a/cyrus/locale/vi_VN/fusiondirectory.po
+++ b/cyrus/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po
index 7418490499..9294c69c6e 100644
--- a/cyrus/locale/zh/fusiondirectory.po
+++ b/cyrus/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/cyrus/locale/zh_TW/fusiondirectory.po b/cyrus/locale/zh_TW/fusiondirectory.po
index 871bc4b08a..afd96b1d26 100644
--- a/cyrus/locale/zh_TW/fusiondirectory.po
+++ b/cyrus/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/af_ZA/fusiondirectory.po b/debconf/locale/af_ZA/fusiondirectory.po
index 6d65b95026..c14b827044 100644
--- a/debconf/locale/af_ZA/fusiondirectory.po
+++ b/debconf/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po
index ed7c472356..0072196d98 100644
--- a/debconf/locale/ar/fusiondirectory.po
+++ b/debconf/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po
index 67f88b8a2a..1962e0679e 100644
--- a/debconf/locale/ca/fusiondirectory.po
+++ b/debconf/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po
index 38bbcefd17..f2ddd419cd 100644
--- a/debconf/locale/cs_CZ/fusiondirectory.po
+++ b/debconf/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po
index c42c518381..f688028162 100644
--- a/debconf/locale/de/fusiondirectory.po
+++ b/debconf/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po
index fa81e8adee..511fe6684e 100644
--- a/debconf/locale/el_GR/fusiondirectory.po
+++ b/debconf/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po
index e1772147a0..c7f1e2de29 100644
--- a/debconf/locale/es/fusiondirectory.po
+++ b/debconf/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po
index ef57c32f4d..697aa35e99 100644
--- a/debconf/locale/es_CO/fusiondirectory.po
+++ b/debconf/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po
index 4b605ce132..2458170121 100644
--- a/debconf/locale/es_VE/fusiondirectory.po
+++ b/debconf/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po
index a31484cc86..33b37a30a2 100644
--- a/debconf/locale/fa_IR/fusiondirectory.po
+++ b/debconf/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po
index f546c9e087..95d6765ee8 100644
--- a/debconf/locale/fi_FI/fusiondirectory.po
+++ b/debconf/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po
index 652c46aa7f..406976a1cd 100644
--- a/debconf/locale/fr/fusiondirectory.po
+++ b/debconf/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po
index 4ebda909dc..69b26f8fb9 100644
--- a/debconf/locale/hu_HU/fusiondirectory.po
+++ b/debconf/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po
index ba20982f2d..b96826c3ba 100644
--- a/debconf/locale/id/fusiondirectory.po
+++ b/debconf/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po
index 7432571138..894b0fc36a 100644
--- a/debconf/locale/it_IT/fusiondirectory.po
+++ b/debconf/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/debconf/locale/ja/fusiondirectory.po b/debconf/locale/ja/fusiondirectory.po
index 4ee6b0fa98..f55f79a84d 100644
--- a/debconf/locale/ja/fusiondirectory.po
+++ b/debconf/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ko/fusiondirectory.po b/debconf/locale/ko/fusiondirectory.po
index 95de2cb719..787521246d 100644
--- a/debconf/locale/ko/fusiondirectory.po
+++ b/debconf/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po
index 5a49270658..90ac4c1637 100644
--- a/debconf/locale/lv/fusiondirectory.po
+++ b/debconf/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po
index 994cc7ff9e..f59affa717 100644
--- a/debconf/locale/nb/fusiondirectory.po
+++ b/debconf/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po
index 79b981a57e..89a69d2bd4 100644
--- a/debconf/locale/nl/fusiondirectory.po
+++ b/debconf/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po
index 9f2893391e..8db0acf8c5 100644
--- a/debconf/locale/pl/fusiondirectory.po
+++ b/debconf/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po
index f768ba34dd..694b9e8c37 100644
--- a/debconf/locale/pt/fusiondirectory.po
+++ b/debconf/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po
index 1973c2520d..afaa4c420b 100644
--- a/debconf/locale/pt_BR/fusiondirectory.po
+++ b/debconf/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po
index b75a33abaf..ea01fb6a02 100644
--- a/debconf/locale/ru/fusiondirectory.po
+++ b/debconf/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po
index fe8ec77a40..fd223b7806 100644
--- a/debconf/locale/ru@petr1708/fusiondirectory.po
+++ b/debconf/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po
index a1fcb63eba..0becef17f0 100644
--- a/debconf/locale/sv/fusiondirectory.po
+++ b/debconf/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/debconf/locale/tr_TR/fusiondirectory.po b/debconf/locale/tr_TR/fusiondirectory.po
index 06a09844d5..aef3adfa22 100644
--- a/debconf/locale/tr_TR/fusiondirectory.po
+++ b/debconf/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po
index a8c4ef0756..5c4e0203de 100644
--- a/debconf/locale/ug/fusiondirectory.po
+++ b/debconf/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po
index e7346e25df..f428c4ce12 100644
--- a/debconf/locale/vi_VN/fusiondirectory.po
+++ b/debconf/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po
index dfec07277b..589a5b0056 100644
--- a/debconf/locale/zh/fusiondirectory.po
+++ b/debconf/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/debconf/locale/zh_TW/fusiondirectory.po b/debconf/locale/zh_TW/fusiondirectory.po
index f8e06ff421..7ebd33fe7f 100644
--- a/debconf/locale/zh_TW/fusiondirectory.po
+++ b/debconf/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/af_ZA/fusiondirectory.po b/developers/locale/af_ZA/fusiondirectory.po
index ff5309e62d..05d0dee949 100644
--- a/developers/locale/af_ZA/fusiondirectory.po
+++ b/developers/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po
index ed6d745584..3a7661e63f 100644
--- a/developers/locale/ar/fusiondirectory.po
+++ b/developers/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po
index a805ee2853..542e226642 100644
--- a/developers/locale/ca/fusiondirectory.po
+++ b/developers/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po
index 387ddd0af2..5bcc8e5540 100644
--- a/developers/locale/cs_CZ/fusiondirectory.po
+++ b/developers/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po
index 0dc2287aed..e1d4b7dce8 100644
--- a/developers/locale/de/fusiondirectory.po
+++ b/developers/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po
index 267159c791..ea18cd61d0 100644
--- a/developers/locale/el_GR/fusiondirectory.po
+++ b/developers/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po
index 19a5d0a460..a3d573598a 100644
--- a/developers/locale/es/fusiondirectory.po
+++ b/developers/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po
index 3394f7d007..e58924327c 100644
--- a/developers/locale/es_CO/fusiondirectory.po
+++ b/developers/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po
index 9e864cfaa5..3076a93b7e 100644
--- a/developers/locale/es_VE/fusiondirectory.po
+++ b/developers/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po
index 763950e4b3..deaecc29ca 100644
--- a/developers/locale/fa_IR/fusiondirectory.po
+++ b/developers/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po
index e10c44308b..ac6e523a0b 100644
--- a/developers/locale/fi_FI/fusiondirectory.po
+++ b/developers/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po
index d062c5da3a..38f4fa6e88 100644
--- a/developers/locale/fr/fusiondirectory.po
+++ b/developers/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po
index 45f60eb1fc..f409189ef2 100644
--- a/developers/locale/hu_HU/fusiondirectory.po
+++ b/developers/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po
index afcc99a954..9c0ae0c78f 100644
--- a/developers/locale/id/fusiondirectory.po
+++ b/developers/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po
index 7383ea9197..2c31916388 100644
--- a/developers/locale/it_IT/fusiondirectory.po
+++ b/developers/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/developers/locale/ja/fusiondirectory.po b/developers/locale/ja/fusiondirectory.po
index e7425e3c36..8c9418d43f 100644
--- a/developers/locale/ja/fusiondirectory.po
+++ b/developers/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ko/fusiondirectory.po b/developers/locale/ko/fusiondirectory.po
index 3eab07f34c..325abcd8f0 100644
--- a/developers/locale/ko/fusiondirectory.po
+++ b/developers/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po
index 727a932d35..8e8db80dd8 100644
--- a/developers/locale/lv/fusiondirectory.po
+++ b/developers/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po
index fa9246353f..bbd3e05d74 100644
--- a/developers/locale/nb/fusiondirectory.po
+++ b/developers/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po
index b175cb4c6e..35899d38de 100644
--- a/developers/locale/nl/fusiondirectory.po
+++ b/developers/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po
index 31237d31aa..ca247769e4 100644
--- a/developers/locale/pl/fusiondirectory.po
+++ b/developers/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po
index d3599afd68..385f915dcf 100644
--- a/developers/locale/pt/fusiondirectory.po
+++ b/developers/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po
index 92d3eb8d5f..6361d00cfb 100644
--- a/developers/locale/pt_BR/fusiondirectory.po
+++ b/developers/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po
index 2074a3e6ff..21d7bd5c68 100644
--- a/developers/locale/ru/fusiondirectory.po
+++ b/developers/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po
index e5eb033283..01f5450775 100644
--- a/developers/locale/ru@petr1708/fusiondirectory.po
+++ b/developers/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po
index 3c5f82b286..d5cdfe7402 100644
--- a/developers/locale/sv/fusiondirectory.po
+++ b/developers/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/developers/locale/tr_TR/fusiondirectory.po b/developers/locale/tr_TR/fusiondirectory.po
index 994e360272..7a9bc9b320 100644
--- a/developers/locale/tr_TR/fusiondirectory.po
+++ b/developers/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po
index be7ce30686..88b07f2ad7 100644
--- a/developers/locale/ug/fusiondirectory.po
+++ b/developers/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po
index fe061345e8..5f9a34410e 100644
--- a/developers/locale/vi_VN/fusiondirectory.po
+++ b/developers/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po
index c9edf97fd3..a14f2d7566 100644
--- a/developers/locale/zh/fusiondirectory.po
+++ b/developers/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh_TW/fusiondirectory.po b/developers/locale/zh_TW/fusiondirectory.po
index 4f392da059..d04d35781b 100644
--- a/developers/locale/zh_TW/fusiondirectory.po
+++ b/developers/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/af_ZA/fusiondirectory.po b/dhcp/locale/af_ZA/fusiondirectory.po
index 1b00268ef7..e52fcf1ae7 100644
--- a/dhcp/locale/af_ZA/fusiondirectory.po
+++ b/dhcp/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po
index 872aee87b0..5dd0dd4395 100644
--- a/dhcp/locale/ar/fusiondirectory.po
+++ b/dhcp/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po
index 236de97c0d..bb0b654a3e 100644
--- a/dhcp/locale/ca/fusiondirectory.po
+++ b/dhcp/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po
index d71bc2b3ae..6fc9031af5 100644
--- a/dhcp/locale/cs_CZ/fusiondirectory.po
+++ b/dhcp/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po
index bab87d2526..432b6934bb 100644
--- a/dhcp/locale/de/fusiondirectory.po
+++ b/dhcp/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Jonah Bohlmann <jokabo66@gmail.com>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po
index 024d3dd5a9..737d01b48b 100644
--- a/dhcp/locale/el_GR/fusiondirectory.po
+++ b/dhcp/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po
index 7653d7d3dd..f1b3a0c475 100644
--- a/dhcp/locale/es/fusiondirectory.po
+++ b/dhcp/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po
index 0218dd2ffb..192736bd7d 100644
--- a/dhcp/locale/es_CO/fusiondirectory.po
+++ b/dhcp/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po
index 4085177e8c..7e2cddad42 100644
--- a/dhcp/locale/es_VE/fusiondirectory.po
+++ b/dhcp/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po
index 1ce1164d1c..faff492871 100644
--- a/dhcp/locale/fa_IR/fusiondirectory.po
+++ b/dhcp/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po
index 3d4571f3b6..b8cecbf24a 100644
--- a/dhcp/locale/fi_FI/fusiondirectory.po
+++ b/dhcp/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po
index e677714236..f7c691cd03 100644
--- a/dhcp/locale/fr/fusiondirectory.po
+++ b/dhcp/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po
index 765992134f..8f3b99a166 100644
--- a/dhcp/locale/hu_HU/fusiondirectory.po
+++ b/dhcp/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po
index d228bb8440..1a616f5772 100644
--- a/dhcp/locale/id/fusiondirectory.po
+++ b/dhcp/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index 19819356e2..896cc55a38 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dhcp/locale/ja/fusiondirectory.po b/dhcp/locale/ja/fusiondirectory.po
index cf9bdb624c..535d465a4a 100644
--- a/dhcp/locale/ja/fusiondirectory.po
+++ b/dhcp/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ko/fusiondirectory.po b/dhcp/locale/ko/fusiondirectory.po
index 74176f8102..ca51254150 100644
--- a/dhcp/locale/ko/fusiondirectory.po
+++ b/dhcp/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po
index a746c7c32f..0e066dea26 100644
--- a/dhcp/locale/lv/fusiondirectory.po
+++ b/dhcp/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po
index 5de6268741..70d3740b4e 100644
--- a/dhcp/locale/nb/fusiondirectory.po
+++ b/dhcp/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po
index 635ba49418..ba42d1c73a 100644
--- a/dhcp/locale/nl/fusiondirectory.po
+++ b/dhcp/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po
index acd2fd4bac..b9712360c2 100644
--- a/dhcp/locale/pl/fusiondirectory.po
+++ b/dhcp/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po
index 28f8b08cce..29f7fd910d 100644
--- a/dhcp/locale/pt/fusiondirectory.po
+++ b/dhcp/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po
index 0776701122..2ecb58929b 100644
--- a/dhcp/locale/pt_BR/fusiondirectory.po
+++ b/dhcp/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po
index ad6bf5f227..04b382403e 100644
--- a/dhcp/locale/ru/fusiondirectory.po
+++ b/dhcp/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po
index 6e1968ee42..e00a511183 100644
--- a/dhcp/locale/ru@petr1708/fusiondirectory.po
+++ b/dhcp/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po
index 6f4706e41c..db53fbe04f 100644
--- a/dhcp/locale/sv/fusiondirectory.po
+++ b/dhcp/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dhcp/locale/tr_TR/fusiondirectory.po b/dhcp/locale/tr_TR/fusiondirectory.po
index f093a537bc..eefbee4973 100644
--- a/dhcp/locale/tr_TR/fusiondirectory.po
+++ b/dhcp/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po
index eb187ac308..821e77c48a 100644
--- a/dhcp/locale/ug/fusiondirectory.po
+++ b/dhcp/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po
index 3e71707398..3d6ca0a808 100644
--- a/dhcp/locale/vi_VN/fusiondirectory.po
+++ b/dhcp/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po
index 6a37764a34..ba33f56807 100644
--- a/dhcp/locale/zh/fusiondirectory.po
+++ b/dhcp/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dhcp/locale/zh_TW/fusiondirectory.po b/dhcp/locale/zh_TW/fusiondirectory.po
index a94f5832b6..f9fbbc3564 100644
--- a/dhcp/locale/zh_TW/fusiondirectory.po
+++ b/dhcp/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/af_ZA/fusiondirectory.po b/dns/locale/af_ZA/fusiondirectory.po
index f8560c07de..ba812eaf7b 100644
--- a/dns/locale/af_ZA/fusiondirectory.po
+++ b/dns/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po
index e0728b4e8e..3105299f00 100644
--- a/dns/locale/ar/fusiondirectory.po
+++ b/dns/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po
index 885ff1e700..08e5f9a44d 100644
--- a/dns/locale/ca/fusiondirectory.po
+++ b/dns/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po
index a61a62e9de..e41b7a1414 100644
--- a/dns/locale/cs_CZ/fusiondirectory.po
+++ b/dns/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po
index 47535441e8..5c9434b6ee 100644
--- a/dns/locale/de/fusiondirectory.po
+++ b/dns/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po
index 62ea5fcb70..cc901c6a61 100644
--- a/dns/locale/el_GR/fusiondirectory.po
+++ b/dns/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po
index bed4ca99d4..bf3608c2df 100644
--- a/dns/locale/es/fusiondirectory.po
+++ b/dns/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po
index b9127b1a70..6c3b1066d2 100644
--- a/dns/locale/es_CO/fusiondirectory.po
+++ b/dns/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po
index 2735321a8d..07b5b374c3 100644
--- a/dns/locale/es_VE/fusiondirectory.po
+++ b/dns/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po
index 5455dcdc75..dcf21f2d50 100644
--- a/dns/locale/fa_IR/fusiondirectory.po
+++ b/dns/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po
index 260d95393d..66658d4a1c 100644
--- a/dns/locale/fi_FI/fusiondirectory.po
+++ b/dns/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po
index 04db322ffd..4a3ee3b5f8 100644
--- a/dns/locale/fr/fusiondirectory.po
+++ b/dns/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po
index 855e810203..80a8b9f932 100644
--- a/dns/locale/hu_HU/fusiondirectory.po
+++ b/dns/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po
index 98474bd737..e4048d85a8 100644
--- a/dns/locale/id/fusiondirectory.po
+++ b/dns/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index 8b538be4dd..eb469312a7 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dns/locale/ja/fusiondirectory.po b/dns/locale/ja/fusiondirectory.po
index afb8b368a9..244ff25331 100644
--- a/dns/locale/ja/fusiondirectory.po
+++ b/dns/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ko/fusiondirectory.po b/dns/locale/ko/fusiondirectory.po
index d7f4490d3f..6a35c80b71 100644
--- a/dns/locale/ko/fusiondirectory.po
+++ b/dns/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -179,7 +179,7 @@ msgstr "ë¶„"
 #: admin/dns/class_DnsRecordAttribute.inc:171
 #: admin/dns/class_DnsRecordAttribute.inc:198
 msgid "Seconds"
-msgstr ""
+msgstr "ì´ˆ"
 
 #: admin/dns/class_DnsRecordAttribute.inc:176
 msgid "North/South"
@@ -544,7 +544,7 @@ msgstr ""
 
 #: admin/dns/class_dnsZone.inc:780
 msgid "TTL"
-msgstr ""
+msgstr "TTL"
 
 #: admin/dns/class_dnsZone.inc:780
 msgid "Minimum TTL field that should be exported with any RR from this zone"
diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po
index 9b29f86489..5cec696ba1 100644
--- a/dns/locale/lv/fusiondirectory.po
+++ b/dns/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po
index e9d4158bd9..17ab9f9b4b 100644
--- a/dns/locale/nb/fusiondirectory.po
+++ b/dns/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po
index fa8a3f9000..eccd0b9dfe 100644
--- a/dns/locale/nl/fusiondirectory.po
+++ b/dns/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po
index f36fdb9438..14ecb88d8e 100644
--- a/dns/locale/pl/fusiondirectory.po
+++ b/dns/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po
index da920d555b..e05252de5f 100644
--- a/dns/locale/pt/fusiondirectory.po
+++ b/dns/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po
index 8c989900e0..d46276d860 100644
--- a/dns/locale/pt_BR/fusiondirectory.po
+++ b/dns/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po
index 5d2399b59f..09c2097ccf 100644
--- a/dns/locale/ru/fusiondirectory.po
+++ b/dns/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po
index f3c725815b..129aa015df 100644
--- a/dns/locale/ru@petr1708/fusiondirectory.po
+++ b/dns/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po
index d64035fb2b..2089166a84 100644
--- a/dns/locale/sv/fusiondirectory.po
+++ b/dns/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dns/locale/tr_TR/fusiondirectory.po b/dns/locale/tr_TR/fusiondirectory.po
index 245bc538a4..8bdbab717d 100644
--- a/dns/locale/tr_TR/fusiondirectory.po
+++ b/dns/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po
index ffe97f2e3e..e606c3e3b3 100644
--- a/dns/locale/ug/fusiondirectory.po
+++ b/dns/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po
index b91b3bc682..272de1a142 100644
--- a/dns/locale/vi_VN/fusiondirectory.po
+++ b/dns/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po
index c245899422..2a76ba92cb 100644
--- a/dns/locale/zh/fusiondirectory.po
+++ b/dns/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dns/locale/zh_TW/fusiondirectory.po b/dns/locale/zh_TW/fusiondirectory.po
index 97c0f76ed3..e88eb77098 100644
--- a/dns/locale/zh_TW/fusiondirectory.po
+++ b/dns/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/af_ZA/fusiondirectory.po b/dovecot/locale/af_ZA/fusiondirectory.po
index f4442b5852..bbd808f84d 100644
--- a/dovecot/locale/af_ZA/fusiondirectory.po
+++ b/dovecot/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po
index b4602d2036..8f6ae72350 100644
--- a/dovecot/locale/ar/fusiondirectory.po
+++ b/dovecot/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po
index bcc8b06b54..757905f14d 100644
--- a/dovecot/locale/ca/fusiondirectory.po
+++ b/dovecot/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po
index cf4e3f81e6..077dcb70e9 100644
--- a/dovecot/locale/cs_CZ/fusiondirectory.po
+++ b/dovecot/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po
index 558bda5fd0..22bff343ff 100644
--- a/dovecot/locale/de/fusiondirectory.po
+++ b/dovecot/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po
index 75951f8c9e..a233fc5464 100644
--- a/dovecot/locale/el_GR/fusiondirectory.po
+++ b/dovecot/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po
index 963bed8ef4..3c93e278fa 100644
--- a/dovecot/locale/es/fusiondirectory.po
+++ b/dovecot/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po
index b92b04b351..dd02b34d23 100644
--- a/dovecot/locale/es_CO/fusiondirectory.po
+++ b/dovecot/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po
index 914fa00b47..7435d2211b 100644
--- a/dovecot/locale/es_VE/fusiondirectory.po
+++ b/dovecot/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po
index 84bcfa33ea..04304bb01a 100644
--- a/dovecot/locale/fa_IR/fusiondirectory.po
+++ b/dovecot/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po
index d57579a4dd..f82cda225b 100644
--- a/dovecot/locale/fi_FI/fusiondirectory.po
+++ b/dovecot/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po
index e64e658ccd..f78328a5d2 100644
--- a/dovecot/locale/fr/fusiondirectory.po
+++ b/dovecot/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po
index 57a6c38a83..c3569d7731 100644
--- a/dovecot/locale/hu_HU/fusiondirectory.po
+++ b/dovecot/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po
index 0c6fcd8815..cef886fa7d 100644
--- a/dovecot/locale/id/fusiondirectory.po
+++ b/dovecot/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po
index abb305f92d..b4192b6285 100644
--- a/dovecot/locale/it_IT/fusiondirectory.po
+++ b/dovecot/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dovecot/locale/ja/fusiondirectory.po b/dovecot/locale/ja/fusiondirectory.po
index 83d5bcbe49..b1f6aa3785 100644
--- a/dovecot/locale/ja/fusiondirectory.po
+++ b/dovecot/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ko/fusiondirectory.po b/dovecot/locale/ko/fusiondirectory.po
index 678a438418..eaa0367f08 100644
--- a/dovecot/locale/ko/fusiondirectory.po
+++ b/dovecot/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po
index 50441fc28f..b4d882de3c 100644
--- a/dovecot/locale/lv/fusiondirectory.po
+++ b/dovecot/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po
index 04e8cab75b..7ea7849f1e 100644
--- a/dovecot/locale/nb/fusiondirectory.po
+++ b/dovecot/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po
index b3e8df9f67..e8f5aca9eb 100644
--- a/dovecot/locale/nl/fusiondirectory.po
+++ b/dovecot/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po
index 9d60813775..b6cd3416bb 100644
--- a/dovecot/locale/pl/fusiondirectory.po
+++ b/dovecot/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po
index 2dcce38e0d..9881c15569 100644
--- a/dovecot/locale/pt/fusiondirectory.po
+++ b/dovecot/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po
index a1e000ec81..4f824e2061 100644
--- a/dovecot/locale/pt_BR/fusiondirectory.po
+++ b/dovecot/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po
index 4a2532b1f2..433f851d88 100644
--- a/dovecot/locale/ru/fusiondirectory.po
+++ b/dovecot/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po
index fa3bf7ad09..569ff78a4b 100644
--- a/dovecot/locale/ru@petr1708/fusiondirectory.po
+++ b/dovecot/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po
index f3f29e393f..0551b5b141 100644
--- a/dovecot/locale/sv/fusiondirectory.po
+++ b/dovecot/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dovecot/locale/tr_TR/fusiondirectory.po b/dovecot/locale/tr_TR/fusiondirectory.po
index 76bd047891..89d0312f30 100644
--- a/dovecot/locale/tr_TR/fusiondirectory.po
+++ b/dovecot/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po
index ab48c48a90..c9ee30b582 100644
--- a/dovecot/locale/ug/fusiondirectory.po
+++ b/dovecot/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po
index 372c4cd5ed..c0059038b9 100644
--- a/dovecot/locale/vi_VN/fusiondirectory.po
+++ b/dovecot/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po
index 79e2a5ea86..63f2f0284e 100644
--- a/dovecot/locale/zh/fusiondirectory.po
+++ b/dovecot/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dovecot/locale/zh_TW/fusiondirectory.po b/dovecot/locale/zh_TW/fusiondirectory.po
index 74b423e083..feaeda3682 100644
--- a/dovecot/locale/zh_TW/fusiondirectory.po
+++ b/dovecot/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/af_ZA/fusiondirectory.po b/dsa/locale/af_ZA/fusiondirectory.po
index 16c246fdd4..f95a6b1a3b 100644
--- a/dsa/locale/af_ZA/fusiondirectory.po
+++ b/dsa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po
index e7f48de347..c1225fb9c0 100644
--- a/dsa/locale/ar/fusiondirectory.po
+++ b/dsa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po
index 5519380fe1..ba5e7b14ad 100644
--- a/dsa/locale/ca/fusiondirectory.po
+++ b/dsa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po
index 3de9b5ec0d..b2c6eec319 100644
--- a/dsa/locale/cs_CZ/fusiondirectory.po
+++ b/dsa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po
index 111b6cd812..78eb05bbf9 100644
--- a/dsa/locale/de/fusiondirectory.po
+++ b/dsa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po
index 98ba3b91ff..cce5ba68ff 100644
--- a/dsa/locale/el_GR/fusiondirectory.po
+++ b/dsa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po
index 9bc0f501a9..bf194aff66 100644
--- a/dsa/locale/es/fusiondirectory.po
+++ b/dsa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po
index 4b30870b0b..e0fe379491 100644
--- a/dsa/locale/es_CO/fusiondirectory.po
+++ b/dsa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po
index 14fbfd7498..a3dfc57627 100644
--- a/dsa/locale/es_VE/fusiondirectory.po
+++ b/dsa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po
index fbb51b4794..ab859a99c7 100644
--- a/dsa/locale/fa_IR/fusiondirectory.po
+++ b/dsa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po
index 466d32330f..cfe637c9a6 100644
--- a/dsa/locale/fi_FI/fusiondirectory.po
+++ b/dsa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po
index c5946635cd..8591d10170 100644
--- a/dsa/locale/fr/fusiondirectory.po
+++ b/dsa/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po
index 3a832194b8..90f2b4c75e 100644
--- a/dsa/locale/hu_HU/fusiondirectory.po
+++ b/dsa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po
index 03033a7177..3ab548642c 100644
--- a/dsa/locale/id/fusiondirectory.po
+++ b/dsa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po
index a88c02379a..32f830e03a 100644
--- a/dsa/locale/it_IT/fusiondirectory.po
+++ b/dsa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dsa/locale/ja/fusiondirectory.po b/dsa/locale/ja/fusiondirectory.po
index 6427fe8fc1..9a17102fb6 100644
--- a/dsa/locale/ja/fusiondirectory.po
+++ b/dsa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ko/fusiondirectory.po b/dsa/locale/ko/fusiondirectory.po
index f3c86641bf..64cbed36e6 100644
--- a/dsa/locale/ko/fusiondirectory.po
+++ b/dsa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po
index bd4b814b8e..8c7ba396b7 100644
--- a/dsa/locale/lv/fusiondirectory.po
+++ b/dsa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po
index 5697b47ec7..fdb79c246d 100644
--- a/dsa/locale/nb/fusiondirectory.po
+++ b/dsa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po
index b69978a2fd..2b74c38b4c 100644
--- a/dsa/locale/nl/fusiondirectory.po
+++ b/dsa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po
index d7e8e55e46..96f8b4fc3a 100644
--- a/dsa/locale/pl/fusiondirectory.po
+++ b/dsa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po
index 15bd6dc054..51fa213a71 100644
--- a/dsa/locale/pt/fusiondirectory.po
+++ b/dsa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po
index a7c2998816..4c50b9c836 100644
--- a/dsa/locale/pt_BR/fusiondirectory.po
+++ b/dsa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po
index de050aece2..edc705fd88 100644
--- a/dsa/locale/ru/fusiondirectory.po
+++ b/dsa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po
index d08e7486fc..1cec9ca644 100644
--- a/dsa/locale/ru@petr1708/fusiondirectory.po
+++ b/dsa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po
index ee606c51ad..04659994fc 100644
--- a/dsa/locale/sv/fusiondirectory.po
+++ b/dsa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dsa/locale/tr_TR/fusiondirectory.po b/dsa/locale/tr_TR/fusiondirectory.po
index e34377ff21..bcd61bda59 100644
--- a/dsa/locale/tr_TR/fusiondirectory.po
+++ b/dsa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po
index 35ecf1d744..d8ddbb5c84 100644
--- a/dsa/locale/ug/fusiondirectory.po
+++ b/dsa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po
index d58dd9e45d..696d32c0e8 100644
--- a/dsa/locale/vi_VN/fusiondirectory.po
+++ b/dsa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po
index 38a261d6b7..c0939facfe 100644
--- a/dsa/locale/zh/fusiondirectory.po
+++ b/dsa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dsa/locale/zh_TW/fusiondirectory.po b/dsa/locale/zh_TW/fusiondirectory.po
index 36cbfe1e39..4b268c2e80 100644
--- a/dsa/locale/zh_TW/fusiondirectory.po
+++ b/dsa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/af_ZA/fusiondirectory.po b/ejbca/locale/af_ZA/fusiondirectory.po
index 509903608f..ce7b731356 100644
--- a/ejbca/locale/af_ZA/fusiondirectory.po
+++ b/ejbca/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po
index b1830390a3..90c6ba6f7c 100644
--- a/ejbca/locale/ar/fusiondirectory.po
+++ b/ejbca/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po
index 2132c33807..4da87a2d40 100644
--- a/ejbca/locale/ca/fusiondirectory.po
+++ b/ejbca/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po
index 90dce1859b..75f90dcfa7 100644
--- a/ejbca/locale/cs_CZ/fusiondirectory.po
+++ b/ejbca/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po
index 475ea95533..523cd7bb13 100644
--- a/ejbca/locale/de/fusiondirectory.po
+++ b/ejbca/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po
index 8f2612207f..bf2d362675 100644
--- a/ejbca/locale/el_GR/fusiondirectory.po
+++ b/ejbca/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po
index caa775163b..70955a9638 100644
--- a/ejbca/locale/es/fusiondirectory.po
+++ b/ejbca/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po
index a496dcfb39..881463be3b 100644
--- a/ejbca/locale/es_CO/fusiondirectory.po
+++ b/ejbca/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po
index 5f3c523cf0..5d0645a0b0 100644
--- a/ejbca/locale/es_VE/fusiondirectory.po
+++ b/ejbca/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po
index 3aa5cde1f4..85a245a1ac 100644
--- a/ejbca/locale/fa_IR/fusiondirectory.po
+++ b/ejbca/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po
index e67934cd90..77d0f321f6 100644
--- a/ejbca/locale/fi_FI/fusiondirectory.po
+++ b/ejbca/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po
index a5f38b4451..bb8fa333d1 100644
--- a/ejbca/locale/fr/fusiondirectory.po
+++ b/ejbca/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po
index 5ab5d1116f..5f2bce703b 100644
--- a/ejbca/locale/hu_HU/fusiondirectory.po
+++ b/ejbca/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po
index 86f7b6d1c3..47c665ad6e 100644
--- a/ejbca/locale/id/fusiondirectory.po
+++ b/ejbca/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po
index d86af6758e..aee701a1f4 100644
--- a/ejbca/locale/it_IT/fusiondirectory.po
+++ b/ejbca/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ejbca/locale/ja/fusiondirectory.po b/ejbca/locale/ja/fusiondirectory.po
index 838638e6f5..056fd17ad9 100644
--- a/ejbca/locale/ja/fusiondirectory.po
+++ b/ejbca/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ko/fusiondirectory.po b/ejbca/locale/ko/fusiondirectory.po
index 5e7a419d29..a8d3367a18 100644
--- a/ejbca/locale/ko/fusiondirectory.po
+++ b/ejbca/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po
index 717747be13..436fe60739 100644
--- a/ejbca/locale/lv/fusiondirectory.po
+++ b/ejbca/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po
index 2a44524f58..c5142b3a17 100644
--- a/ejbca/locale/nb/fusiondirectory.po
+++ b/ejbca/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po
index b7750c5bdc..653c0e60fc 100644
--- a/ejbca/locale/nl/fusiondirectory.po
+++ b/ejbca/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po
index b0455057b0..e2c9d2ca9c 100644
--- a/ejbca/locale/pl/fusiondirectory.po
+++ b/ejbca/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po
index 6729594594..ee2fa1f553 100644
--- a/ejbca/locale/pt/fusiondirectory.po
+++ b/ejbca/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po
index 5dd47145cb..863bc6b9bd 100644
--- a/ejbca/locale/pt_BR/fusiondirectory.po
+++ b/ejbca/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po
index 3715bc9dd8..790694966f 100644
--- a/ejbca/locale/ru/fusiondirectory.po
+++ b/ejbca/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po
index 4e419ec286..f961521466 100644
--- a/ejbca/locale/ru@petr1708/fusiondirectory.po
+++ b/ejbca/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po
index 1b7a68841c..b7aaf048b7 100644
--- a/ejbca/locale/sv/fusiondirectory.po
+++ b/ejbca/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ejbca/locale/tr_TR/fusiondirectory.po b/ejbca/locale/tr_TR/fusiondirectory.po
index f53fa9a393..254214427f 100644
--- a/ejbca/locale/tr_TR/fusiondirectory.po
+++ b/ejbca/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po
index abd8e25315..46854b1c61 100644
--- a/ejbca/locale/ug/fusiondirectory.po
+++ b/ejbca/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po
index 8767bdc6d2..a6865e53e7 100644
--- a/ejbca/locale/vi_VN/fusiondirectory.po
+++ b/ejbca/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po
index 4698402f5b..5e0781252b 100644
--- a/ejbca/locale/zh/fusiondirectory.po
+++ b/ejbca/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ejbca/locale/zh_TW/fusiondirectory.po b/ejbca/locale/zh_TW/fusiondirectory.po
index 098c4bd5ab..19efeaa209 100644
--- a/ejbca/locale/zh_TW/fusiondirectory.po
+++ b/ejbca/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/af_ZA/fusiondirectory.po b/fai/locale/af_ZA/fusiondirectory.po
index 89af30dca7..9134733e0b 100644
--- a/fai/locale/af_ZA/fusiondirectory.po
+++ b/fai/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po
index 0f3bfae7e2..d2ed8cd0e1 100644
--- a/fai/locale/ar/fusiondirectory.po
+++ b/fai/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po
index 1ea441657b..f9410b702c 100644
--- a/fai/locale/ca/fusiondirectory.po
+++ b/fai/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po
index 127f5bc521..7b4e9a3212 100644
--- a/fai/locale/cs_CZ/fusiondirectory.po
+++ b/fai/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po
index b2c8296e54..cdf3a0b6b9 100644
--- a/fai/locale/de/fusiondirectory.po
+++ b/fai/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po
index b229a793e2..355d17c9db 100644
--- a/fai/locale/el_GR/fusiondirectory.po
+++ b/fai/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po
index 62d86545ad..e8ef04c427 100644
--- a/fai/locale/es/fusiondirectory.po
+++ b/fai/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po
index fffe43e02f..5dd044673a 100644
--- a/fai/locale/es_CO/fusiondirectory.po
+++ b/fai/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po
index 505ba0b5b4..8a2644342a 100644
--- a/fai/locale/es_VE/fusiondirectory.po
+++ b/fai/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po
index 9231c8c2d3..258853553e 100644
--- a/fai/locale/fa_IR/fusiondirectory.po
+++ b/fai/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po
index 941c4b21a9..fe1deec7c1 100644
--- a/fai/locale/fi_FI/fusiondirectory.po
+++ b/fai/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po
index 84c84408b5..dea07e36ce 100644
--- a/fai/locale/fr/fusiondirectory.po
+++ b/fai/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po
index 95049c839f..471d83d936 100644
--- a/fai/locale/hu_HU/fusiondirectory.po
+++ b/fai/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po
index ace3894a4b..1e28762e85 100644
--- a/fai/locale/id/fusiondirectory.po
+++ b/fai/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index 46d9ab6890..b05c25bfa0 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fai/locale/ja/fusiondirectory.po b/fai/locale/ja/fusiondirectory.po
index bf217ffe2f..35d4aa0250 100644
--- a/fai/locale/ja/fusiondirectory.po
+++ b/fai/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ko/fusiondirectory.po b/fai/locale/ko/fusiondirectory.po
index 7d6fa96dad..9c38dbab74 100644
--- a/fai/locale/ko/fusiondirectory.po
+++ b/fai/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -796,19 +796,19 @@ msgstr ""
 
 #: admin/systems/class_faiLogView.inc:57
 msgid "Sort down"
-msgstr ""
+msgstr "차순"
 
 #: admin/systems/class_faiLogView.inc:59
 msgid "Sort up"
-msgstr ""
+msgstr "오름차순"
 
 #: admin/systems/class_faiLogView.inc:71
 msgid "File"
-msgstr ""
+msgstr "파일"
 
 #: admin/systems/class_faiLogView.inc:72
 msgid "Date"
-msgstr ""
+msgstr "일자"
 
 #: admin/systems/class_faiLogView.inc:149
 #: admin/systems/class_faiLogView.inc:152
@@ -968,7 +968,7 @@ msgstr ""
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:48
 msgid "Timeout"
-msgstr ""
+msgstr "타임아웃"
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:48
 msgid "The timeout for bad clients. 0 to disable."
@@ -976,7 +976,7 @@ msgstr ""
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:53
 msgid "CA certificate"
-msgstr ""
+msgstr "CA 인증서"
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:53
 msgid "Path to the CA certificate file on Argonaut FAI monitor server"
@@ -984,7 +984,7 @@ msgstr ""
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:58
 msgid "Log directory"
-msgstr ""
+msgstr "로그 디렉토리"
 
 #: admin/systems/services/monitor/class_argonautFAIMonitor.inc:58
 msgid "Directory in which argonaut-fai-monitor will store its log"
diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po
index 4596f85928..a5eb58ac4f 100644
--- a/fai/locale/lv/fusiondirectory.po
+++ b/fai/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po
index 050ec6e75a..067ece3575 100644
--- a/fai/locale/nb/fusiondirectory.po
+++ b/fai/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po
index ab2c6b6f22..8f5f3342f0 100644
--- a/fai/locale/nl/fusiondirectory.po
+++ b/fai/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po
index 369ca56a3e..64378fc1d1 100644
--- a/fai/locale/pl/fusiondirectory.po
+++ b/fai/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po
index 262c4bfbf8..17ee0e72f7 100644
--- a/fai/locale/pt/fusiondirectory.po
+++ b/fai/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po
index bf04278920..88b73667cc 100644
--- a/fai/locale/pt_BR/fusiondirectory.po
+++ b/fai/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po
index c885be1cfc..7dd4862be5 100644
--- a/fai/locale/ru/fusiondirectory.po
+++ b/fai/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po
index 9a7700ac84..cdd40bfa0c 100644
--- a/fai/locale/ru@petr1708/fusiondirectory.po
+++ b/fai/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po
index b612166333..5b908514d6 100644
--- a/fai/locale/sv/fusiondirectory.po
+++ b/fai/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fai/locale/tr_TR/fusiondirectory.po b/fai/locale/tr_TR/fusiondirectory.po
index 98a1568c56..798d171fbb 100644
--- a/fai/locale/tr_TR/fusiondirectory.po
+++ b/fai/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po
index bed59910bd..2b74c6068c 100644
--- a/fai/locale/ug/fusiondirectory.po
+++ b/fai/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po
index 0970f832a4..9183515173 100644
--- a/fai/locale/vi_VN/fusiondirectory.po
+++ b/fai/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po
index 6b44a053df..43033f547c 100644
--- a/fai/locale/zh/fusiondirectory.po
+++ b/fai/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fai/locale/zh_TW/fusiondirectory.po b/fai/locale/zh_TW/fusiondirectory.po
index fe324bc49e..4e5ba13a66 100644
--- a/fai/locale/zh_TW/fusiondirectory.po
+++ b/fai/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/af_ZA/fusiondirectory.po b/freeradius/locale/af_ZA/fusiondirectory.po
index c74453a566..552e044389 100644
--- a/freeradius/locale/af_ZA/fusiondirectory.po
+++ b/freeradius/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po
index 14ff24888c..b768153922 100644
--- a/freeradius/locale/ar/fusiondirectory.po
+++ b/freeradius/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po
index 55a414afc1..d3a0d7266d 100644
--- a/freeradius/locale/ca/fusiondirectory.po
+++ b/freeradius/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po
index 73494bcf15..2fcd4da459 100644
--- a/freeradius/locale/cs_CZ/fusiondirectory.po
+++ b/freeradius/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po
index 2c5ce23d12..631361ee05 100644
--- a/freeradius/locale/de/fusiondirectory.po
+++ b/freeradius/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po
index 1c61f89a23..d5a913ac90 100644
--- a/freeradius/locale/el_GR/fusiondirectory.po
+++ b/freeradius/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po
index 8e156363a2..6d0a0f50d5 100644
--- a/freeradius/locale/es/fusiondirectory.po
+++ b/freeradius/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po
index bea4cd644b..a5bf17cc7b 100644
--- a/freeradius/locale/es_CO/fusiondirectory.po
+++ b/freeradius/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po
index 52bb36ac86..7fc5f57aa5 100644
--- a/freeradius/locale/es_VE/fusiondirectory.po
+++ b/freeradius/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po
index e0463f285e..ca7a21dcc4 100644
--- a/freeradius/locale/fa_IR/fusiondirectory.po
+++ b/freeradius/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po
index 9be706b5a4..e5800f6728 100644
--- a/freeradius/locale/fi_FI/fusiondirectory.po
+++ b/freeradius/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po
index 656dd6784f..1056b545cd 100644
--- a/freeradius/locale/fr/fusiondirectory.po
+++ b/freeradius/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po
index 9c4838fd57..beb9e0dd0e 100644
--- a/freeradius/locale/hu_HU/fusiondirectory.po
+++ b/freeradius/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po
index 21f99942d3..826c296705 100644
--- a/freeradius/locale/id/fusiondirectory.po
+++ b/freeradius/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po
index 2d3f170d5f..fda47274d4 100644
--- a/freeradius/locale/it_IT/fusiondirectory.po
+++ b/freeradius/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/freeradius/locale/ja/fusiondirectory.po b/freeradius/locale/ja/fusiondirectory.po
index c56fe02bd3..ee9f3f5910 100644
--- a/freeradius/locale/ja/fusiondirectory.po
+++ b/freeradius/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ko/fusiondirectory.po b/freeradius/locale/ko/fusiondirectory.po
index c51ded38fe..43d6b43829 100644
--- a/freeradius/locale/ko/fusiondirectory.po
+++ b/freeradius/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po
index bcbce51f25..732f92f3aa 100644
--- a/freeradius/locale/lv/fusiondirectory.po
+++ b/freeradius/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po
index 035dad38eb..631d156b51 100644
--- a/freeradius/locale/nb/fusiondirectory.po
+++ b/freeradius/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po
index 37e94d8fbb..77c2a9e32f 100644
--- a/freeradius/locale/nl/fusiondirectory.po
+++ b/freeradius/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po
index 0faf5fecdc..fe58c9a8de 100644
--- a/freeradius/locale/pl/fusiondirectory.po
+++ b/freeradius/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po
index 9a098d19f8..ff36f1e7ec 100644
--- a/freeradius/locale/pt/fusiondirectory.po
+++ b/freeradius/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po
index 6bdeab8de4..b93c05f9d8 100644
--- a/freeradius/locale/pt_BR/fusiondirectory.po
+++ b/freeradius/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po
index 5ff4777567..ebacd5f8bc 100644
--- a/freeradius/locale/ru/fusiondirectory.po
+++ b/freeradius/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po
index d0918b37d3..0dca6eb1fe 100644
--- a/freeradius/locale/ru@petr1708/fusiondirectory.po
+++ b/freeradius/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po
index 28e7ff4c41..b8672d4eb8 100644
--- a/freeradius/locale/sv/fusiondirectory.po
+++ b/freeradius/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/freeradius/locale/tr_TR/fusiondirectory.po b/freeradius/locale/tr_TR/fusiondirectory.po
index a5e803e577..2367017425 100644
--- a/freeradius/locale/tr_TR/fusiondirectory.po
+++ b/freeradius/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po
index 83808e7391..e174806d80 100644
--- a/freeradius/locale/ug/fusiondirectory.po
+++ b/freeradius/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po
index 2d7f2f7a02..0fa320a6eb 100644
--- a/freeradius/locale/vi_VN/fusiondirectory.po
+++ b/freeradius/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po
index fe399dd7f4..5fe8469d9f 100644
--- a/freeradius/locale/zh/fusiondirectory.po
+++ b/freeradius/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/freeradius/locale/zh_TW/fusiondirectory.po b/freeradius/locale/zh_TW/fusiondirectory.po
index be6a9f694d..9db86d9854 100644
--- a/freeradius/locale/zh_TW/fusiondirectory.po
+++ b/freeradius/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/af_ZA/fusiondirectory.po b/fusioninventory/locale/af_ZA/fusiondirectory.po
index c5fb255886..ef037b8087 100644
--- a/fusioninventory/locale/af_ZA/fusiondirectory.po
+++ b/fusioninventory/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po
index 8512016550..60c8862067 100644
--- a/fusioninventory/locale/ar/fusiondirectory.po
+++ b/fusioninventory/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po
index 22075cfaf5..2478e0a3e1 100644
--- a/fusioninventory/locale/ca/fusiondirectory.po
+++ b/fusioninventory/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po
index 539fbb5254..14469ee8e6 100644
--- a/fusioninventory/locale/cs_CZ/fusiondirectory.po
+++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po
index 65c1e362e4..a4a85f6a56 100644
--- a/fusioninventory/locale/de/fusiondirectory.po
+++ b/fusioninventory/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po
index 347bdddc71..b20fd13a99 100644
--- a/fusioninventory/locale/el_GR/fusiondirectory.po
+++ b/fusioninventory/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po
index 85fe891fd2..359f15b4aa 100644
--- a/fusioninventory/locale/es/fusiondirectory.po
+++ b/fusioninventory/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po
index 08bc59161e..f61bd54d84 100644
--- a/fusioninventory/locale/es_CO/fusiondirectory.po
+++ b/fusioninventory/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po
index 75b4157716..7ade6da14b 100644
--- a/fusioninventory/locale/es_VE/fusiondirectory.po
+++ b/fusioninventory/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po
index 4960ee58fe..0a44e02c7b 100644
--- a/fusioninventory/locale/fa_IR/fusiondirectory.po
+++ b/fusioninventory/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po
index f8b5ac81fa..76779945bc 100644
--- a/fusioninventory/locale/fi_FI/fusiondirectory.po
+++ b/fusioninventory/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po
index 473bc6d9a9..6437aaecc3 100644
--- a/fusioninventory/locale/fr/fusiondirectory.po
+++ b/fusioninventory/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po
index dcfb27f2e2..afc7113a3a 100644
--- a/fusioninventory/locale/hu_HU/fusiondirectory.po
+++ b/fusioninventory/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po
index 69d35092c4..919ffdfb0f 100644
--- a/fusioninventory/locale/id/fusiondirectory.po
+++ b/fusioninventory/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po
index a349e2b8b1..4bba5bfc30 100644
--- a/fusioninventory/locale/it_IT/fusiondirectory.po
+++ b/fusioninventory/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fusioninventory/locale/ja/fusiondirectory.po b/fusioninventory/locale/ja/fusiondirectory.po
index 0f100a9b3e..5d15e349fb 100644
--- a/fusioninventory/locale/ja/fusiondirectory.po
+++ b/fusioninventory/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ko/fusiondirectory.po b/fusioninventory/locale/ko/fusiondirectory.po
index 339dd37ae9..38da94d948 100644
--- a/fusioninventory/locale/ko/fusiondirectory.po
+++ b/fusioninventory/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po
index 9d3c097cab..f7b9ef1ac3 100644
--- a/fusioninventory/locale/lv/fusiondirectory.po
+++ b/fusioninventory/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po
index fa23bae0cd..a1ff115698 100644
--- a/fusioninventory/locale/nb/fusiondirectory.po
+++ b/fusioninventory/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po
index 0a5b60d201..3dcdbd0265 100644
--- a/fusioninventory/locale/nl/fusiondirectory.po
+++ b/fusioninventory/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po
index 7ee2c8f5ee..b2ce4695ed 100644
--- a/fusioninventory/locale/pl/fusiondirectory.po
+++ b/fusioninventory/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po
index a85dfd9be8..d465bb840a 100644
--- a/fusioninventory/locale/pt/fusiondirectory.po
+++ b/fusioninventory/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po
index d4bbca2063..843d0dd7fc 100644
--- a/fusioninventory/locale/pt_BR/fusiondirectory.po
+++ b/fusioninventory/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po
index 48f4c01c58..26ffbbbcd0 100644
--- a/fusioninventory/locale/ru/fusiondirectory.po
+++ b/fusioninventory/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
index ef33fad4f6..e91e35f737 100644
--- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po
+++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po
index 9a2aaba804..1cdc163c94 100644
--- a/fusioninventory/locale/sv/fusiondirectory.po
+++ b/fusioninventory/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fusioninventory/locale/tr_TR/fusiondirectory.po b/fusioninventory/locale/tr_TR/fusiondirectory.po
index c9dbcea1cb..3f60498c93 100644
--- a/fusioninventory/locale/tr_TR/fusiondirectory.po
+++ b/fusioninventory/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po
index 1fda4a08dc..4bbd250c57 100644
--- a/fusioninventory/locale/ug/fusiondirectory.po
+++ b/fusioninventory/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po
index c310807c62..af3aa6702a 100644
--- a/fusioninventory/locale/vi_VN/fusiondirectory.po
+++ b/fusioninventory/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po
index b8e1cd9d28..ba76256740 100644
--- a/fusioninventory/locale/zh/fusiondirectory.po
+++ b/fusioninventory/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fusioninventory/locale/zh_TW/fusiondirectory.po b/fusioninventory/locale/zh_TW/fusiondirectory.po
index 7e2582141f..0375fe94e1 100644
--- a/fusioninventory/locale/zh_TW/fusiondirectory.po
+++ b/fusioninventory/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/af_ZA/fusiondirectory.po b/gpg/locale/af_ZA/fusiondirectory.po
index 76480cf27b..d031b7881e 100644
--- a/gpg/locale/af_ZA/fusiondirectory.po
+++ b/gpg/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po
index 629695601e..7b35900359 100644
--- a/gpg/locale/ar/fusiondirectory.po
+++ b/gpg/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po
index 249ac3df69..744b79729b 100644
--- a/gpg/locale/ca/fusiondirectory.po
+++ b/gpg/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po
index 61ba09c1ef..07e1ed0f3c 100644
--- a/gpg/locale/cs_CZ/fusiondirectory.po
+++ b/gpg/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po
index 0ff4369ea9..92acd4a9d8 100644
--- a/gpg/locale/de/fusiondirectory.po
+++ b/gpg/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po
index 52f28e6905..6456055e2d 100644
--- a/gpg/locale/el_GR/fusiondirectory.po
+++ b/gpg/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po
index 5a34b9db6f..94020cb30e 100644
--- a/gpg/locale/es/fusiondirectory.po
+++ b/gpg/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po
index 12dd203039..a288f5238d 100644
--- a/gpg/locale/es_CO/fusiondirectory.po
+++ b/gpg/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po
index 478ba95d18..b9b549cf21 100644
--- a/gpg/locale/es_VE/fusiondirectory.po
+++ b/gpg/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po
index 4ce75f570b..d306877cc9 100644
--- a/gpg/locale/fa_IR/fusiondirectory.po
+++ b/gpg/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po
index 569d45aba4..83b3a9fba4 100644
--- a/gpg/locale/fi_FI/fusiondirectory.po
+++ b/gpg/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po
index 778259ec40..ad5d45ea32 100644
--- a/gpg/locale/fr/fusiondirectory.po
+++ b/gpg/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po
index 50ec5544d0..3a7ff6a038 100644
--- a/gpg/locale/hu_HU/fusiondirectory.po
+++ b/gpg/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po
index da3fc7e338..c027b45821 100644
--- a/gpg/locale/id/fusiondirectory.po
+++ b/gpg/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po
index 771fbacf30..77ed8b21be 100644
--- a/gpg/locale/it_IT/fusiondirectory.po
+++ b/gpg/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/gpg/locale/ja/fusiondirectory.po b/gpg/locale/ja/fusiondirectory.po
index cc145dc960..36e0a074e8 100644
--- a/gpg/locale/ja/fusiondirectory.po
+++ b/gpg/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ko/fusiondirectory.po b/gpg/locale/ko/fusiondirectory.po
index 82ae75e654..4599427f08 100644
--- a/gpg/locale/ko/fusiondirectory.po
+++ b/gpg/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po
index b66fb43293..86c7e3451e 100644
--- a/gpg/locale/lv/fusiondirectory.po
+++ b/gpg/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po
index 443e0e54a3..ea8f24abd5 100644
--- a/gpg/locale/nb/fusiondirectory.po
+++ b/gpg/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po
index d2ebd0ead5..f9bbbfdad0 100644
--- a/gpg/locale/nl/fusiondirectory.po
+++ b/gpg/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po
index b303faab2e..27495be075 100644
--- a/gpg/locale/pl/fusiondirectory.po
+++ b/gpg/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po
index afc8bab716..fa477c82e9 100644
--- a/gpg/locale/pt/fusiondirectory.po
+++ b/gpg/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po
index c02a0c74ec..4748dd79b5 100644
--- a/gpg/locale/pt_BR/fusiondirectory.po
+++ b/gpg/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po
index baa0d9e108..40714e2d8e 100644
--- a/gpg/locale/ru/fusiondirectory.po
+++ b/gpg/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po
index 7a0f618fef..59b8eb7621 100644
--- a/gpg/locale/ru@petr1708/fusiondirectory.po
+++ b/gpg/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po
index f6be836afe..ee1262d6ee 100644
--- a/gpg/locale/sv/fusiondirectory.po
+++ b/gpg/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/gpg/locale/tr_TR/fusiondirectory.po b/gpg/locale/tr_TR/fusiondirectory.po
index 731e1b058e..bfb282e54e 100644
--- a/gpg/locale/tr_TR/fusiondirectory.po
+++ b/gpg/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po
index 924438a845..8fce860072 100644
--- a/gpg/locale/ug/fusiondirectory.po
+++ b/gpg/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po
index af38c4075a..6839cb15ee 100644
--- a/gpg/locale/vi_VN/fusiondirectory.po
+++ b/gpg/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po
index 59062f53ab..e18c771641 100644
--- a/gpg/locale/zh/fusiondirectory.po
+++ b/gpg/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/gpg/locale/zh_TW/fusiondirectory.po b/gpg/locale/zh_TW/fusiondirectory.po
index 6974ab8554..84136e2bf4 100644
--- a/gpg/locale/zh_TW/fusiondirectory.po
+++ b/gpg/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/af_ZA/fusiondirectory.po b/ipmi/locale/af_ZA/fusiondirectory.po
index 79e862c39a..7ba592b18f 100644
--- a/ipmi/locale/af_ZA/fusiondirectory.po
+++ b/ipmi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po
index 2d627482bf..de13576326 100644
--- a/ipmi/locale/ar/fusiondirectory.po
+++ b/ipmi/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po
index 5498efc879..aadbc5e2c3 100644
--- a/ipmi/locale/ca/fusiondirectory.po
+++ b/ipmi/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po
index bf6a96b968..3305cfa2b1 100644
--- a/ipmi/locale/cs_CZ/fusiondirectory.po
+++ b/ipmi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po
index e60f12d30d..692757c835 100644
--- a/ipmi/locale/de/fusiondirectory.po
+++ b/ipmi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po
index 9bcedc192c..fe535d490a 100644
--- a/ipmi/locale/el_GR/fusiondirectory.po
+++ b/ipmi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po
index 3a425186e4..ff37f77078 100644
--- a/ipmi/locale/es/fusiondirectory.po
+++ b/ipmi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po
index e9f03f780b..459bf396ed 100644
--- a/ipmi/locale/es_CO/fusiondirectory.po
+++ b/ipmi/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po
index 82a582ffba..b888b7af48 100644
--- a/ipmi/locale/es_VE/fusiondirectory.po
+++ b/ipmi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po
index 2009e17a91..0cf3548d42 100644
--- a/ipmi/locale/fa_IR/fusiondirectory.po
+++ b/ipmi/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po
index 174d934fca..58e926938d 100644
--- a/ipmi/locale/fi_FI/fusiondirectory.po
+++ b/ipmi/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po
index 8438bf39aa..8e7a24f296 100644
--- a/ipmi/locale/fr/fusiondirectory.po
+++ b/ipmi/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po
index c3e1e705d6..5cd8ee745b 100644
--- a/ipmi/locale/hu_HU/fusiondirectory.po
+++ b/ipmi/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po
index e3bc937354..e3e32d6912 100644
--- a/ipmi/locale/id/fusiondirectory.po
+++ b/ipmi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po
index 514df57378..8b180e1679 100644
--- a/ipmi/locale/it_IT/fusiondirectory.po
+++ b/ipmi/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ipmi/locale/ja/fusiondirectory.po b/ipmi/locale/ja/fusiondirectory.po
index a0ed1f5343..ca587907a2 100644
--- a/ipmi/locale/ja/fusiondirectory.po
+++ b/ipmi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ko/fusiondirectory.po b/ipmi/locale/ko/fusiondirectory.po
index 1d71019ce8..dcae470ca5 100644
--- a/ipmi/locale/ko/fusiondirectory.po
+++ b/ipmi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po
index 2153c57552..02b69b0699 100644
--- a/ipmi/locale/lv/fusiondirectory.po
+++ b/ipmi/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po
index 80daa52037..45e66a74fb 100644
--- a/ipmi/locale/nb/fusiondirectory.po
+++ b/ipmi/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po
index 4e0d5e8cfa..36d7442bb5 100644
--- a/ipmi/locale/nl/fusiondirectory.po
+++ b/ipmi/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po
index cd344f29ae..f302afd6b8 100644
--- a/ipmi/locale/pl/fusiondirectory.po
+++ b/ipmi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po
index bcb46a3beb..ff662f61a4 100644
--- a/ipmi/locale/pt/fusiondirectory.po
+++ b/ipmi/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po
index 504da6b282..0fa9df5017 100644
--- a/ipmi/locale/pt_BR/fusiondirectory.po
+++ b/ipmi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po
index 9bdc018109..107b0ba4f4 100644
--- a/ipmi/locale/ru/fusiondirectory.po
+++ b/ipmi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po
index 1c8d1cd965..6939c373b6 100644
--- a/ipmi/locale/ru@petr1708/fusiondirectory.po
+++ b/ipmi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po
index 721a44c925..eb1abfa5df 100644
--- a/ipmi/locale/sv/fusiondirectory.po
+++ b/ipmi/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/tr_TR/fusiondirectory.po b/ipmi/locale/tr_TR/fusiondirectory.po
index e2cb8326ca..cc6ef5182b 100644
--- a/ipmi/locale/tr_TR/fusiondirectory.po
+++ b/ipmi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po
index 9751ec92f3..2745d39dc8 100644
--- a/ipmi/locale/ug/fusiondirectory.po
+++ b/ipmi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po
index 60fdad61c0..f5142add42 100644
--- a/ipmi/locale/vi_VN/fusiondirectory.po
+++ b/ipmi/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po
index 6aa6477092..6805d4db76 100644
--- a/ipmi/locale/zh/fusiondirectory.po
+++ b/ipmi/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh_TW/fusiondirectory.po b/ipmi/locale/zh_TW/fusiondirectory.po
index 07ff20fde7..cc3fd277a3 100644
--- a/ipmi/locale/zh_TW/fusiondirectory.po
+++ b/ipmi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/af_ZA/fusiondirectory.po b/ldapdump/locale/af_ZA/fusiondirectory.po
index e7be16abb6..2c4e2af705 100644
--- a/ldapdump/locale/af_ZA/fusiondirectory.po
+++ b/ldapdump/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po
index 259e2aa3a1..b4f5307836 100644
--- a/ldapdump/locale/ar/fusiondirectory.po
+++ b/ldapdump/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po
index 0905376ade..e6189f7363 100644
--- a/ldapdump/locale/ca/fusiondirectory.po
+++ b/ldapdump/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po
index 3c1d5d17d4..7d95d98b6b 100644
--- a/ldapdump/locale/cs_CZ/fusiondirectory.po
+++ b/ldapdump/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po
index 9b4abd70b3..9dbc7b0fe2 100644
--- a/ldapdump/locale/de/fusiondirectory.po
+++ b/ldapdump/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po
index 57d391bdf1..4c634114a8 100644
--- a/ldapdump/locale/el_GR/fusiondirectory.po
+++ b/ldapdump/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po
index 66fb2c1edf..b7b8bd7735 100644
--- a/ldapdump/locale/es/fusiondirectory.po
+++ b/ldapdump/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po
index c27aa9f600..b6a78d0329 100644
--- a/ldapdump/locale/es_CO/fusiondirectory.po
+++ b/ldapdump/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po
index f537e4af48..80d7964f79 100644
--- a/ldapdump/locale/es_VE/fusiondirectory.po
+++ b/ldapdump/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po
index cec9ad9acb..84191971d3 100644
--- a/ldapdump/locale/fa_IR/fusiondirectory.po
+++ b/ldapdump/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po
index be6aa8c763..0d32cbf5ed 100644
--- a/ldapdump/locale/fi_FI/fusiondirectory.po
+++ b/ldapdump/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po
index 140a2c38cb..81f107fb86 100644
--- a/ldapdump/locale/fr/fusiondirectory.po
+++ b/ldapdump/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po
index 025dc505fe..f374e2ef36 100644
--- a/ldapdump/locale/hu_HU/fusiondirectory.po
+++ b/ldapdump/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po
index 2a4edacb1b..330e7bf510 100644
--- a/ldapdump/locale/id/fusiondirectory.po
+++ b/ldapdump/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po
index 2d9e5fcce8..7b81ee07ec 100644
--- a/ldapdump/locale/it_IT/fusiondirectory.po
+++ b/ldapdump/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapdump/locale/ja/fusiondirectory.po b/ldapdump/locale/ja/fusiondirectory.po
index 3e529f4c31..42c2dae429 100644
--- a/ldapdump/locale/ja/fusiondirectory.po
+++ b/ldapdump/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ko/fusiondirectory.po b/ldapdump/locale/ko/fusiondirectory.po
index 2917fa4524..865291ff2c 100644
--- a/ldapdump/locale/ko/fusiondirectory.po
+++ b/ldapdump/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po
index dea7bd7cf3..c616fb5be0 100644
--- a/ldapdump/locale/lv/fusiondirectory.po
+++ b/ldapdump/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po
index 2cdfc8325e..3e42685f3c 100644
--- a/ldapdump/locale/nb/fusiondirectory.po
+++ b/ldapdump/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po
index a5545ae903..fc7495b43e 100644
--- a/ldapdump/locale/nl/fusiondirectory.po
+++ b/ldapdump/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po
index cc4b9c5618..78ba96dffa 100644
--- a/ldapdump/locale/pl/fusiondirectory.po
+++ b/ldapdump/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po
index 9d239806fa..670e954995 100644
--- a/ldapdump/locale/pt/fusiondirectory.po
+++ b/ldapdump/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po
index 41b7b5ba99..ef360f6c67 100644
--- a/ldapdump/locale/pt_BR/fusiondirectory.po
+++ b/ldapdump/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po
index 8299ae3028..72143076d1 100644
--- a/ldapdump/locale/ru/fusiondirectory.po
+++ b/ldapdump/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po
index f8a867f2dd..ea2777d07e 100644
--- a/ldapdump/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po
index 964900aa72..1fbb4da707 100644
--- a/ldapdump/locale/sv/fusiondirectory.po
+++ b/ldapdump/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapdump/locale/tr_TR/fusiondirectory.po b/ldapdump/locale/tr_TR/fusiondirectory.po
index c906fcc153..ca659a9b43 100644
--- a/ldapdump/locale/tr_TR/fusiondirectory.po
+++ b/ldapdump/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po
index fe9c2312b1..a64073044a 100644
--- a/ldapdump/locale/ug/fusiondirectory.po
+++ b/ldapdump/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po
index 0d26f37134..3a14f6d3ac 100644
--- a/ldapdump/locale/vi_VN/fusiondirectory.po
+++ b/ldapdump/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po
index 6a76d67575..5c5d6a52ee 100644
--- a/ldapdump/locale/zh/fusiondirectory.po
+++ b/ldapdump/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/zh_TW/fusiondirectory.po b/ldapdump/locale/zh_TW/fusiondirectory.po
index 4a26a09c85..a367c8eea4 100644
--- a/ldapdump/locale/zh_TW/fusiondirectory.po
+++ b/ldapdump/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/af_ZA/fusiondirectory.po b/ldapmanager/locale/af_ZA/fusiondirectory.po
index d3c94dcdd5..bf2cefe047 100644
--- a/ldapmanager/locale/af_ZA/fusiondirectory.po
+++ b/ldapmanager/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po
index dad7bc3fb0..4b2ca177b4 100644
--- a/ldapmanager/locale/ar/fusiondirectory.po
+++ b/ldapmanager/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po
index fab4f89092..fed3cc5de3 100644
--- a/ldapmanager/locale/ca/fusiondirectory.po
+++ b/ldapmanager/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po
index daebdeb2be..1bb463fb6d 100644
--- a/ldapmanager/locale/cs_CZ/fusiondirectory.po
+++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po
index f4d1c2a05c..f036bfdf03 100644
--- a/ldapmanager/locale/de/fusiondirectory.po
+++ b/ldapmanager/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po
index ecc5e259fd..0eb1635594 100644
--- a/ldapmanager/locale/el_GR/fusiondirectory.po
+++ b/ldapmanager/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po
index 62109499ad..ed15265149 100644
--- a/ldapmanager/locale/es/fusiondirectory.po
+++ b/ldapmanager/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po
index 4b0a9c9cd4..1cd4b7a612 100644
--- a/ldapmanager/locale/es_CO/fusiondirectory.po
+++ b/ldapmanager/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po
index e588274b58..831c39e79a 100644
--- a/ldapmanager/locale/es_VE/fusiondirectory.po
+++ b/ldapmanager/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po
index dcd7e9c668..80cee5cf5d 100644
--- a/ldapmanager/locale/fa_IR/fusiondirectory.po
+++ b/ldapmanager/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po
index d2c0896fdc..f8f804db00 100644
--- a/ldapmanager/locale/fi_FI/fusiondirectory.po
+++ b/ldapmanager/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po
index a40785859a..bd1b717eb7 100644
--- a/ldapmanager/locale/fr/fusiondirectory.po
+++ b/ldapmanager/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po
index a4065bdede..719a0a9c90 100644
--- a/ldapmanager/locale/hu_HU/fusiondirectory.po
+++ b/ldapmanager/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po
index 5fc55ed678..f64b30049b 100644
--- a/ldapmanager/locale/id/fusiondirectory.po
+++ b/ldapmanager/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index 169093611b..db947bb02b 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapmanager/locale/ja/fusiondirectory.po b/ldapmanager/locale/ja/fusiondirectory.po
index 2fcf9a2910..9493172cc9 100644
--- a/ldapmanager/locale/ja/fusiondirectory.po
+++ b/ldapmanager/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ko/fusiondirectory.po b/ldapmanager/locale/ko/fusiondirectory.po
index b6f25d8563..beb414cab6 100644
--- a/ldapmanager/locale/ko/fusiondirectory.po
+++ b/ldapmanager/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po
index 1b28514c3a..cf53257b58 100644
--- a/ldapmanager/locale/lv/fusiondirectory.po
+++ b/ldapmanager/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po
index 291cbf861e..18e55c9f75 100644
--- a/ldapmanager/locale/nb/fusiondirectory.po
+++ b/ldapmanager/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po
index 756ed06362..efd7276fc1 100644
--- a/ldapmanager/locale/nl/fusiondirectory.po
+++ b/ldapmanager/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po
index 20d9e49682..c1ad69260e 100644
--- a/ldapmanager/locale/pl/fusiondirectory.po
+++ b/ldapmanager/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po
index a22b03aa21..599c574387 100644
--- a/ldapmanager/locale/pt/fusiondirectory.po
+++ b/ldapmanager/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po
index 5d9759fb94..b70f478d4f 100644
--- a/ldapmanager/locale/pt_BR/fusiondirectory.po
+++ b/ldapmanager/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po
index ed037726cf..daeb8e9ff5 100644
--- a/ldapmanager/locale/ru/fusiondirectory.po
+++ b/ldapmanager/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
index d07e44c43c..f147ee8fc7 100644
--- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po
index e1a7473dfe..9f1573d451 100644
--- a/ldapmanager/locale/sv/fusiondirectory.po
+++ b/ldapmanager/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapmanager/locale/tr_TR/fusiondirectory.po b/ldapmanager/locale/tr_TR/fusiondirectory.po
index 2b4be23fe3..f3e3602dc5 100644
--- a/ldapmanager/locale/tr_TR/fusiondirectory.po
+++ b/ldapmanager/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po
index 204cdba02d..7da70605b3 100644
--- a/ldapmanager/locale/ug/fusiondirectory.po
+++ b/ldapmanager/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po
index 1ddfa3f250..bf4f885ad6 100644
--- a/ldapmanager/locale/vi_VN/fusiondirectory.po
+++ b/ldapmanager/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po
index b8e146da53..17efb1b528 100644
--- a/ldapmanager/locale/zh/fusiondirectory.po
+++ b/ldapmanager/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ldapmanager/locale/zh_TW/fusiondirectory.po b/ldapmanager/locale/zh_TW/fusiondirectory.po
index a202ba4d85..b6367207e9 100644
--- a/ldapmanager/locale/zh_TW/fusiondirectory.po
+++ b/ldapmanager/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/af_ZA/fusiondirectory.po b/mail/locale/af_ZA/fusiondirectory.po
index 11aa45dd74..b3cffc960d 100644
--- a/mail/locale/af_ZA/fusiondirectory.po
+++ b/mail/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po
index bc8ddb79af..1976972b22 100644
--- a/mail/locale/ar/fusiondirectory.po
+++ b/mail/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po
index e139608444..7404c3e6ba 100644
--- a/mail/locale/ca/fusiondirectory.po
+++ b/mail/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po
index 63909579f0..b10923cd58 100644
--- a/mail/locale/cs_CZ/fusiondirectory.po
+++ b/mail/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -240,6 +240,10 @@ msgstr "Zvolte poštovní server, na kterém bude uživatel mít svůj účet."
 msgid "Quota size"
 msgstr "kvóta objemu dat"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Ostatní adresy a přesměrování"
diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po
index 10ddabf357..6aa509d017 100644
--- a/mail/locale/de/fusiondirectory.po
+++ b/mail/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -237,6 +237,10 @@ msgstr "Wählen Sie den Mail-Server, auf dem dieses Konto angelegt werden soll"
 msgid "Quota size"
 msgstr "Kontingent-Größe"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Weitere Adressen und Weiterleitungen"
diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po
index abc625f090..7ee2568325 100644
--- a/mail/locale/el_GR/fusiondirectory.po
+++ b/mail/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -236,6 +236,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Άλλες διευθύνσεις και αναδρομολογήσεις"
diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po
index ee8f089982..3a42e401e6 100644
--- a/mail/locale/es/fusiondirectory.po
+++ b/mail/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -233,6 +233,10 @@ msgstr "Especificar el servidor de correo donde el usuario estará hospedado."
 msgid "Quota size"
 msgstr "Tamaño de la cuota"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po
index e8073d0c43..d2aa4b81dc 100644
--- a/mail/locale/es_CO/fusiondirectory.po
+++ b/mail/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po
index 7f472ca0bb..69d8fe3907 100644
--- a/mail/locale/es_VE/fusiondirectory.po
+++ b/mail/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -233,6 +233,10 @@ msgstr "Especificar el servidor de correo donde el usuario estará hospedado."
 msgid "Quota size"
 msgstr "Tamaño de cuota"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po
index bd800f3d3b..92fae922c0 100644
--- a/mail/locale/fa_IR/fusiondirectory.po
+++ b/mail/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po
index 8547d7d37c..50f11a5204 100644
--- a/mail/locale/fi_FI/fusiondirectory.po
+++ b/mail/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po
index 33ece25735..7976e9dcd4 100644
--- a/mail/locale/fr/fusiondirectory.po
+++ b/mail/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -248,6 +248,10 @@ msgstr "Indiquez le serveur de courriel pour cet utilisateur"
 msgid "Quota size"
 msgstr "Taille du quota"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr "Définir la taille du quota en MiB"
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Autres adresses et redirections"
diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po
index 9902c3295e..acbab2a705 100644
--- a/mail/locale/hu_HU/fusiondirectory.po
+++ b/mail/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po
index d0cd7858f8..24597f5d0d 100644
--- a/mail/locale/id/fusiondirectory.po
+++ b/mail/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po
index eb38e5fa29..44fc750604 100644
--- a/mail/locale/it_IT/fusiondirectory.po
+++ b/mail/locale/it_IT/fusiondirectory.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
+# Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -249,6 +249,10 @@ msgstr ""
 msgid "Quota size"
 msgstr "Dimensione della quota"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr "Definire la dimensione della quota in MiB"
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Altri indirizzi e redirezioni"
diff --git a/mail/locale/ja/fusiondirectory.po b/mail/locale/ja/fusiondirectory.po
index f588d10dca..b3f4af06f4 100644
--- a/mail/locale/ja/fusiondirectory.po
+++ b/mail/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/ko/fusiondirectory.po b/mail/locale/ko/fusiondirectory.po
index 725ca19539..b8179b80e2 100644
--- a/mail/locale/ko/fusiondirectory.po
+++ b/mail/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -144,21 +144,23 @@ msgstr "계정 생성에 사용되는 속성"
 
 #: config/mail/class_mailPluginConfig.inc:50
 msgid "User account template"
-msgstr ""
+msgstr "사용자 계정 템플릿"
 
 #: config/mail/class_mailPluginConfig.inc:51
 msgid ""
 "Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
+"사용자 계정 생성 문법을 재정의합니다.\n"
+"기본값은 %PREFIX1%%UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:55
 msgid "Group account template"
-msgstr ""
+msgstr "그룹 계정 템플릿"
 
 #: config/mail/class_mailPluginConfig.inc:56
 msgid ""
 "Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
-msgstr ""
+msgstr "그룹 계정 생성 문법을 재정의합니다.  기본값은 %PREFIX1%%UATTRIB%."
 
 #: config/mail/class_mailPluginConfig.inc:60
 msgid "Use cyrus UNIX style"
@@ -166,7 +168,7 @@ msgstr "cyrus 유닉스 방식 사용"
 
 #: config/mail/class_mailPluginConfig.inc:61
 msgid "Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in IMAP."
-msgstr ""
+msgstr "\"foo / bar\" 또는 \"foo.bar\"를 IMAP에서 네임스페이스로 사용해야하는지 여부를 결정합니다."
 
 #: config/mail/class_mailPluginConfig.inc:65
 msgid "Delete mailbox on account deletion"
@@ -233,6 +235,10 @@ msgstr "호스팅 중인 메일서버를 지정하시오."
 msgid "Quota size"
 msgstr "Quota 크기"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr "MiB에서 할당량 크기 정의"
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "기타 주소 및 전달"
diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po
index 34dc9718aa..c58551a4a9 100644
--- a/mail/locale/lv/fusiondirectory.po
+++ b/mail/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po
index 3977ec89af..8291b7cc50 100644
--- a/mail/locale/nb/fusiondirectory.po
+++ b/mail/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po
index ec1992e2a7..92fa9cbe4b 100644
--- a/mail/locale/nl/fusiondirectory.po
+++ b/mail/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -239,6 +239,10 @@ msgstr "Specificeer de mailserver waarop het account opgeslagen wordt"
 msgid "Quota size"
 msgstr "Quota grootte"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "andere adressen en omleidingen"
diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po
index 727e38e0b4..dbb4e25ceb 100644
--- a/mail/locale/pl/fusiondirectory.po
+++ b/mail/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -233,6 +233,10 @@ msgstr "Wybierz serwer poczty który będzie przechowywał skrzynkę użytkownik
 msgid "Quota size"
 msgstr "Rozmiar Quoty"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po
index 5781581b07..68fc48e7a3 100644
--- a/mail/locale/pt/fusiondirectory.po
+++ b/mail/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po
index f86299fce9..b8a1fc5d0b 100644
--- a/mail/locale/pt_BR/fusiondirectory.po
+++ b/mail/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -233,6 +233,10 @@ msgstr "Especifique o servidor de correio que o usuário está hospedado"
 msgid "Quota size"
 msgstr "Tamanho da cota"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po
index 40cef782e3..eb8ca8e46f 100644
--- a/mail/locale/ru/fusiondirectory.po
+++ b/mail/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -235,6 +235,10 @@ msgstr "Выберите почтовый сервер для учетной з
 msgid "Quota size"
 msgstr "Размер квоты"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr "Другие адреса и редиректы (перенаправления)"
diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po
index ebbffcaf8b..43aa353bd4 100644
--- a/mail/locale/ru@petr1708/fusiondirectory.po
+++ b/mail/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po
index 5cdde5d295..c5c04379de 100644
--- a/mail/locale/sv/fusiondirectory.po
+++ b/mail/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/tr_TR/fusiondirectory.po b/mail/locale/tr_TR/fusiondirectory.po
index d550475008..b7868ca242 100644
--- a/mail/locale/tr_TR/fusiondirectory.po
+++ b/mail/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po
index 3e1213fc2a..b228ecce00 100644
--- a/mail/locale/ug/fusiondirectory.po
+++ b/mail/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po
index 3887f4af06..34969d1c07 100644
--- a/mail/locale/vi_VN/fusiondirectory.po
+++ b/mail/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -233,6 +233,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po
index 9fa4992164..fe69cbd965 100644
--- a/mail/locale/zh/fusiondirectory.po
+++ b/mail/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -233,6 +233,10 @@ msgstr "描述该用户账号所要创建于的邮件服务器"
 msgid "Quota size"
 msgstr "Quota 大小"
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mail/locale/zh_TW/fusiondirectory.po b/mail/locale/zh_TW/fusiondirectory.po
index ee27d80257..118f18119d 100644
--- a/mail/locale/zh_TW/fusiondirectory.po
+++ b/mail/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Quota size"
 msgstr ""
 
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
+msgstr ""
+
 #: personal/mail/class_mailAccount.inc:115
 msgid "Other addresses and redirections"
 msgstr ""
diff --git a/mixedgroups/locale/af_ZA/fusiondirectory.po b/mixedgroups/locale/af_ZA/fusiondirectory.po
index 848ebedd95..9aa76217a6 100644
--- a/mixedgroups/locale/af_ZA/fusiondirectory.po
+++ b/mixedgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po
index 0c4a6dbf57..f273e2272c 100644
--- a/mixedgroups/locale/ar/fusiondirectory.po
+++ b/mixedgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po
index e21d258230..f39d5b3118 100644
--- a/mixedgroups/locale/ca/fusiondirectory.po
+++ b/mixedgroups/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po
index cc5a5b2ae0..e50d06eda6 100644
--- a/mixedgroups/locale/cs_CZ/fusiondirectory.po
+++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po
index 469c435a7d..4ba542622b 100644
--- a/mixedgroups/locale/de/fusiondirectory.po
+++ b/mixedgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po
index 482da1cdaf..01f9ebf0a1 100644
--- a/mixedgroups/locale/el_GR/fusiondirectory.po
+++ b/mixedgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po
index 1dd560b976..a3625de6c7 100644
--- a/mixedgroups/locale/es/fusiondirectory.po
+++ b/mixedgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po
index a18db1f769..54ab60c0bf 100644
--- a/mixedgroups/locale/es_CO/fusiondirectory.po
+++ b/mixedgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po
index b68962b684..d476662282 100644
--- a/mixedgroups/locale/es_VE/fusiondirectory.po
+++ b/mixedgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po
index dc90071fe2..383dac869a 100644
--- a/mixedgroups/locale/fa_IR/fusiondirectory.po
+++ b/mixedgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po
index 4560fb7299..2f9babefb4 100644
--- a/mixedgroups/locale/fi_FI/fusiondirectory.po
+++ b/mixedgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po
index a670e5a330..a5c3102b88 100644
--- a/mixedgroups/locale/fr/fusiondirectory.po
+++ b/mixedgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po
index 60415df2e7..cce32b4105 100644
--- a/mixedgroups/locale/hu_HU/fusiondirectory.po
+++ b/mixedgroups/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po
index 0bf8957b2f..ac6dbf2879 100644
--- a/mixedgroups/locale/id/fusiondirectory.po
+++ b/mixedgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po
index 23a5295c36..58b612500b 100644
--- a/mixedgroups/locale/it_IT/fusiondirectory.po
+++ b/mixedgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mixedgroups/locale/ja/fusiondirectory.po b/mixedgroups/locale/ja/fusiondirectory.po
index 1ab3437e7b..99c605dd21 100644
--- a/mixedgroups/locale/ja/fusiondirectory.po
+++ b/mixedgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ko/fusiondirectory.po b/mixedgroups/locale/ko/fusiondirectory.po
index ef401c9703..e45874d82e 100644
--- a/mixedgroups/locale/ko/fusiondirectory.po
+++ b/mixedgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po
index 7713b42239..e2e02494e2 100644
--- a/mixedgroups/locale/lv/fusiondirectory.po
+++ b/mixedgroups/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po
index d27f6a784a..43d5e63581 100644
--- a/mixedgroups/locale/nb/fusiondirectory.po
+++ b/mixedgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po
index 18daf0a4c4..76fc1065f0 100644
--- a/mixedgroups/locale/nl/fusiondirectory.po
+++ b/mixedgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po
index e9a6002da7..453a609c9e 100644
--- a/mixedgroups/locale/pl/fusiondirectory.po
+++ b/mixedgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po
index 6b5dcac083..767aeeb921 100644
--- a/mixedgroups/locale/pt/fusiondirectory.po
+++ b/mixedgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po
index bc3b6a3ddd..ec4e790341 100644
--- a/mixedgroups/locale/pt_BR/fusiondirectory.po
+++ b/mixedgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po
index 50ccbdbf6f..7781104b6c 100644
--- a/mixedgroups/locale/ru/fusiondirectory.po
+++ b/mixedgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
index 7fc02a38bb..b52de9ffc5 100644
--- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po
index e4b5cf3721..ab26f41572 100644
--- a/mixedgroups/locale/sv/fusiondirectory.po
+++ b/mixedgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mixedgroups/locale/tr_TR/fusiondirectory.po b/mixedgroups/locale/tr_TR/fusiondirectory.po
index 8bbee507df..6080a4c8ff 100644
--- a/mixedgroups/locale/tr_TR/fusiondirectory.po
+++ b/mixedgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po
index b6abb95882..0348973109 100644
--- a/mixedgroups/locale/ug/fusiondirectory.po
+++ b/mixedgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po
index dab26c560c..94640ec126 100644
--- a/mixedgroups/locale/vi_VN/fusiondirectory.po
+++ b/mixedgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po
index f84e81901c..1537869681 100644
--- a/mixedgroups/locale/zh/fusiondirectory.po
+++ b/mixedgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mixedgroups/locale/zh_TW/fusiondirectory.po b/mixedgroups/locale/zh_TW/fusiondirectory.po
index 5d59f06ec3..a5dfded9f1 100644
--- a/mixedgroups/locale/zh_TW/fusiondirectory.po
+++ b/mixedgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/af_ZA/fusiondirectory.po b/nagios/locale/af_ZA/fusiondirectory.po
index 9f85afc848..cc1d7bfbec 100644
--- a/nagios/locale/af_ZA/fusiondirectory.po
+++ b/nagios/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po
index d36521e749..74e3707628 100644
--- a/nagios/locale/ar/fusiondirectory.po
+++ b/nagios/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po
index ae24a676bd..f8eaaa38ed 100644
--- a/nagios/locale/ca/fusiondirectory.po
+++ b/nagios/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po
index 66b537550d..1ca34e2bb6 100644
--- a/nagios/locale/cs_CZ/fusiondirectory.po
+++ b/nagios/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po
index a63a168108..333da00c97 100644
--- a/nagios/locale/de/fusiondirectory.po
+++ b/nagios/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po
index 66e3a69923..48c1d2e92d 100644
--- a/nagios/locale/el_GR/fusiondirectory.po
+++ b/nagios/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po
index eee7407bd4..8d86baf754 100644
--- a/nagios/locale/es/fusiondirectory.po
+++ b/nagios/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po
index eca4d3d0e8..a3fb198e73 100644
--- a/nagios/locale/es_CO/fusiondirectory.po
+++ b/nagios/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po
index 725989675b..bc092a3be5 100644
--- a/nagios/locale/es_VE/fusiondirectory.po
+++ b/nagios/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po
index 81f9c2b6bd..726dcfe376 100644
--- a/nagios/locale/fa_IR/fusiondirectory.po
+++ b/nagios/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po
index 52876f2674..3a1c44cd7e 100644
--- a/nagios/locale/fi_FI/fusiondirectory.po
+++ b/nagios/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po
index 1118e4777a..74f3ca06da 100644
--- a/nagios/locale/fr/fusiondirectory.po
+++ b/nagios/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po
index 989bd16076..82809eff16 100644
--- a/nagios/locale/hu_HU/fusiondirectory.po
+++ b/nagios/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po
index 0041113ad3..15ed497887 100644
--- a/nagios/locale/id/fusiondirectory.po
+++ b/nagios/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po
index 382489c3ba..98e37d4f69 100644
--- a/nagios/locale/it_IT/fusiondirectory.po
+++ b/nagios/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/nagios/locale/ja/fusiondirectory.po b/nagios/locale/ja/fusiondirectory.po
index dfe6d76733..b5ab46f324 100644
--- a/nagios/locale/ja/fusiondirectory.po
+++ b/nagios/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ko/fusiondirectory.po b/nagios/locale/ko/fusiondirectory.po
index 89b96d6eea..98008a69ee 100644
--- a/nagios/locale/ko/fusiondirectory.po
+++ b/nagios/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po
index 6dc6b717c5..3f924be0c8 100644
--- a/nagios/locale/lv/fusiondirectory.po
+++ b/nagios/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po
index 01f91f1e0c..d6fd9d22f3 100644
--- a/nagios/locale/nb/fusiondirectory.po
+++ b/nagios/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po
index c5db26dc92..2b51ebd4fc 100644
--- a/nagios/locale/nl/fusiondirectory.po
+++ b/nagios/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po
index e2c91af2d0..fd91943175 100644
--- a/nagios/locale/pl/fusiondirectory.po
+++ b/nagios/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po
index c48b8beb89..62c8453324 100644
--- a/nagios/locale/pt/fusiondirectory.po
+++ b/nagios/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po
index 0d7de1f401..997bc7a2e5 100644
--- a/nagios/locale/pt_BR/fusiondirectory.po
+++ b/nagios/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po
index 76d63ea729..4cf54da8bf 100644
--- a/nagios/locale/ru/fusiondirectory.po
+++ b/nagios/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po
index 157943f3c6..c3f38e8e25 100644
--- a/nagios/locale/ru@petr1708/fusiondirectory.po
+++ b/nagios/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po
index 9bc48d60cc..94721edc80 100644
--- a/nagios/locale/sv/fusiondirectory.po
+++ b/nagios/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/nagios/locale/tr_TR/fusiondirectory.po b/nagios/locale/tr_TR/fusiondirectory.po
index 2851ec30bb..3b3d9b182b 100644
--- a/nagios/locale/tr_TR/fusiondirectory.po
+++ b/nagios/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po
index 606a94fc9b..7d763f27a3 100644
--- a/nagios/locale/ug/fusiondirectory.po
+++ b/nagios/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po
index af45f3f574..7169bcdab5 100644
--- a/nagios/locale/vi_VN/fusiondirectory.po
+++ b/nagios/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po
index 4a6230e97e..e88d5bfa07 100644
--- a/nagios/locale/zh/fusiondirectory.po
+++ b/nagios/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/nagios/locale/zh_TW/fusiondirectory.po b/nagios/locale/zh_TW/fusiondirectory.po
index f3e57fbf58..bc05a6931f 100644
--- a/nagios/locale/zh_TW/fusiondirectory.po
+++ b/nagios/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/af_ZA/fusiondirectory.po b/netgroups/locale/af_ZA/fusiondirectory.po
index a603033d1d..4265264ab2 100644
--- a/netgroups/locale/af_ZA/fusiondirectory.po
+++ b/netgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po
index 979455746c..33eb361791 100644
--- a/netgroups/locale/ar/fusiondirectory.po
+++ b/netgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po
index 69b6057a7a..5391772b35 100644
--- a/netgroups/locale/ca/fusiondirectory.po
+++ b/netgroups/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po
index 5e1fba1877..46ab658f2c 100644
--- a/netgroups/locale/cs_CZ/fusiondirectory.po
+++ b/netgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po
index 0b9a063be8..0676cf6ac0 100644
--- a/netgroups/locale/de/fusiondirectory.po
+++ b/netgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po
index 7b69f4fb74..c8ee23fb41 100644
--- a/netgroups/locale/el_GR/fusiondirectory.po
+++ b/netgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po
index ba4d5e0402..56d4b0bf78 100644
--- a/netgroups/locale/es/fusiondirectory.po
+++ b/netgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po
index 7ae2022638..34a5d201e6 100644
--- a/netgroups/locale/es_CO/fusiondirectory.po
+++ b/netgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po
index 2f9b6f792f..444bec1998 100644
--- a/netgroups/locale/es_VE/fusiondirectory.po
+++ b/netgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po
index b49c4f30c4..459a5663d8 100644
--- a/netgroups/locale/fa_IR/fusiondirectory.po
+++ b/netgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po
index 9d95631847..0150b49118 100644
--- a/netgroups/locale/fi_FI/fusiondirectory.po
+++ b/netgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po
index 2f4c4e64d2..cd810b8bc0 100644
--- a/netgroups/locale/fr/fusiondirectory.po
+++ b/netgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po
index 484171388f..d9357d1f9f 100644
--- a/netgroups/locale/hu_HU/fusiondirectory.po
+++ b/netgroups/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po
index d0e392d97b..608f42528b 100644
--- a/netgroups/locale/id/fusiondirectory.po
+++ b/netgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po
index 69f1cf9a9b..aef81f9858 100644
--- a/netgroups/locale/it_IT/fusiondirectory.po
+++ b/netgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/netgroups/locale/ja/fusiondirectory.po b/netgroups/locale/ja/fusiondirectory.po
index 0fff0e569b..a1914cf674 100644
--- a/netgroups/locale/ja/fusiondirectory.po
+++ b/netgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ko/fusiondirectory.po b/netgroups/locale/ko/fusiondirectory.po
index 9d7b7c9989..a486ad96ee 100644
--- a/netgroups/locale/ko/fusiondirectory.po
+++ b/netgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po
index 9fe0f02379..33e75c0878 100644
--- a/netgroups/locale/lv/fusiondirectory.po
+++ b/netgroups/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po
index c320778845..24bff48470 100644
--- a/netgroups/locale/nb/fusiondirectory.po
+++ b/netgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po
index 149c82a40b..eccd22a75e 100644
--- a/netgroups/locale/nl/fusiondirectory.po
+++ b/netgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po
index 67ee3bb7ff..407e7d97a4 100644
--- a/netgroups/locale/pl/fusiondirectory.po
+++ b/netgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po
index a38687a52b..498851e1d3 100644
--- a/netgroups/locale/pt/fusiondirectory.po
+++ b/netgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po
index 8edc86de8b..3d9b84a503 100644
--- a/netgroups/locale/pt_BR/fusiondirectory.po
+++ b/netgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po
index 819dd6d445..b0670b8829 100644
--- a/netgroups/locale/ru/fusiondirectory.po
+++ b/netgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po
index e85f4169af..accb69f6c0 100644
--- a/netgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/netgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po
index e52875de21..7da477d666 100644
--- a/netgroups/locale/sv/fusiondirectory.po
+++ b/netgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/netgroups/locale/tr_TR/fusiondirectory.po b/netgroups/locale/tr_TR/fusiondirectory.po
index c4b0001997..320178afb0 100644
--- a/netgroups/locale/tr_TR/fusiondirectory.po
+++ b/netgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po
index 39c57dc519..0179710f3e 100644
--- a/netgroups/locale/ug/fusiondirectory.po
+++ b/netgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po
index de8c3c0f56..f0020b2eaf 100644
--- a/netgroups/locale/vi_VN/fusiondirectory.po
+++ b/netgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po
index 48a3db4143..47321787a8 100644
--- a/netgroups/locale/zh/fusiondirectory.po
+++ b/netgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/netgroups/locale/zh_TW/fusiondirectory.po b/netgroups/locale/zh_TW/fusiondirectory.po
index 12e43789d5..dc4af5a4cf 100644
--- a/netgroups/locale/zh_TW/fusiondirectory.po
+++ b/netgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/af_ZA/fusiondirectory.po b/newsletter/locale/af_ZA/fusiondirectory.po
index afaa2beac2..0510cd7b76 100644
--- a/newsletter/locale/af_ZA/fusiondirectory.po
+++ b/newsletter/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po
index 3c03530f96..b7fa1affd4 100644
--- a/newsletter/locale/ar/fusiondirectory.po
+++ b/newsletter/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po
index 2de488759a..baa7356288 100644
--- a/newsletter/locale/ca/fusiondirectory.po
+++ b/newsletter/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po
index 3b5c928f2a..5065485eb1 100644
--- a/newsletter/locale/cs_CZ/fusiondirectory.po
+++ b/newsletter/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po
index 73a60bbed7..7e9387cc7c 100644
--- a/newsletter/locale/de/fusiondirectory.po
+++ b/newsletter/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po
index 5a4d2805fb..9f985b89bb 100644
--- a/newsletter/locale/el_GR/fusiondirectory.po
+++ b/newsletter/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po
index e0d1315546..1bfb589bdc 100644
--- a/newsletter/locale/es/fusiondirectory.po
+++ b/newsletter/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po
index faa5df5937..e55b003293 100644
--- a/newsletter/locale/es_CO/fusiondirectory.po
+++ b/newsletter/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po
index 2d7549245b..f283a7b96b 100644
--- a/newsletter/locale/es_VE/fusiondirectory.po
+++ b/newsletter/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po
index 3fd7c69389..9a6a5c07b7 100644
--- a/newsletter/locale/fa_IR/fusiondirectory.po
+++ b/newsletter/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po
index 6982e27f49..1832b51f97 100644
--- a/newsletter/locale/fi_FI/fusiondirectory.po
+++ b/newsletter/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po
index 3613082da4..5dfcc2f5ad 100644
--- a/newsletter/locale/fr/fusiondirectory.po
+++ b/newsletter/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po
index 1544b861c9..7eed70b965 100644
--- a/newsletter/locale/hu_HU/fusiondirectory.po
+++ b/newsletter/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po
index 7c9291d8b3..1c70488656 100644
--- a/newsletter/locale/id/fusiondirectory.po
+++ b/newsletter/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po
index 45023e520b..b6657cfe83 100644
--- a/newsletter/locale/it_IT/fusiondirectory.po
+++ b/newsletter/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/newsletter/locale/ja/fusiondirectory.po b/newsletter/locale/ja/fusiondirectory.po
index 9842ae6ac5..476de5259a 100644
--- a/newsletter/locale/ja/fusiondirectory.po
+++ b/newsletter/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ko/fusiondirectory.po b/newsletter/locale/ko/fusiondirectory.po
index ee29484277..7dd6ef2522 100644
--- a/newsletter/locale/ko/fusiondirectory.po
+++ b/newsletter/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po
index 8389637153..b6b50539db 100644
--- a/newsletter/locale/lv/fusiondirectory.po
+++ b/newsletter/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po
index b716ef2035..df58ddde53 100644
--- a/newsletter/locale/nb/fusiondirectory.po
+++ b/newsletter/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po
index 63be7407ef..b22600998e 100644
--- a/newsletter/locale/nl/fusiondirectory.po
+++ b/newsletter/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po
index d9950c6203..4059e93d62 100644
--- a/newsletter/locale/pl/fusiondirectory.po
+++ b/newsletter/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po
index 10b215fb18..632c8c81bc 100644
--- a/newsletter/locale/pt/fusiondirectory.po
+++ b/newsletter/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po
index cb0c3e20dc..01967d16f6 100644
--- a/newsletter/locale/pt_BR/fusiondirectory.po
+++ b/newsletter/locale/pt_BR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po
index f27c34898e..182e27e9b7 100644
--- a/newsletter/locale/ru/fusiondirectory.po
+++ b/newsletter/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po
index c5417e02be..bb0fd4bb3f 100644
--- a/newsletter/locale/ru@petr1708/fusiondirectory.po
+++ b/newsletter/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po
index 13604c0b4e..a43a3df48d 100644
--- a/newsletter/locale/sv/fusiondirectory.po
+++ b/newsletter/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/tr_TR/fusiondirectory.po b/newsletter/locale/tr_TR/fusiondirectory.po
index 4d37a40ad9..2272de6e19 100644
--- a/newsletter/locale/tr_TR/fusiondirectory.po
+++ b/newsletter/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po
index ba35177c05..1bb9c6a65c 100644
--- a/newsletter/locale/ug/fusiondirectory.po
+++ b/newsletter/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po
index 9bc4f9a5ed..1e7b26911f 100644
--- a/newsletter/locale/vi_VN/fusiondirectory.po
+++ b/newsletter/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po
index 92638dcd54..a21db59307 100644
--- a/newsletter/locale/zh/fusiondirectory.po
+++ b/newsletter/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh_TW/fusiondirectory.po b/newsletter/locale/zh_TW/fusiondirectory.po
index 6da3c478f2..59bc90d1dd 100644
--- a/newsletter/locale/zh_TW/fusiondirectory.po
+++ b/newsletter/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/af_ZA/fusiondirectory.po b/opsi/locale/af_ZA/fusiondirectory.po
index 55d8bacd34..5adb8512ed 100644
--- a/opsi/locale/af_ZA/fusiondirectory.po
+++ b/opsi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po
index 5e5e0f2a49..113bc2d508 100644
--- a/opsi/locale/ar/fusiondirectory.po
+++ b/opsi/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po
index bb27d7c75b..4d1bf876e1 100644
--- a/opsi/locale/ca/fusiondirectory.po
+++ b/opsi/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po
index 78c0720e5a..4c9aee6347 100644
--- a/opsi/locale/cs_CZ/fusiondirectory.po
+++ b/opsi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po
index 16fb62e2e2..d33bf4147a 100644
--- a/opsi/locale/de/fusiondirectory.po
+++ b/opsi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po
index 189a8bb314..0fd28f8961 100644
--- a/opsi/locale/el_GR/fusiondirectory.po
+++ b/opsi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po
index f9cd0e57aa..d991695a9a 100644
--- a/opsi/locale/es/fusiondirectory.po
+++ b/opsi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po
index e1b5861419..27892dff2b 100644
--- a/opsi/locale/es_CO/fusiondirectory.po
+++ b/opsi/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po
index 979f16a1f9..e4b956ec37 100644
--- a/opsi/locale/es_VE/fusiondirectory.po
+++ b/opsi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po
index 46dd90b46e..fbbd04bd89 100644
--- a/opsi/locale/fa_IR/fusiondirectory.po
+++ b/opsi/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po
index ec00ecbeee..953dbe835a 100644
--- a/opsi/locale/fi_FI/fusiondirectory.po
+++ b/opsi/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po
index 696f9f621a..8ccd548fab 100644
--- a/opsi/locale/fr/fusiondirectory.po
+++ b/opsi/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po
index 62a00148d1..9047cdb9c6 100644
--- a/opsi/locale/hu_HU/fusiondirectory.po
+++ b/opsi/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po
index 1ba2ff94ff..b947e1fbe9 100644
--- a/opsi/locale/id/fusiondirectory.po
+++ b/opsi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index 1f020b0808..64f4614612 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/opsi/locale/ja/fusiondirectory.po b/opsi/locale/ja/fusiondirectory.po
index 3f8a377557..9ba6d5d240 100644
--- a/opsi/locale/ja/fusiondirectory.po
+++ b/opsi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ko/fusiondirectory.po b/opsi/locale/ko/fusiondirectory.po
index 20e8797b82..ff3cc2843e 100644
--- a/opsi/locale/ko/fusiondirectory.po
+++ b/opsi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po
index f96c17f48a..515c233b9e 100644
--- a/opsi/locale/lv/fusiondirectory.po
+++ b/opsi/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po
index fe7638e414..8de209d8b7 100644
--- a/opsi/locale/nb/fusiondirectory.po
+++ b/opsi/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po
index 84dbb88724..57d0805ab9 100644
--- a/opsi/locale/nl/fusiondirectory.po
+++ b/opsi/locale/nl/fusiondirectory.po
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po
index 2deb0cb5f0..381f77994c 100644
--- a/opsi/locale/pl/fusiondirectory.po
+++ b/opsi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po
index d789990b35..333c4b0107 100644
--- a/opsi/locale/pt/fusiondirectory.po
+++ b/opsi/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po
index f5316231ca..b0f5b8df77 100644
--- a/opsi/locale/pt_BR/fusiondirectory.po
+++ b/opsi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po
index 7b423a0590..39c6ebacf9 100644
--- a/opsi/locale/ru/fusiondirectory.po
+++ b/opsi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po
index 90cfbc23cb..b13e8b290a 100644
--- a/opsi/locale/ru@petr1708/fusiondirectory.po
+++ b/opsi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po
index 2c0eab462c..b472b047c2 100644
--- a/opsi/locale/sv/fusiondirectory.po
+++ b/opsi/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/opsi/locale/tr_TR/fusiondirectory.po b/opsi/locale/tr_TR/fusiondirectory.po
index 6fa8bed800..2b0c666de2 100644
--- a/opsi/locale/tr_TR/fusiondirectory.po
+++ b/opsi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po
index 91a8e58389..3e9649b0d1 100644
--- a/opsi/locale/ug/fusiondirectory.po
+++ b/opsi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po
index 6500c6c015..f27207c41d 100644
--- a/opsi/locale/vi_VN/fusiondirectory.po
+++ b/opsi/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po
index fa8f7041cf..a5697a0ba3 100644
--- a/opsi/locale/zh/fusiondirectory.po
+++ b/opsi/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/opsi/locale/zh_TW/fusiondirectory.po b/opsi/locale/zh_TW/fusiondirectory.po
index 0e2e6d2da8..ffba34948b 100644
--- a/opsi/locale/zh_TW/fusiondirectory.po
+++ b/opsi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/af_ZA/fusiondirectory.po b/personal/locale/af_ZA/fusiondirectory.po
index 3646b7419a..43a4cda344 100644
--- a/personal/locale/af_ZA/fusiondirectory.po
+++ b/personal/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po
index d6bb558058..9871ce3cdb 100644
--- a/personal/locale/ar/fusiondirectory.po
+++ b/personal/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po
index cb99c38ad2..64f2a52d9a 100644
--- a/personal/locale/ca/fusiondirectory.po
+++ b/personal/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po
index 7d939d98e1..ddf0f7265b 100644
--- a/personal/locale/cs_CZ/fusiondirectory.po
+++ b/personal/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po
index e0de9df52b..7cf26cbb60 100644
--- a/personal/locale/de/fusiondirectory.po
+++ b/personal/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po
index 2d8816bf5a..d41e8bd1fb 100644
--- a/personal/locale/el_GR/fusiondirectory.po
+++ b/personal/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po
index 6f811cbfd1..ca62702c77 100644
--- a/personal/locale/es/fusiondirectory.po
+++ b/personal/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po
index 9211e2d862..8cbe3866d8 100644
--- a/personal/locale/es_CO/fusiondirectory.po
+++ b/personal/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po
index 45ed7833ee..9bf40ce86e 100644
--- a/personal/locale/es_VE/fusiondirectory.po
+++ b/personal/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po
index 36b943bdd4..22d2c8e136 100644
--- a/personal/locale/fa_IR/fusiondirectory.po
+++ b/personal/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po
index 8c0912f725..7b3d85efd9 100644
--- a/personal/locale/fi_FI/fusiondirectory.po
+++ b/personal/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po
index 750b6631bd..c0fbbc45dc 100644
--- a/personal/locale/fr/fusiondirectory.po
+++ b/personal/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po
index 2139aade8c..1d05719ce4 100644
--- a/personal/locale/hu_HU/fusiondirectory.po
+++ b/personal/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po
index 6ee06c46a1..6e0efc78aa 100644
--- a/personal/locale/id/fusiondirectory.po
+++ b/personal/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index 54e7dcec9d..a158cb947c 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Paola Penati <paola.penati@opensides.be>, 2018
-# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
+# Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/personal/locale/ja/fusiondirectory.po b/personal/locale/ja/fusiondirectory.po
index a03d774e90..a338e8ad82 100644
--- a/personal/locale/ja/fusiondirectory.po
+++ b/personal/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ko/fusiondirectory.po b/personal/locale/ko/fusiondirectory.po
index 8d79a2a3eb..84ec1a8be7 100644
--- a/personal/locale/ko/fusiondirectory.po
+++ b/personal/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -181,4 +181,4 @@ msgstr "ORCID 계정 ID는 XXXX-XXXX-XXXX-XXXX와 같아야합니다. 여기서
 
 #: personal/personal/class_socialHandlers.inc:148
 msgid "Incorrect ORCID value, the checksum does not match"
-msgstr ""
+msgstr "체크섬이 일치하지 않아 ORCID 값이 유효하지 않습니다. "
diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po
index 3457bca9fd..4512ae1b9f 100644
--- a/personal/locale/lv/fusiondirectory.po
+++ b/personal/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po
index 5f02f07623..1077a3949a 100644
--- a/personal/locale/nb/fusiondirectory.po
+++ b/personal/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po
index 435d1fe384..131858b747 100644
--- a/personal/locale/nl/fusiondirectory.po
+++ b/personal/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po
index 53a0378a77..48f0c8259a 100644
--- a/personal/locale/pl/fusiondirectory.po
+++ b/personal/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po
index e89b97f686..0799b8f896 100644
--- a/personal/locale/pt/fusiondirectory.po
+++ b/personal/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po
index 73ba1c88ff..714d0f2b60 100644
--- a/personal/locale/pt_BR/fusiondirectory.po
+++ b/personal/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po
index ed249c9f5f..a6ed1d8d85 100644
--- a/personal/locale/ru/fusiondirectory.po
+++ b/personal/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po
index 8768df0b0b..5a9a89cbc3 100644
--- a/personal/locale/ru@petr1708/fusiondirectory.po
+++ b/personal/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po
index cb2ecc6f1c..65b0f03373 100644
--- a/personal/locale/sv/fusiondirectory.po
+++ b/personal/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/personal/locale/tr_TR/fusiondirectory.po b/personal/locale/tr_TR/fusiondirectory.po
index 0ffdc9fbfb..934bf52c8a 100644
--- a/personal/locale/tr_TR/fusiondirectory.po
+++ b/personal/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po
index 793072da02..7efef7f575 100644
--- a/personal/locale/ug/fusiondirectory.po
+++ b/personal/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po
index a11db7ed38..ad6f351fa4 100644
--- a/personal/locale/vi_VN/fusiondirectory.po
+++ b/personal/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po
index 6b8f51e48c..6f654a63f7 100644
--- a/personal/locale/zh/fusiondirectory.po
+++ b/personal/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/personal/locale/zh_TW/fusiondirectory.po b/personal/locale/zh_TW/fusiondirectory.po
index 72d3df16a5..bef2bb6fb3 100644
--- a/personal/locale/zh_TW/fusiondirectory.po
+++ b/personal/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:18+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/af_ZA/fusiondirectory.po b/posix/locale/af_ZA/fusiondirectory.po
index d143151636..baf0a35735 100644
--- a/posix/locale/af_ZA/fusiondirectory.po
+++ b/posix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ar/fusiondirectory.po b/posix/locale/ar/fusiondirectory.po
index 6a4e4f52d5..3eeeba2cfd 100644
--- a/posix/locale/ar/fusiondirectory.po
+++ b/posix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/posix/locale/ca/fusiondirectory.po b/posix/locale/ca/fusiondirectory.po
index 6ac0466f6b..fec64d4ea7 100644
--- a/posix/locale/ca/fusiondirectory.po
+++ b/posix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/posix/locale/cs_CZ/fusiondirectory.po b/posix/locale/cs_CZ/fusiondirectory.po
index 6617453623..36fdb4e9fe 100644
--- a/posix/locale/cs_CZ/fusiondirectory.po
+++ b/posix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/posix/locale/de/fusiondirectory.po b/posix/locale/de/fusiondirectory.po
index 795bfcfbcf..9af7d6dfeb 100644
--- a/posix/locale/de/fusiondirectory.po
+++ b/posix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/posix/locale/el_GR/fusiondirectory.po b/posix/locale/el_GR/fusiondirectory.po
index 091ffde899..08040e83fd 100644
--- a/posix/locale/el_GR/fusiondirectory.po
+++ b/posix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/posix/locale/es/fusiondirectory.po b/posix/locale/es/fusiondirectory.po
index c8174c8e34..d1441edde7 100644
--- a/posix/locale/es/fusiondirectory.po
+++ b/posix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/posix/locale/es_CO/fusiondirectory.po b/posix/locale/es_CO/fusiondirectory.po
index a449ffe9ef..de095bbd6d 100644
--- a/posix/locale/es_CO/fusiondirectory.po
+++ b/posix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/posix/locale/es_VE/fusiondirectory.po b/posix/locale/es_VE/fusiondirectory.po
index f300866c09..c80a226a6c 100644
--- a/posix/locale/es_VE/fusiondirectory.po
+++ b/posix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/posix/locale/fa_IR/fusiondirectory.po b/posix/locale/fa_IR/fusiondirectory.po
index 64178a3801..da77d0e536 100644
--- a/posix/locale/fa_IR/fusiondirectory.po
+++ b/posix/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/posix/locale/fi_FI/fusiondirectory.po b/posix/locale/fi_FI/fusiondirectory.po
index 43e421e6ad..274423e76d 100644
--- a/posix/locale/fi_FI/fusiondirectory.po
+++ b/posix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/posix/locale/fr/fusiondirectory.po b/posix/locale/fr/fusiondirectory.po
index c7dd65fe05..add25ec704 100644
--- a/posix/locale/fr/fusiondirectory.po
+++ b/posix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/posix/locale/hu_HU/fusiondirectory.po b/posix/locale/hu_HU/fusiondirectory.po
index a49b7d1a5a..9b6302b75d 100644
--- a/posix/locale/hu_HU/fusiondirectory.po
+++ b/posix/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/posix/locale/id/fusiondirectory.po b/posix/locale/id/fusiondirectory.po
index 22525cdd26..a6f9808d54 100644
--- a/posix/locale/id/fusiondirectory.po
+++ b/posix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index af5c823f5d..44cb32ce9e 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/posix/locale/ja/fusiondirectory.po b/posix/locale/ja/fusiondirectory.po
index 2aec6fe8ee..018b38292c 100644
--- a/posix/locale/ja/fusiondirectory.po
+++ b/posix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ko/fusiondirectory.po b/posix/locale/ko/fusiondirectory.po
index 402a2d3e33..abb907b826 100644
--- a/posix/locale/ko/fusiondirectory.po
+++ b/posix/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -415,7 +415,7 @@ msgstr "사용자 %s의 그룹"
 msgid ""
 "Could not create automatic primary group (using gidNumber \"%s\"), because "
 "of the following errors"
-msgstr ""
+msgstr "다음 오류로 인해 자동 기본 그룹 (gidNumber \"%s\" 사용)을 작성할 수 없습니다."
 
 #: personal/posix/class_posixAccount.inc:779
 #: personal/posix/class_posixAccount.inc:800
@@ -423,7 +423,7 @@ msgstr ""
 #: personal/posix/class_posixAccount.inc:1008
 #: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
-msgstr "ã…—"
+msgstr "경고"
 
 #: personal/posix/class_posixAccount.inc:779
 #, php-format
@@ -488,10 +488,13 @@ msgid ""
 "Result: %s\n"
 "Using default base!"
 msgstr ""
+"1%s\n"
+"ê²°ê³¼ : %s\n"
+"기본베이스 사용!"
 
 #: personal/posix/class_posixAccount.inc:1011
 msgid "\"nextIdHook\" did not return a valid output!"
-msgstr ""
+msgstr "\"nextIdHook\"가 유효한 출력을 반환하지 않았습니다!"
 
 #: personal/posix/class_posixAccount.inc:1020
 msgid "\"nextIdHook\" is not available. Using default base!"
diff --git a/posix/locale/lv/fusiondirectory.po b/posix/locale/lv/fusiondirectory.po
index a3c34e7028..4667ab542c 100644
--- a/posix/locale/lv/fusiondirectory.po
+++ b/posix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/posix/locale/nb/fusiondirectory.po b/posix/locale/nb/fusiondirectory.po
index 327dca0483..c8e4e30f2f 100644
--- a/posix/locale/nb/fusiondirectory.po
+++ b/posix/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/posix/locale/nl/fusiondirectory.po b/posix/locale/nl/fusiondirectory.po
index 28c7220616..a88423707b 100644
--- a/posix/locale/nl/fusiondirectory.po
+++ b/posix/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/posix/locale/pl/fusiondirectory.po b/posix/locale/pl/fusiondirectory.po
index e41e899323..63ba2a0ddb 100644
--- a/posix/locale/pl/fusiondirectory.po
+++ b/posix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/posix/locale/pt/fusiondirectory.po b/posix/locale/pt/fusiondirectory.po
index eb2829079f..96a52c9f3a 100644
--- a/posix/locale/pt/fusiondirectory.po
+++ b/posix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/posix/locale/pt_BR/fusiondirectory.po b/posix/locale/pt_BR/fusiondirectory.po
index 4d3a07f7e7..98ad10e379 100644
--- a/posix/locale/pt_BR/fusiondirectory.po
+++ b/posix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/posix/locale/ru/fusiondirectory.po b/posix/locale/ru/fusiondirectory.po
index 5488683bc0..0bdddbd7d2 100644
--- a/posix/locale/ru/fusiondirectory.po
+++ b/posix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/posix/locale/ru@petr1708/fusiondirectory.po b/posix/locale/ru@petr1708/fusiondirectory.po
index 0a69dce8e3..a007961ffc 100644
--- a/posix/locale/ru@petr1708/fusiondirectory.po
+++ b/posix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/sv/fusiondirectory.po b/posix/locale/sv/fusiondirectory.po
index 74172c71c4..d8b92412df 100644
--- a/posix/locale/sv/fusiondirectory.po
+++ b/posix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/posix/locale/tr_TR/fusiondirectory.po b/posix/locale/tr_TR/fusiondirectory.po
index 831c58273a..0208b07be3 100644
--- a/posix/locale/tr_TR/fusiondirectory.po
+++ b/posix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ug/fusiondirectory.po b/posix/locale/ug/fusiondirectory.po
index 3a79adce01..6b2c2cbcbb 100644
--- a/posix/locale/ug/fusiondirectory.po
+++ b/posix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/vi_VN/fusiondirectory.po b/posix/locale/vi_VN/fusiondirectory.po
index d4249a48d5..890a71d0d7 100644
--- a/posix/locale/vi_VN/fusiondirectory.po
+++ b/posix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/posix/locale/zh/fusiondirectory.po b/posix/locale/zh/fusiondirectory.po
index 618ec4d9ea..d150dc40b1 100644
--- a/posix/locale/zh/fusiondirectory.po
+++ b/posix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/posix/locale/zh_TW/fusiondirectory.po b/posix/locale/zh_TW/fusiondirectory.po
index f73bfe37c9..748f714bad 100644
--- a/posix/locale/zh_TW/fusiondirectory.po
+++ b/posix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/af_ZA/fusiondirectory.po b/postfix/locale/af_ZA/fusiondirectory.po
index 059f815ff9..3b3e07db80 100644
--- a/postfix/locale/af_ZA/fusiondirectory.po
+++ b/postfix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po
index 59824ec066..fc7f54460a 100644
--- a/postfix/locale/ar/fusiondirectory.po
+++ b/postfix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po
index 5a5c865404..54aae219b0 100644
--- a/postfix/locale/ca/fusiondirectory.po
+++ b/postfix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po
index a38b9dbb09..d0eeae2610 100644
--- a/postfix/locale/cs_CZ/fusiondirectory.po
+++ b/postfix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po
index 7eaf825b4f..2bdd4c7a97 100644
--- a/postfix/locale/de/fusiondirectory.po
+++ b/postfix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po
index 65a1722927..425d87b653 100644
--- a/postfix/locale/el_GR/fusiondirectory.po
+++ b/postfix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po
index 878b9b2c27..5a631345eb 100644
--- a/postfix/locale/es/fusiondirectory.po
+++ b/postfix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po
index 1ac4e552b8..2ab9ba91d7 100644
--- a/postfix/locale/es_CO/fusiondirectory.po
+++ b/postfix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po
index 82ba302196..61577b9275 100644
--- a/postfix/locale/es_VE/fusiondirectory.po
+++ b/postfix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po
index 618b0832d9..b974b40c13 100644
--- a/postfix/locale/fa_IR/fusiondirectory.po
+++ b/postfix/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po
index 587984b6a7..f9706c3612 100644
--- a/postfix/locale/fi_FI/fusiondirectory.po
+++ b/postfix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po
index af7009f093..69952a8813 100644
--- a/postfix/locale/fr/fusiondirectory.po
+++ b/postfix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po
index d18b922554..2c7be80bb4 100644
--- a/postfix/locale/hu_HU/fusiondirectory.po
+++ b/postfix/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po
index 4f8ac8abb9..abac039771 100644
--- a/postfix/locale/id/fusiondirectory.po
+++ b/postfix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index 81a3965379..7028592185 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/postfix/locale/ja/fusiondirectory.po b/postfix/locale/ja/fusiondirectory.po
index deeeab3b87..8260c00dd2 100644
--- a/postfix/locale/ja/fusiondirectory.po
+++ b/postfix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ko/fusiondirectory.po b/postfix/locale/ko/fusiondirectory.po
index 04a4936964..ac19dfd06d 100644
--- a/postfix/locale/ko/fusiondirectory.po
+++ b/postfix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po
index 133937bab4..d447c91a1e 100644
--- a/postfix/locale/lv/fusiondirectory.po
+++ b/postfix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po
index 6a0e1a55c9..f5cbb5f7bc 100644
--- a/postfix/locale/nb/fusiondirectory.po
+++ b/postfix/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po
index fc7dd85f87..89184e517f 100644
--- a/postfix/locale/nl/fusiondirectory.po
+++ b/postfix/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po
index ffb5eb8b27..5e4c78f756 100644
--- a/postfix/locale/pl/fusiondirectory.po
+++ b/postfix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po
index 6efaab06ed..ac86dc10d1 100644
--- a/postfix/locale/pt/fusiondirectory.po
+++ b/postfix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po
index c07fbe20ac..c41f885cb5 100644
--- a/postfix/locale/pt_BR/fusiondirectory.po
+++ b/postfix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po
index 82621aee02..388a789ece 100644
--- a/postfix/locale/ru/fusiondirectory.po
+++ b/postfix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po
index f5261b109d..180a360b5f 100644
--- a/postfix/locale/ru@petr1708/fusiondirectory.po
+++ b/postfix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po
index 975160d01a..8cd05aa611 100644
--- a/postfix/locale/sv/fusiondirectory.po
+++ b/postfix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/postfix/locale/tr_TR/fusiondirectory.po b/postfix/locale/tr_TR/fusiondirectory.po
index 457e16ca2c..717ce923d8 100644
--- a/postfix/locale/tr_TR/fusiondirectory.po
+++ b/postfix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po
index c0f9f2014a..cc2ddd33c3 100644
--- a/postfix/locale/ug/fusiondirectory.po
+++ b/postfix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po
index 8cfee1489d..618c3295fa 100644
--- a/postfix/locale/vi_VN/fusiondirectory.po
+++ b/postfix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po
index 4303185547..541ed05325 100644
--- a/postfix/locale/zh/fusiondirectory.po
+++ b/postfix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/postfix/locale/zh_TW/fusiondirectory.po b/postfix/locale/zh_TW/fusiondirectory.po
index 7445958a5e..0b66126f9c 100644
--- a/postfix/locale/zh_TW/fusiondirectory.po
+++ b/postfix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/af_ZA/fusiondirectory.po b/ppolicy/locale/af_ZA/fusiondirectory.po
index 95c6874b77..40b0018521 100644
--- a/ppolicy/locale/af_ZA/fusiondirectory.po
+++ b/ppolicy/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po
index 16ac616b59..ef4fcc5fc3 100644
--- a/ppolicy/locale/ar/fusiondirectory.po
+++ b/ppolicy/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po
index c554ab7e93..c1f0979097 100644
--- a/ppolicy/locale/ca/fusiondirectory.po
+++ b/ppolicy/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po
index d283246296..e3afde93d2 100644
--- a/ppolicy/locale/cs_CZ/fusiondirectory.po
+++ b/ppolicy/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po
index 5ae7762d61..54242c1a6a 100644
--- a/ppolicy/locale/de/fusiondirectory.po
+++ b/ppolicy/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po
index 35962c3271..c38d1d8bb0 100644
--- a/ppolicy/locale/el_GR/fusiondirectory.po
+++ b/ppolicy/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po
index a6d33aec1d..ad34640dbf 100644
--- a/ppolicy/locale/es/fusiondirectory.po
+++ b/ppolicy/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po
index e75ad00950..e7e613ac4e 100644
--- a/ppolicy/locale/es_CO/fusiondirectory.po
+++ b/ppolicy/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po
index ce9b9518be..be14238433 100644
--- a/ppolicy/locale/es_VE/fusiondirectory.po
+++ b/ppolicy/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po
index bcee20c685..7103aa6368 100644
--- a/ppolicy/locale/fa_IR/fusiondirectory.po
+++ b/ppolicy/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po
index ea13212db5..c45ae45b82 100644
--- a/ppolicy/locale/fi_FI/fusiondirectory.po
+++ b/ppolicy/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po
index 658f29f686..82388ef2cf 100644
--- a/ppolicy/locale/fr/fusiondirectory.po
+++ b/ppolicy/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po
index fc4d1f0fdb..7e4b05c10f 100644
--- a/ppolicy/locale/hu_HU/fusiondirectory.po
+++ b/ppolicy/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po
index ddc2c9503b..02cfd6f016 100644
--- a/ppolicy/locale/id/fusiondirectory.po
+++ b/ppolicy/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po
index e39194e757..b2c3b25f81 100644
--- a/ppolicy/locale/it_IT/fusiondirectory.po
+++ b/ppolicy/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ppolicy/locale/ja/fusiondirectory.po b/ppolicy/locale/ja/fusiondirectory.po
index 1bddd6e14f..f2ebcaf2ca 100644
--- a/ppolicy/locale/ja/fusiondirectory.po
+++ b/ppolicy/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ko/fusiondirectory.po b/ppolicy/locale/ko/fusiondirectory.po
index c2ed741d2f..b5085342c1 100644
--- a/ppolicy/locale/ko/fusiondirectory.po
+++ b/ppolicy/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -148,7 +148,7 @@ msgstr "미사용"
 
 #: admin/ppolicy/class_ppolicy.inc:107
 msgid "Ignore errors"
-msgstr ""
+msgstr "오류 무시"
 
 #: admin/ppolicy/class_ppolicy.inc:107
 msgid "Reject on errors"
diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po
index d8e72c379a..d1f42687f1 100644
--- a/ppolicy/locale/lv/fusiondirectory.po
+++ b/ppolicy/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po
index 4a4ce8658b..b6b5ba6561 100644
--- a/ppolicy/locale/nb/fusiondirectory.po
+++ b/ppolicy/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po
index 5c41bc24b5..a221372e9d 100644
--- a/ppolicy/locale/nl/fusiondirectory.po
+++ b/ppolicy/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po
index 49ea590400..8ec4b95371 100644
--- a/ppolicy/locale/pl/fusiondirectory.po
+++ b/ppolicy/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po
index cc360f0ef5..b647981c93 100644
--- a/ppolicy/locale/pt/fusiondirectory.po
+++ b/ppolicy/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po
index 362628495b..0adc19c137 100644
--- a/ppolicy/locale/pt_BR/fusiondirectory.po
+++ b/ppolicy/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po
index 8978a540aa..26afc99b7f 100644
--- a/ppolicy/locale/ru/fusiondirectory.po
+++ b/ppolicy/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po
index 0a5ecda086..fbaa8b31e6 100644
--- a/ppolicy/locale/ru@petr1708/fusiondirectory.po
+++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po
index 1322bf5be9..654f47d0a8 100644
--- a/ppolicy/locale/sv/fusiondirectory.po
+++ b/ppolicy/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ppolicy/locale/tr_TR/fusiondirectory.po b/ppolicy/locale/tr_TR/fusiondirectory.po
index ccb838f85d..639e446d7a 100644
--- a/ppolicy/locale/tr_TR/fusiondirectory.po
+++ b/ppolicy/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po
index 6817db21e1..0c447fe633 100644
--- a/ppolicy/locale/ug/fusiondirectory.po
+++ b/ppolicy/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po
index e97b4c71cf..dd9b863808 100644
--- a/ppolicy/locale/vi_VN/fusiondirectory.po
+++ b/ppolicy/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po
index 11ed51c219..970df07cb4 100644
--- a/ppolicy/locale/zh/fusiondirectory.po
+++ b/ppolicy/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ppolicy/locale/zh_TW/fusiondirectory.po b/ppolicy/locale/zh_TW/fusiondirectory.po
index ae4a4f9930..d1fd6039c9 100644
--- a/ppolicy/locale/zh_TW/fusiondirectory.po
+++ b/ppolicy/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/af_ZA/fusiondirectory.po b/puppet/locale/af_ZA/fusiondirectory.po
index e976949b57..ecd570c4a7 100644
--- a/puppet/locale/af_ZA/fusiondirectory.po
+++ b/puppet/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po
index 8d25ab3634..1ea56c138c 100644
--- a/puppet/locale/ar/fusiondirectory.po
+++ b/puppet/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po
index 78110c795c..2ab51440b8 100644
--- a/puppet/locale/ca/fusiondirectory.po
+++ b/puppet/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po
index fa21550c09..5e7603feb5 100644
--- a/puppet/locale/cs_CZ/fusiondirectory.po
+++ b/puppet/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po
index 492417f4ff..02aace1d41 100644
--- a/puppet/locale/de/fusiondirectory.po
+++ b/puppet/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po
index e4fd9418fe..287d8651a2 100644
--- a/puppet/locale/el_GR/fusiondirectory.po
+++ b/puppet/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po
index 447a54fcbe..7e4879e050 100644
--- a/puppet/locale/es/fusiondirectory.po
+++ b/puppet/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po
index 89da070f30..cc4231070d 100644
--- a/puppet/locale/es_CO/fusiondirectory.po
+++ b/puppet/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po
index 389bd5d671..18791d7352 100644
--- a/puppet/locale/es_VE/fusiondirectory.po
+++ b/puppet/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po
index bf22f0c6c4..6c8df987f3 100644
--- a/puppet/locale/fa_IR/fusiondirectory.po
+++ b/puppet/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po
index c9747cb535..ef22f304f9 100644
--- a/puppet/locale/fi_FI/fusiondirectory.po
+++ b/puppet/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po
index d7ce437295..2919cd6bdb 100644
--- a/puppet/locale/fr/fusiondirectory.po
+++ b/puppet/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po
index e3e226ea37..3bdf9bdc31 100644
--- a/puppet/locale/hu_HU/fusiondirectory.po
+++ b/puppet/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po
index 0fde852b01..79f8a29865 100644
--- a/puppet/locale/id/fusiondirectory.po
+++ b/puppet/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index 7387a9ef10..d3863e8aea 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/puppet/locale/ja/fusiondirectory.po b/puppet/locale/ja/fusiondirectory.po
index fd72d9458e..5979b31001 100644
--- a/puppet/locale/ja/fusiondirectory.po
+++ b/puppet/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ko/fusiondirectory.po b/puppet/locale/ko/fusiondirectory.po
index de577311a4..6eb987e76f 100644
--- a/puppet/locale/ko/fusiondirectory.po
+++ b/puppet/locale/ko/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po
index a1de828fd8..84a52ff0dc 100644
--- a/puppet/locale/lv/fusiondirectory.po
+++ b/puppet/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po
index f5c18fc8f0..b94d5c64c9 100644
--- a/puppet/locale/nb/fusiondirectory.po
+++ b/puppet/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po
index ad9b87cfc7..59694b6a9f 100644
--- a/puppet/locale/nl/fusiondirectory.po
+++ b/puppet/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po
index 8af35c0d88..838a8b39ae 100644
--- a/puppet/locale/pl/fusiondirectory.po
+++ b/puppet/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po
index e5e4a51d09..7730b86aa9 100644
--- a/puppet/locale/pt/fusiondirectory.po
+++ b/puppet/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po
index 1458280064..8cfd34c75c 100644
--- a/puppet/locale/pt_BR/fusiondirectory.po
+++ b/puppet/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po
index 2e16c2537c..f12919c5cf 100644
--- a/puppet/locale/ru/fusiondirectory.po
+++ b/puppet/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po
index 9409df0f72..b6ad278c15 100644
--- a/puppet/locale/ru@petr1708/fusiondirectory.po
+++ b/puppet/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po
index dc9f31e143..7dd0e241b9 100644
--- a/puppet/locale/sv/fusiondirectory.po
+++ b/puppet/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/puppet/locale/tr_TR/fusiondirectory.po b/puppet/locale/tr_TR/fusiondirectory.po
index 99e37d5418..33cd025538 100644
--- a/puppet/locale/tr_TR/fusiondirectory.po
+++ b/puppet/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po
index 732c28b77b..2d386f0bc0 100644
--- a/puppet/locale/ug/fusiondirectory.po
+++ b/puppet/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po
index e262886871..877680fd93 100644
--- a/puppet/locale/vi_VN/fusiondirectory.po
+++ b/puppet/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po
index 1c462b0592..d196e51163 100644
--- a/puppet/locale/zh/fusiondirectory.po
+++ b/puppet/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/puppet/locale/zh_TW/fusiondirectory.po b/puppet/locale/zh_TW/fusiondirectory.po
index 39a5e02f35..775dcb9d8a 100644
--- a/puppet/locale/zh_TW/fusiondirectory.po
+++ b/puppet/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/af_ZA/fusiondirectory.po b/pureftpd/locale/af_ZA/fusiondirectory.po
index a85fc08bf9..7122a5de3b 100644
--- a/pureftpd/locale/af_ZA/fusiondirectory.po
+++ b/pureftpd/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po
index bef78a7d2f..6a197aefc5 100644
--- a/pureftpd/locale/ar/fusiondirectory.po
+++ b/pureftpd/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po
index 03c7d75d17..7d42d0823a 100644
--- a/pureftpd/locale/ca/fusiondirectory.po
+++ b/pureftpd/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po
index 8634c8f42c..cdf2fb0edd 100644
--- a/pureftpd/locale/cs_CZ/fusiondirectory.po
+++ b/pureftpd/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po
index 3e343e2cf0..d7cf90ee73 100644
--- a/pureftpd/locale/de/fusiondirectory.po
+++ b/pureftpd/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po
index 78b099eaed..a6d67200ea 100644
--- a/pureftpd/locale/el_GR/fusiondirectory.po
+++ b/pureftpd/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po
index 6764214c85..e31f6c87e1 100644
--- a/pureftpd/locale/es/fusiondirectory.po
+++ b/pureftpd/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po
index 3506f060cc..b7933f1298 100644
--- a/pureftpd/locale/es_CO/fusiondirectory.po
+++ b/pureftpd/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po
index d4980fe451..a642a80aba 100644
--- a/pureftpd/locale/es_VE/fusiondirectory.po
+++ b/pureftpd/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po
index 023254015e..8a2596ef2b 100644
--- a/pureftpd/locale/fa_IR/fusiondirectory.po
+++ b/pureftpd/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po
index 29d4d1b262..dabea78691 100644
--- a/pureftpd/locale/fi_FI/fusiondirectory.po
+++ b/pureftpd/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po
index 9fb645166f..cc3325dcc5 100644
--- a/pureftpd/locale/fr/fusiondirectory.po
+++ b/pureftpd/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po
index 84f7d5c469..a64eb41884 100644
--- a/pureftpd/locale/hu_HU/fusiondirectory.po
+++ b/pureftpd/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po
index 59cd5ff0a9..2abd96c9ab 100644
--- a/pureftpd/locale/id/fusiondirectory.po
+++ b/pureftpd/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po
index 1c474fa393..aa8a14ea17 100644
--- a/pureftpd/locale/it_IT/fusiondirectory.po
+++ b/pureftpd/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/pureftpd/locale/ja/fusiondirectory.po b/pureftpd/locale/ja/fusiondirectory.po
index dca875cc9b..0d509062e8 100644
--- a/pureftpd/locale/ja/fusiondirectory.po
+++ b/pureftpd/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ko/fusiondirectory.po b/pureftpd/locale/ko/fusiondirectory.po
index 3c78aa646b..8995c2df2c 100644
--- a/pureftpd/locale/ko/fusiondirectory.po
+++ b/pureftpd/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po
index 5313b346fb..4bd09c3e64 100644
--- a/pureftpd/locale/lv/fusiondirectory.po
+++ b/pureftpd/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po
index 06a5ce01f5..7c680cfa9b 100644
--- a/pureftpd/locale/nb/fusiondirectory.po
+++ b/pureftpd/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po
index 5d15134d3a..e64d85ba1a 100644
--- a/pureftpd/locale/nl/fusiondirectory.po
+++ b/pureftpd/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po
index 2da17a614a..ecbd5715a1 100644
--- a/pureftpd/locale/pl/fusiondirectory.po
+++ b/pureftpd/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po
index 9e540558eb..a7255bd59d 100644
--- a/pureftpd/locale/pt/fusiondirectory.po
+++ b/pureftpd/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po
index a8f56f6af6..f4336a67f2 100644
--- a/pureftpd/locale/pt_BR/fusiondirectory.po
+++ b/pureftpd/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po
index ebd436f0e3..3dca5d0e54 100644
--- a/pureftpd/locale/ru/fusiondirectory.po
+++ b/pureftpd/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po
index 4845d088cb..ca96144f57 100644
--- a/pureftpd/locale/ru@petr1708/fusiondirectory.po
+++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po
index 07fb1981cd..2f76fdd4ba 100644
--- a/pureftpd/locale/sv/fusiondirectory.po
+++ b/pureftpd/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/pureftpd/locale/tr_TR/fusiondirectory.po b/pureftpd/locale/tr_TR/fusiondirectory.po
index e18ad8b9ad..8507370540 100644
--- a/pureftpd/locale/tr_TR/fusiondirectory.po
+++ b/pureftpd/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po
index 8f01b83b6d..b97fb3077f 100644
--- a/pureftpd/locale/ug/fusiondirectory.po
+++ b/pureftpd/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po
index c86bb741b0..2ff5c961e7 100644
--- a/pureftpd/locale/vi_VN/fusiondirectory.po
+++ b/pureftpd/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po
index 606ad6d715..a83bc268c7 100644
--- a/pureftpd/locale/zh/fusiondirectory.po
+++ b/pureftpd/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/pureftpd/locale/zh_TW/fusiondirectory.po b/pureftpd/locale/zh_TW/fusiondirectory.po
index acd11d692d..4905338bc7 100644
--- a/pureftpd/locale/zh_TW/fusiondirectory.po
+++ b/pureftpd/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/af_ZA/fusiondirectory.po b/quota/locale/af_ZA/fusiondirectory.po
index b37ee5baf3..b6c1360b05 100644
--- a/quota/locale/af_ZA/fusiondirectory.po
+++ b/quota/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po
index eae3fd1ca1..753f7af73b 100644
--- a/quota/locale/ar/fusiondirectory.po
+++ b/quota/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po
index 1cdcd4649a..4e3545018e 100644
--- a/quota/locale/ca/fusiondirectory.po
+++ b/quota/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po
index 1045ee9f62..69c101c51a 100644
--- a/quota/locale/cs_CZ/fusiondirectory.po
+++ b/quota/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po
index 00b4f81769..f3108381f1 100644
--- a/quota/locale/de/fusiondirectory.po
+++ b/quota/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po
index d4da9d732a..7448c66a63 100644
--- a/quota/locale/el_GR/fusiondirectory.po
+++ b/quota/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po
index 25264ff3e7..74b115ce08 100644
--- a/quota/locale/es/fusiondirectory.po
+++ b/quota/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po
index 69e5e719b4..efc8e8ad42 100644
--- a/quota/locale/es_CO/fusiondirectory.po
+++ b/quota/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po
index 04bc180683..7de5e615e4 100644
--- a/quota/locale/es_VE/fusiondirectory.po
+++ b/quota/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po
index e3037606fe..d31b19ddc2 100644
--- a/quota/locale/fa_IR/fusiondirectory.po
+++ b/quota/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po
index 9d65322252..7a8d9b6c52 100644
--- a/quota/locale/fi_FI/fusiondirectory.po
+++ b/quota/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po
index 6a62cf5511..d9392cc1f7 100644
--- a/quota/locale/fr/fusiondirectory.po
+++ b/quota/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po
index 4915eb17ac..0e97153153 100644
--- a/quota/locale/hu_HU/fusiondirectory.po
+++ b/quota/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po
index c8420dcbde..1c28cdac66 100644
--- a/quota/locale/id/fusiondirectory.po
+++ b/quota/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po
index 4de1d28d79..efadbb0a53 100644
--- a/quota/locale/it_IT/fusiondirectory.po
+++ b/quota/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/quota/locale/ja/fusiondirectory.po b/quota/locale/ja/fusiondirectory.po
index 5b8b4aad7d..f7db726e61 100644
--- a/quota/locale/ja/fusiondirectory.po
+++ b/quota/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ko/fusiondirectory.po b/quota/locale/ko/fusiondirectory.po
index b42d9a28d1..a56db02bb2 100644
--- a/quota/locale/ko/fusiondirectory.po
+++ b/quota/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po
index 7e98c9b3b5..385917a853 100644
--- a/quota/locale/lv/fusiondirectory.po
+++ b/quota/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po
index ce73151549..6851557519 100644
--- a/quota/locale/nb/fusiondirectory.po
+++ b/quota/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po
index 565cfe5562..73794a6968 100644
--- a/quota/locale/nl/fusiondirectory.po
+++ b/quota/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po
index 3cac1ce636..2c3a4bc743 100644
--- a/quota/locale/pl/fusiondirectory.po
+++ b/quota/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po
index a3bbab2a91..af7f74ca85 100644
--- a/quota/locale/pt/fusiondirectory.po
+++ b/quota/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po
index 664fc4937f..c11df63b60 100644
--- a/quota/locale/pt_BR/fusiondirectory.po
+++ b/quota/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po
index 73c0c68b1a..838eb250dd 100644
--- a/quota/locale/ru/fusiondirectory.po
+++ b/quota/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po
index b7e3cfcb8c..5b9f1c8bdd 100644
--- a/quota/locale/ru@petr1708/fusiondirectory.po
+++ b/quota/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po
index c0e7a0b2db..b01d0f0b0e 100644
--- a/quota/locale/sv/fusiondirectory.po
+++ b/quota/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/quota/locale/tr_TR/fusiondirectory.po b/quota/locale/tr_TR/fusiondirectory.po
index 6f2792543d..d5f4ebc241 100644
--- a/quota/locale/tr_TR/fusiondirectory.po
+++ b/quota/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po
index 1c6dbd6886..7a9e846a38 100644
--- a/quota/locale/ug/fusiondirectory.po
+++ b/quota/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po
index d312c3b116..ee7731f423 100644
--- a/quota/locale/vi_VN/fusiondirectory.po
+++ b/quota/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po
index 20816d7b79..a5c42a14e3 100644
--- a/quota/locale/zh/fusiondirectory.po
+++ b/quota/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/quota/locale/zh_TW/fusiondirectory.po b/quota/locale/zh_TW/fusiondirectory.po
index 846193e3d7..920211091d 100644
--- a/quota/locale/zh_TW/fusiondirectory.po
+++ b/quota/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/af_ZA/fusiondirectory.po b/renater-partage/locale/af_ZA/fusiondirectory.po
index c8acbaaf8b..6741efe6e2 100644
--- a/renater-partage/locale/af_ZA/fusiondirectory.po
+++ b/renater-partage/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ar/fusiondirectory.po b/renater-partage/locale/ar/fusiondirectory.po
index 834e0a9b56..73f576a1c9 100644
--- a/renater-partage/locale/ar/fusiondirectory.po
+++ b/renater-partage/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/renater-partage/locale/ca/fusiondirectory.po b/renater-partage/locale/ca/fusiondirectory.po
index ccfed98df6..8e491f0aac 100644
--- a/renater-partage/locale/ca/fusiondirectory.po
+++ b/renater-partage/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/renater-partage/locale/cs_CZ/fusiondirectory.po b/renater-partage/locale/cs_CZ/fusiondirectory.po
index da796d6196..6bfe5d265a 100644
--- a/renater-partage/locale/cs_CZ/fusiondirectory.po
+++ b/renater-partage/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/renater-partage/locale/de/fusiondirectory.po b/renater-partage/locale/de/fusiondirectory.po
index 06840af483..9c01e851c0 100644
--- a/renater-partage/locale/de/fusiondirectory.po
+++ b/renater-partage/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/renater-partage/locale/el_GR/fusiondirectory.po b/renater-partage/locale/el_GR/fusiondirectory.po
index 0a3bc7b812..43b840f416 100644
--- a/renater-partage/locale/el_GR/fusiondirectory.po
+++ b/renater-partage/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/renater-partage/locale/es/fusiondirectory.po b/renater-partage/locale/es/fusiondirectory.po
index 7718b9d292..41d139b479 100644
--- a/renater-partage/locale/es/fusiondirectory.po
+++ b/renater-partage/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/renater-partage/locale/es_CO/fusiondirectory.po b/renater-partage/locale/es_CO/fusiondirectory.po
index 01b6ae7850..ac0488c414 100644
--- a/renater-partage/locale/es_CO/fusiondirectory.po
+++ b/renater-partage/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/renater-partage/locale/es_VE/fusiondirectory.po b/renater-partage/locale/es_VE/fusiondirectory.po
index 75c9c8e724..a8c91aa0b3 100644
--- a/renater-partage/locale/es_VE/fusiondirectory.po
+++ b/renater-partage/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/renater-partage/locale/fa_IR/fusiondirectory.po b/renater-partage/locale/fa_IR/fusiondirectory.po
index f0114f86ca..d024773d5f 100644
--- a/renater-partage/locale/fa_IR/fusiondirectory.po
+++ b/renater-partage/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/fi_FI/fusiondirectory.po b/renater-partage/locale/fi_FI/fusiondirectory.po
index a1956cf6cd..221ad261e2 100644
--- a/renater-partage/locale/fi_FI/fusiondirectory.po
+++ b/renater-partage/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/renater-partage/locale/fr/fusiondirectory.po b/renater-partage/locale/fr/fusiondirectory.po
index d9fcaeb83c..b6419bf66d 100644
--- a/renater-partage/locale/fr/fusiondirectory.po
+++ b/renater-partage/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/renater-partage/locale/hu_HU/fusiondirectory.po b/renater-partage/locale/hu_HU/fusiondirectory.po
index ada0be70a3..4087bc438e 100644
--- a/renater-partage/locale/hu_HU/fusiondirectory.po
+++ b/renater-partage/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/id/fusiondirectory.po b/renater-partage/locale/id/fusiondirectory.po
index 81c447adc0..34be9062df 100644
--- a/renater-partage/locale/id/fusiondirectory.po
+++ b/renater-partage/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index 468d937de9..d9939f77dd 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/renater-partage/locale/ja/fusiondirectory.po b/renater-partage/locale/ja/fusiondirectory.po
index 21c867d57a..4feac6ca7d 100644
--- a/renater-partage/locale/ja/fusiondirectory.po
+++ b/renater-partage/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ko/fusiondirectory.po b/renater-partage/locale/ko/fusiondirectory.po
index 5e02061f1d..86ba4d3f91 100644
--- a/renater-partage/locale/ko/fusiondirectory.po
+++ b/renater-partage/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -151,7 +151,7 @@ msgstr ""
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
 msgid "Key"
-msgstr ""
+msgstr "키"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
 msgid "Key for this domain"
diff --git a/renater-partage/locale/lv/fusiondirectory.po b/renater-partage/locale/lv/fusiondirectory.po
index a4f3b6221c..686f011448 100644
--- a/renater-partage/locale/lv/fusiondirectory.po
+++ b/renater-partage/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/renater-partage/locale/nb/fusiondirectory.po b/renater-partage/locale/nb/fusiondirectory.po
index 9fec72c261..62a54c81c1 100644
--- a/renater-partage/locale/nb/fusiondirectory.po
+++ b/renater-partage/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/renater-partage/locale/nl/fusiondirectory.po b/renater-partage/locale/nl/fusiondirectory.po
index e6cb0986d8..734b863514 100644
--- a/renater-partage/locale/nl/fusiondirectory.po
+++ b/renater-partage/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/renater-partage/locale/pl/fusiondirectory.po b/renater-partage/locale/pl/fusiondirectory.po
index 02a6dd7491..002cdae002 100644
--- a/renater-partage/locale/pl/fusiondirectory.po
+++ b/renater-partage/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/renater-partage/locale/pt/fusiondirectory.po b/renater-partage/locale/pt/fusiondirectory.po
index a8fbefd456..4bf0a24376 100644
--- a/renater-partage/locale/pt/fusiondirectory.po
+++ b/renater-partage/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/renater-partage/locale/pt_BR/fusiondirectory.po b/renater-partage/locale/pt_BR/fusiondirectory.po
index b8a4e25fa3..5916d486e1 100644
--- a/renater-partage/locale/pt_BR/fusiondirectory.po
+++ b/renater-partage/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/renater-partage/locale/ru/fusiondirectory.po b/renater-partage/locale/ru/fusiondirectory.po
index 646ccb6573..6cd15806a5 100644
--- a/renater-partage/locale/ru/fusiondirectory.po
+++ b/renater-partage/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/renater-partage/locale/ru@petr1708/fusiondirectory.po b/renater-partage/locale/ru@petr1708/fusiondirectory.po
index f8b2fecb68..25f57cbec8 100644
--- a/renater-partage/locale/ru@petr1708/fusiondirectory.po
+++ b/renater-partage/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/sv/fusiondirectory.po b/renater-partage/locale/sv/fusiondirectory.po
index 9b18a7992f..10fbac56fb 100644
--- a/renater-partage/locale/sv/fusiondirectory.po
+++ b/renater-partage/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/renater-partage/locale/tr_TR/fusiondirectory.po b/renater-partage/locale/tr_TR/fusiondirectory.po
index a5a3a8776d..3033f225c9 100644
--- a/renater-partage/locale/tr_TR/fusiondirectory.po
+++ b/renater-partage/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ug/fusiondirectory.po b/renater-partage/locale/ug/fusiondirectory.po
index 933e5b3748..c200d7a7d5 100644
--- a/renater-partage/locale/ug/fusiondirectory.po
+++ b/renater-partage/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/vi_VN/fusiondirectory.po b/renater-partage/locale/vi_VN/fusiondirectory.po
index 1834835f9f..0376e592b8 100644
--- a/renater-partage/locale/vi_VN/fusiondirectory.po
+++ b/renater-partage/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/renater-partage/locale/zh/fusiondirectory.po b/renater-partage/locale/zh/fusiondirectory.po
index 63d6bb7314..291a93ad41 100644
--- a/renater-partage/locale/zh/fusiondirectory.po
+++ b/renater-partage/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/renater-partage/locale/zh_TW/fusiondirectory.po b/renater-partage/locale/zh_TW/fusiondirectory.po
index 1f233ae3e2..0bea5ccd5f 100644
--- a/renater-partage/locale/zh_TW/fusiondirectory.po
+++ b/renater-partage/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/af_ZA/fusiondirectory.po b/repository/locale/af_ZA/fusiondirectory.po
index aae89c285a..a90f57e950 100644
--- a/repository/locale/af_ZA/fusiondirectory.po
+++ b/repository/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po
index 5364a6b31a..2d937d0374 100644
--- a/repository/locale/ar/fusiondirectory.po
+++ b/repository/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po
index f355a00185..8418de1358 100644
--- a/repository/locale/ca/fusiondirectory.po
+++ b/repository/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po
index 60306a01ea..a7ce5d2b82 100644
--- a/repository/locale/cs_CZ/fusiondirectory.po
+++ b/repository/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po
index b35b8a0382..ab1576bb78 100644
--- a/repository/locale/de/fusiondirectory.po
+++ b/repository/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po
index 9b06e4f9fc..cd669e816d 100644
--- a/repository/locale/el_GR/fusiondirectory.po
+++ b/repository/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po
index d4f9707027..148659d522 100644
--- a/repository/locale/es/fusiondirectory.po
+++ b/repository/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po
index 7414d6982b..ea2bf8c972 100644
--- a/repository/locale/es_CO/fusiondirectory.po
+++ b/repository/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po
index 74182cce81..87aee326c0 100644
--- a/repository/locale/es_VE/fusiondirectory.po
+++ b/repository/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po
index bf3c12345d..ab92aeb11c 100644
--- a/repository/locale/fa_IR/fusiondirectory.po
+++ b/repository/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po
index 5ab43fbdc3..d14229fa83 100644
--- a/repository/locale/fi_FI/fusiondirectory.po
+++ b/repository/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po
index 9db51c246d..b2439c300c 100644
--- a/repository/locale/fr/fusiondirectory.po
+++ b/repository/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po
index 941d875704..f547c19fe2 100644
--- a/repository/locale/hu_HU/fusiondirectory.po
+++ b/repository/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po
index 693cece5c6..222f2c546f 100644
--- a/repository/locale/id/fusiondirectory.po
+++ b/repository/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po
index fffb4407c6..74146e6f11 100644
--- a/repository/locale/it_IT/fusiondirectory.po
+++ b/repository/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/repository/locale/ja/fusiondirectory.po b/repository/locale/ja/fusiondirectory.po
index 6c54681743..e29fbd78f6 100644
--- a/repository/locale/ja/fusiondirectory.po
+++ b/repository/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ko/fusiondirectory.po b/repository/locale/ko/fusiondirectory.po
index c8fe27daea..1d5285d609 100644
--- a/repository/locale/ko/fusiondirectory.po
+++ b/repository/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po
index 1e05d9abea..6874505854 100644
--- a/repository/locale/lv/fusiondirectory.po
+++ b/repository/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po
index 810fea607c..a3cf68fa25 100644
--- a/repository/locale/nb/fusiondirectory.po
+++ b/repository/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po
index 2158e0ead1..b311c24d40 100644
--- a/repository/locale/nl/fusiondirectory.po
+++ b/repository/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po
index 71bded9ade..b874cdbcf9 100644
--- a/repository/locale/pl/fusiondirectory.po
+++ b/repository/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po
index f99278f7af..bc2dc35d52 100644
--- a/repository/locale/pt/fusiondirectory.po
+++ b/repository/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po
index 4e3b69c9f6..fff781ea25 100644
--- a/repository/locale/pt_BR/fusiondirectory.po
+++ b/repository/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po
index 91529a9055..11eb565927 100644
--- a/repository/locale/ru/fusiondirectory.po
+++ b/repository/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po
index e88eab1b65..ef86b61815 100644
--- a/repository/locale/ru@petr1708/fusiondirectory.po
+++ b/repository/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po
index fee196bff7..f596bcf97e 100644
--- a/repository/locale/sv/fusiondirectory.po
+++ b/repository/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/repository/locale/tr_TR/fusiondirectory.po b/repository/locale/tr_TR/fusiondirectory.po
index 2cfcacf99e..b544072154 100644
--- a/repository/locale/tr_TR/fusiondirectory.po
+++ b/repository/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po
index 8921a312a5..58ade66491 100644
--- a/repository/locale/ug/fusiondirectory.po
+++ b/repository/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po
index 29929f73eb..d9080e27ac 100644
--- a/repository/locale/vi_VN/fusiondirectory.po
+++ b/repository/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po
index 2263f6ea9a..cf17c4f8ac 100644
--- a/repository/locale/zh/fusiondirectory.po
+++ b/repository/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/repository/locale/zh_TW/fusiondirectory.po b/repository/locale/zh_TW/fusiondirectory.po
index fc13ea2f08..c7d4914d4a 100644
--- a/repository/locale/zh_TW/fusiondirectory.po
+++ b/repository/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/af_ZA/fusiondirectory.po b/samba/locale/af_ZA/fusiondirectory.po
index 88c3b19885..8a8de2cfe1 100644
--- a/samba/locale/af_ZA/fusiondirectory.po
+++ b/samba/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po
index e1217cdd59..51e0948e3e 100644
--- a/samba/locale/ar/fusiondirectory.po
+++ b/samba/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po
index 5979f9a9fb..443d16c961 100644
--- a/samba/locale/ca/fusiondirectory.po
+++ b/samba/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po
index a9c566f34c..4f8cc4b226 100644
--- a/samba/locale/cs_CZ/fusiondirectory.po
+++ b/samba/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po
index 6bc465351b..b7b45ea654 100644
--- a/samba/locale/de/fusiondirectory.po
+++ b/samba/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po
index 3bf415f895..dc1623457c 100644
--- a/samba/locale/el_GR/fusiondirectory.po
+++ b/samba/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po
index 26da210006..efa39bb298 100644
--- a/samba/locale/es/fusiondirectory.po
+++ b/samba/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po
index c81c8d92ee..dd3ff4d40d 100644
--- a/samba/locale/es_CO/fusiondirectory.po
+++ b/samba/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po
index d2baaa8c43..5ad022ca6d 100644
--- a/samba/locale/es_VE/fusiondirectory.po
+++ b/samba/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po
index 14f503156c..ae78b6f54a 100644
--- a/samba/locale/fa_IR/fusiondirectory.po
+++ b/samba/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po
index 10a7e386ec..3270385b9d 100644
--- a/samba/locale/fi_FI/fusiondirectory.po
+++ b/samba/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po
index 84d508875e..b52401d980 100644
--- a/samba/locale/fr/fusiondirectory.po
+++ b/samba/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po
index 5a99eb668e..f0d0f91ac3 100644
--- a/samba/locale/hu_HU/fusiondirectory.po
+++ b/samba/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po
index 17b5a9f397..d991d50150 100644
--- a/samba/locale/id/fusiondirectory.po
+++ b/samba/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po
index 50f57ca9b9..52ee7826de 100644
--- a/samba/locale/it_IT/fusiondirectory.po
+++ b/samba/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/samba/locale/ja/fusiondirectory.po b/samba/locale/ja/fusiondirectory.po
index 0fe4376dd2..c3fd0a75eb 100644
--- a/samba/locale/ja/fusiondirectory.po
+++ b/samba/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ko/fusiondirectory.po b/samba/locale/ko/fusiondirectory.po
index fa5e653a0f..20093b7c09 100644
--- a/samba/locale/ko/fusiondirectory.po
+++ b/samba/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po
index 0cccf72257..24a33a4afe 100644
--- a/samba/locale/lv/fusiondirectory.po
+++ b/samba/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po
index 1839047e00..b4cd4bc981 100644
--- a/samba/locale/nb/fusiondirectory.po
+++ b/samba/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po
index 6a39d27556..4a37f8c3dc 100644
--- a/samba/locale/nl/fusiondirectory.po
+++ b/samba/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po
index 9d4dae6908..69211c7c95 100644
--- a/samba/locale/pl/fusiondirectory.po
+++ b/samba/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po
index b3ed4b42e3..e5736d2ac2 100644
--- a/samba/locale/pt/fusiondirectory.po
+++ b/samba/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po
index e7f85b220a..332eb05ef4 100644
--- a/samba/locale/pt_BR/fusiondirectory.po
+++ b/samba/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po
index d397d110bc..8ff65ed1e3 100644
--- a/samba/locale/ru/fusiondirectory.po
+++ b/samba/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po
index 8f077f675d..c2aeb47de8 100644
--- a/samba/locale/ru@petr1708/fusiondirectory.po
+++ b/samba/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po
index b1ffeab6da..ca948d90f9 100644
--- a/samba/locale/sv/fusiondirectory.po
+++ b/samba/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/samba/locale/tr_TR/fusiondirectory.po b/samba/locale/tr_TR/fusiondirectory.po
index c8e0c7cff6..6fc54daca8 100644
--- a/samba/locale/tr_TR/fusiondirectory.po
+++ b/samba/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po
index a6461e3979..32f4ef5259 100644
--- a/samba/locale/ug/fusiondirectory.po
+++ b/samba/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po
index 6c8493855c..9270f5d678 100644
--- a/samba/locale/vi_VN/fusiondirectory.po
+++ b/samba/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po
index 766d0e68bb..a200a2ddca 100644
--- a/samba/locale/zh/fusiondirectory.po
+++ b/samba/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/samba/locale/zh_TW/fusiondirectory.po b/samba/locale/zh_TW/fusiondirectory.po
index f7d07f3866..305bb0e070 100644
--- a/samba/locale/zh_TW/fusiondirectory.po
+++ b/samba/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/af_ZA/fusiondirectory.po b/sinaps/locale/af_ZA/fusiondirectory.po
index 6038c0713d..5c44b50807 100644
--- a/sinaps/locale/af_ZA/fusiondirectory.po
+++ b/sinaps/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ar/fusiondirectory.po b/sinaps/locale/ar/fusiondirectory.po
index eaccab63e5..4d41e9d632 100644
--- a/sinaps/locale/ar/fusiondirectory.po
+++ b/sinaps/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ca/fusiondirectory.po b/sinaps/locale/ca/fusiondirectory.po
index 81b7774015..3db8c4a3b6 100644
--- a/sinaps/locale/ca/fusiondirectory.po
+++ b/sinaps/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sinaps/locale/cs_CZ/fusiondirectory.po b/sinaps/locale/cs_CZ/fusiondirectory.po
index 6897f21ed4..9a4b76c3c9 100644
--- a/sinaps/locale/cs_CZ/fusiondirectory.po
+++ b/sinaps/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sinaps/locale/de/fusiondirectory.po b/sinaps/locale/de/fusiondirectory.po
index a82f16fa0e..280bafebdf 100644
--- a/sinaps/locale/de/fusiondirectory.po
+++ b/sinaps/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sinaps/locale/el_GR/fusiondirectory.po b/sinaps/locale/el_GR/fusiondirectory.po
index 31876d129f..b1914643a8 100644
--- a/sinaps/locale/el_GR/fusiondirectory.po
+++ b/sinaps/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sinaps/locale/es/fusiondirectory.po b/sinaps/locale/es/fusiondirectory.po
index 85084842f6..410ee16cec 100644
--- a/sinaps/locale/es/fusiondirectory.po
+++ b/sinaps/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sinaps/locale/es_CO/fusiondirectory.po b/sinaps/locale/es_CO/fusiondirectory.po
index e545de23ef..e95ae0b70b 100644
--- a/sinaps/locale/es_CO/fusiondirectory.po
+++ b/sinaps/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sinaps/locale/es_VE/fusiondirectory.po b/sinaps/locale/es_VE/fusiondirectory.po
index 331abe6db5..7fef0c4c62 100644
--- a/sinaps/locale/es_VE/fusiondirectory.po
+++ b/sinaps/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sinaps/locale/fa_IR/fusiondirectory.po b/sinaps/locale/fa_IR/fusiondirectory.po
index 2c7f1bafee..d7f9dcebde 100644
--- a/sinaps/locale/fa_IR/fusiondirectory.po
+++ b/sinaps/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/fi_FI/fusiondirectory.po b/sinaps/locale/fi_FI/fusiondirectory.po
index a7bb89ffd3..17353c13bf 100644
--- a/sinaps/locale/fi_FI/fusiondirectory.po
+++ b/sinaps/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sinaps/locale/fr/fusiondirectory.po b/sinaps/locale/fr/fusiondirectory.po
index 125ccc6881..c8cc872c5b 100644
--- a/sinaps/locale/fr/fusiondirectory.po
+++ b/sinaps/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -187,11 +187,11 @@ msgstr "Nom du champ FusionDirectory"
 
 #: config/sinaps/class_sinapsConfig.inc:122
 msgid "User field mapping"
-msgstr ""
+msgstr "Correspondance des champs utilisateurs"
 
 #: config/sinaps/class_sinapsConfig.inc:153
 msgid "Structure field mapping"
-msgstr ""
+msgstr "Correspondance des champs structures"
 
 #: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
diff --git a/sinaps/locale/hu_HU/fusiondirectory.po b/sinaps/locale/hu_HU/fusiondirectory.po
index a312ad4cc7..2df63d1907 100644
--- a/sinaps/locale/hu_HU/fusiondirectory.po
+++ b/sinaps/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/id/fusiondirectory.po b/sinaps/locale/id/fusiondirectory.po
index 51b0f58bdd..6e1c6bc142 100644
--- a/sinaps/locale/id/fusiondirectory.po
+++ b/sinaps/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index 7c2d57abf8..d97e957b4a 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -6,16 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2019
 # Paola Penati <paola.penati@opensides.be>, 2019
-# Paola PENATI <paola.penati@fusiondirectory.org>, 2019
+# Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Paola PENATI <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/sinaps/locale/ja/fusiondirectory.po b/sinaps/locale/ja/fusiondirectory.po
index 9ff48ae33a..498039545b 100644
--- a/sinaps/locale/ja/fusiondirectory.po
+++ b/sinaps/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ko/fusiondirectory.po b/sinaps/locale/ko/fusiondirectory.po
index c3980efbb4..e325c34f1d 100644
--- a/sinaps/locale/ko/fusiondirectory.po
+++ b/sinaps/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sinaps/locale/lv/fusiondirectory.po b/sinaps/locale/lv/fusiondirectory.po
index 7c9ed0fe3b..b3edcf14ac 100644
--- a/sinaps/locale/lv/fusiondirectory.po
+++ b/sinaps/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nb/fusiondirectory.po b/sinaps/locale/nb/fusiondirectory.po
index 6c16ca2fb0..74650a77b2 100644
--- a/sinaps/locale/nb/fusiondirectory.po
+++ b/sinaps/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nl/fusiondirectory.po b/sinaps/locale/nl/fusiondirectory.po
index 1e11873e53..63c59544a7 100644
--- a/sinaps/locale/nl/fusiondirectory.po
+++ b/sinaps/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2019\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sinaps/locale/pl/fusiondirectory.po b/sinaps/locale/pl/fusiondirectory.po
index 969a3f0557..7b89ca579e 100644
--- a/sinaps/locale/pl/fusiondirectory.po
+++ b/sinaps/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sinaps/locale/pt/fusiondirectory.po b/sinaps/locale/pt/fusiondirectory.po
index 011212ff32..535f3d960b 100644
--- a/sinaps/locale/pt/fusiondirectory.po
+++ b/sinaps/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sinaps/locale/pt_BR/fusiondirectory.po b/sinaps/locale/pt_BR/fusiondirectory.po
index e54209c442..6989e1522c 100644
--- a/sinaps/locale/pt_BR/fusiondirectory.po
+++ b/sinaps/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sinaps/locale/ru/fusiondirectory.po b/sinaps/locale/ru/fusiondirectory.po
index c1d1857287..b496aad2a0 100644
--- a/sinaps/locale/ru/fusiondirectory.po
+++ b/sinaps/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sinaps/locale/ru@petr1708/fusiondirectory.po b/sinaps/locale/ru@petr1708/fusiondirectory.po
index f07676a2c1..9f5ee19e99 100644
--- a/sinaps/locale/ru@petr1708/fusiondirectory.po
+++ b/sinaps/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/sv/fusiondirectory.po b/sinaps/locale/sv/fusiondirectory.po
index 7e1caf598d..978129b68d 100644
--- a/sinaps/locale/sv/fusiondirectory.po
+++ b/sinaps/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sinaps/locale/tr_TR/fusiondirectory.po b/sinaps/locale/tr_TR/fusiondirectory.po
index b4640224d2..db9d87636c 100644
--- a/sinaps/locale/tr_TR/fusiondirectory.po
+++ b/sinaps/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ug/fusiondirectory.po b/sinaps/locale/ug/fusiondirectory.po
index f0a6400f7a..afb9215c3b 100644
--- a/sinaps/locale/ug/fusiondirectory.po
+++ b/sinaps/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/vi_VN/fusiondirectory.po b/sinaps/locale/vi_VN/fusiondirectory.po
index 600905b5b0..d48a29b067 100644
--- a/sinaps/locale/vi_VN/fusiondirectory.po
+++ b/sinaps/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sinaps/locale/zh/fusiondirectory.po b/sinaps/locale/zh/fusiondirectory.po
index dae07e96cc..ac7833daa9 100644
--- a/sinaps/locale/zh/fusiondirectory.po
+++ b/sinaps/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sinaps/locale/zh_TW/fusiondirectory.po b/sinaps/locale/zh_TW/fusiondirectory.po
index c8cba4df74..b0947f6a3e 100644
--- a/sinaps/locale/zh_TW/fusiondirectory.po
+++ b/sinaps/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/af_ZA/fusiondirectory.po b/sogo/locale/af_ZA/fusiondirectory.po
index f4fc0d228f..6cbe71fb71 100644
--- a/sogo/locale/af_ZA/fusiondirectory.po
+++ b/sogo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po
index 74faa0aebe..709d9478dc 100644
--- a/sogo/locale/ar/fusiondirectory.po
+++ b/sogo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po
index 59d64410ed..759bc8fdc5 100644
--- a/sogo/locale/ca/fusiondirectory.po
+++ b/sogo/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po
index 88bcfb093e..cd5c6f5b10 100644
--- a/sogo/locale/cs_CZ/fusiondirectory.po
+++ b/sogo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po
index 1e04a51dd2..56513a923f 100644
--- a/sogo/locale/de/fusiondirectory.po
+++ b/sogo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po
index 7fccea3d15..6471a3b9f2 100644
--- a/sogo/locale/el_GR/fusiondirectory.po
+++ b/sogo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po
index 02fb3df21a..4964cda886 100644
--- a/sogo/locale/es/fusiondirectory.po
+++ b/sogo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po
index b28fa42a87..e3bef2d4f6 100644
--- a/sogo/locale/es_CO/fusiondirectory.po
+++ b/sogo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po
index 220cd85671..97ce9b1dc9 100644
--- a/sogo/locale/es_VE/fusiondirectory.po
+++ b/sogo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po
index 4b2ab49f04..01b7f34809 100644
--- a/sogo/locale/fa_IR/fusiondirectory.po
+++ b/sogo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po
index be5aa1c127..95389af828 100644
--- a/sogo/locale/fi_FI/fusiondirectory.po
+++ b/sogo/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po
index f4815fccd3..37c2817915 100644
--- a/sogo/locale/fr/fusiondirectory.po
+++ b/sogo/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po
index 28db92edb0..8fb63e8fbc 100644
--- a/sogo/locale/hu_HU/fusiondirectory.po
+++ b/sogo/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po
index fe81fa4c6f..670ce0da89 100644
--- a/sogo/locale/id/fusiondirectory.po
+++ b/sogo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po
index 20621def5f..a68b034d5e 100644
--- a/sogo/locale/it_IT/fusiondirectory.po
+++ b/sogo/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sogo/locale/ja/fusiondirectory.po b/sogo/locale/ja/fusiondirectory.po
index b154543d77..4e1f6a2b45 100644
--- a/sogo/locale/ja/fusiondirectory.po
+++ b/sogo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ko/fusiondirectory.po b/sogo/locale/ko/fusiondirectory.po
index 796dddaa34..4a981abc95 100644
--- a/sogo/locale/ko/fusiondirectory.po
+++ b/sogo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po
index 23fc3fb228..448ef5f12f 100644
--- a/sogo/locale/lv/fusiondirectory.po
+++ b/sogo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po
index 985b034322..8dd1b945e4 100644
--- a/sogo/locale/nb/fusiondirectory.po
+++ b/sogo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po
index f93c553297..667920a9fe 100644
--- a/sogo/locale/nl/fusiondirectory.po
+++ b/sogo/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po
index 59deaacb12..c1cc2fbf64 100644
--- a/sogo/locale/pl/fusiondirectory.po
+++ b/sogo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po
index 74ae95cb83..8ad9331191 100644
--- a/sogo/locale/pt/fusiondirectory.po
+++ b/sogo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po
index 674a4c8218..1b7680d70d 100644
--- a/sogo/locale/pt_BR/fusiondirectory.po
+++ b/sogo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po
index 2d5ce12e3c..24d191c950 100644
--- a/sogo/locale/ru/fusiondirectory.po
+++ b/sogo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po
index 9a6ff6d0d9..a4605d9599 100644
--- a/sogo/locale/ru@petr1708/fusiondirectory.po
+++ b/sogo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po
index cfe3330de3..260f918a9c 100644
--- a/sogo/locale/sv/fusiondirectory.po
+++ b/sogo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sogo/locale/tr_TR/fusiondirectory.po b/sogo/locale/tr_TR/fusiondirectory.po
index e4c2fd181c..283d772d32 100644
--- a/sogo/locale/tr_TR/fusiondirectory.po
+++ b/sogo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po
index ad5afc0ca4..4a5e2e1494 100644
--- a/sogo/locale/ug/fusiondirectory.po
+++ b/sogo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po
index e45f19b702..cc1226866e 100644
--- a/sogo/locale/vi_VN/fusiondirectory.po
+++ b/sogo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po
index 629ba96903..e4238a5df8 100644
--- a/sogo/locale/zh/fusiondirectory.po
+++ b/sogo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sogo/locale/zh_TW/fusiondirectory.po b/sogo/locale/zh_TW/fusiondirectory.po
index bf5c65ccdc..e0d2eb8fac 100644
--- a/sogo/locale/zh_TW/fusiondirectory.po
+++ b/sogo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/af_ZA/fusiondirectory.po b/spamassassin/locale/af_ZA/fusiondirectory.po
index 3f1d1cf387..fe1a7749aa 100644
--- a/spamassassin/locale/af_ZA/fusiondirectory.po
+++ b/spamassassin/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po
index 8316574c16..149347ebb4 100644
--- a/spamassassin/locale/ar/fusiondirectory.po
+++ b/spamassassin/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po
index bbdb8b2ba1..1e289db5fd 100644
--- a/spamassassin/locale/ca/fusiondirectory.po
+++ b/spamassassin/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po
index d1e09018d7..e3801c3451 100644
--- a/spamassassin/locale/cs_CZ/fusiondirectory.po
+++ b/spamassassin/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po
index 261fed4339..37d959181e 100644
--- a/spamassassin/locale/de/fusiondirectory.po
+++ b/spamassassin/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po
index 5e527744a1..6d13566281 100644
--- a/spamassassin/locale/el_GR/fusiondirectory.po
+++ b/spamassassin/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po
index ea6a471600..341ce209a8 100644
--- a/spamassassin/locale/es/fusiondirectory.po
+++ b/spamassassin/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po
index 5930f0854c..673163611c 100644
--- a/spamassassin/locale/es_CO/fusiondirectory.po
+++ b/spamassassin/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po
index ff9c4cec91..18b6162484 100644
--- a/spamassassin/locale/es_VE/fusiondirectory.po
+++ b/spamassassin/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po
index 3c02f790c7..fd24590091 100644
--- a/spamassassin/locale/fa_IR/fusiondirectory.po
+++ b/spamassassin/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po
index de44b89048..a2a8df5504 100644
--- a/spamassassin/locale/fi_FI/fusiondirectory.po
+++ b/spamassassin/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po
index 736f8eb84a..dd88d36e25 100644
--- a/spamassassin/locale/fr/fusiondirectory.po
+++ b/spamassassin/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po
index 3f4fde0ea2..a7162d6461 100644
--- a/spamassassin/locale/hu_HU/fusiondirectory.po
+++ b/spamassassin/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po
index 902b34e11f..c3a1ea5dad 100644
--- a/spamassassin/locale/id/fusiondirectory.po
+++ b/spamassassin/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po
index eba931c2e7..6d868a6cf3 100644
--- a/spamassassin/locale/it_IT/fusiondirectory.po
+++ b/spamassassin/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/spamassassin/locale/ja/fusiondirectory.po b/spamassassin/locale/ja/fusiondirectory.po
index a54a1fa145..839598c021 100644
--- a/spamassassin/locale/ja/fusiondirectory.po
+++ b/spamassassin/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ko/fusiondirectory.po b/spamassassin/locale/ko/fusiondirectory.po
index 158e8acffb..dd02dbc6d9 100644
--- a/spamassassin/locale/ko/fusiondirectory.po
+++ b/spamassassin/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po
index 8653e841c1..0eff02b638 100644
--- a/spamassassin/locale/lv/fusiondirectory.po
+++ b/spamassassin/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po
index f588768d12..f874425f42 100644
--- a/spamassassin/locale/nb/fusiondirectory.po
+++ b/spamassassin/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po
index bed396e8fe..93a907a600 100644
--- a/spamassassin/locale/nl/fusiondirectory.po
+++ b/spamassassin/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po
index e4293c7610..3b6dbbce17 100644
--- a/spamassassin/locale/pl/fusiondirectory.po
+++ b/spamassassin/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po
index 9ff39883f2..931d7ea875 100644
--- a/spamassassin/locale/pt/fusiondirectory.po
+++ b/spamassassin/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po
index 0a99c8181a..87c42f9f98 100644
--- a/spamassassin/locale/pt_BR/fusiondirectory.po
+++ b/spamassassin/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po
index 3bffdab4d9..f8e56679ce 100644
--- a/spamassassin/locale/ru/fusiondirectory.po
+++ b/spamassassin/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po
index 6267d06b89..e285e1d49b 100644
--- a/spamassassin/locale/ru@petr1708/fusiondirectory.po
+++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po
index a92626c29e..7aa6144969 100644
--- a/spamassassin/locale/sv/fusiondirectory.po
+++ b/spamassassin/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/spamassassin/locale/tr_TR/fusiondirectory.po b/spamassassin/locale/tr_TR/fusiondirectory.po
index 3be28dbc4b..4f4305255f 100644
--- a/spamassassin/locale/tr_TR/fusiondirectory.po
+++ b/spamassassin/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po
index 4d8c375cf8..33cc971612 100644
--- a/spamassassin/locale/ug/fusiondirectory.po
+++ b/spamassassin/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po
index 9ed3c29a38..c05ccebfee 100644
--- a/spamassassin/locale/vi_VN/fusiondirectory.po
+++ b/spamassassin/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po
index 9b3c2b9fc5..cef6be0fa3 100644
--- a/spamassassin/locale/zh/fusiondirectory.po
+++ b/spamassassin/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/spamassassin/locale/zh_TW/fusiondirectory.po b/spamassassin/locale/zh_TW/fusiondirectory.po
index a910159481..bdab35248b 100644
--- a/spamassassin/locale/zh_TW/fusiondirectory.po
+++ b/spamassassin/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/af_ZA/fusiondirectory.po b/squid/locale/af_ZA/fusiondirectory.po
index ec4d2de701..23f68555eb 100644
--- a/squid/locale/af_ZA/fusiondirectory.po
+++ b/squid/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po
index ab2029b7a4..95a8bc2334 100644
--- a/squid/locale/ar/fusiondirectory.po
+++ b/squid/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po
index fbf7c047e2..c459edff61 100644
--- a/squid/locale/ca/fusiondirectory.po
+++ b/squid/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po
index b9d18ea515..1cfd050d63 100644
--- a/squid/locale/cs_CZ/fusiondirectory.po
+++ b/squid/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po
index 9a7a4f865f..81f4535c7b 100644
--- a/squid/locale/de/fusiondirectory.po
+++ b/squid/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po
index 71156a7850..92034d04fb 100644
--- a/squid/locale/el_GR/fusiondirectory.po
+++ b/squid/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po
index 68f758a7fa..11227dd4ee 100644
--- a/squid/locale/es/fusiondirectory.po
+++ b/squid/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po
index 164b2b7b17..91dae81cc3 100644
--- a/squid/locale/es_CO/fusiondirectory.po
+++ b/squid/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po
index 5bd271c55a..71ae410eb7 100644
--- a/squid/locale/es_VE/fusiondirectory.po
+++ b/squid/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po
index a70a12e56a..deece7227e 100644
--- a/squid/locale/fa_IR/fusiondirectory.po
+++ b/squid/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po
index 4e775c1a6a..a1666d60db 100644
--- a/squid/locale/fi_FI/fusiondirectory.po
+++ b/squid/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po
index 0c12a6ff28..3ce1fdf1f4 100644
--- a/squid/locale/fr/fusiondirectory.po
+++ b/squid/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po
index 6f6135d1fe..fe50f3064d 100644
--- a/squid/locale/hu_HU/fusiondirectory.po
+++ b/squid/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po
index a025a61e45..5440ae2eda 100644
--- a/squid/locale/id/fusiondirectory.po
+++ b/squid/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po
index 22dbb8aa2a..8aa0988d71 100644
--- a/squid/locale/it_IT/fusiondirectory.po
+++ b/squid/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/squid/locale/ja/fusiondirectory.po b/squid/locale/ja/fusiondirectory.po
index 449856a818..e62f9b2610 100644
--- a/squid/locale/ja/fusiondirectory.po
+++ b/squid/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ko/fusiondirectory.po b/squid/locale/ko/fusiondirectory.po
index 6ade7582b7..423e048a5b 100644
--- a/squid/locale/ko/fusiondirectory.po
+++ b/squid/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po
index 173b43220c..e0489df428 100644
--- a/squid/locale/lv/fusiondirectory.po
+++ b/squid/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po
index 4ffc4218cb..abacefc62c 100644
--- a/squid/locale/nb/fusiondirectory.po
+++ b/squid/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po
index a245655407..0b7a440f0d 100644
--- a/squid/locale/nl/fusiondirectory.po
+++ b/squid/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po
index 38c0555fbf..3b000c4b4f 100644
--- a/squid/locale/pl/fusiondirectory.po
+++ b/squid/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po
index d26a796c6a..469e3f0ee8 100644
--- a/squid/locale/pt/fusiondirectory.po
+++ b/squid/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po
index 7aa95d14f4..89e8c41799 100644
--- a/squid/locale/pt_BR/fusiondirectory.po
+++ b/squid/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po
index d744d3cc51..a29555b534 100644
--- a/squid/locale/ru/fusiondirectory.po
+++ b/squid/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po
index 17106fb9c8..712ad559b6 100644
--- a/squid/locale/ru@petr1708/fusiondirectory.po
+++ b/squid/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po
index 13a5baffbe..8084484b7d 100644
--- a/squid/locale/sv/fusiondirectory.po
+++ b/squid/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/squid/locale/tr_TR/fusiondirectory.po b/squid/locale/tr_TR/fusiondirectory.po
index 562c80dd61..ac7826ec98 100644
--- a/squid/locale/tr_TR/fusiondirectory.po
+++ b/squid/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po
index afe840accb..235044b3e6 100644
--- a/squid/locale/ug/fusiondirectory.po
+++ b/squid/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po
index c124cea31f..c18af219cb 100644
--- a/squid/locale/vi_VN/fusiondirectory.po
+++ b/squid/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po
index 9714c29277..9ae2f2a6fa 100644
--- a/squid/locale/zh/fusiondirectory.po
+++ b/squid/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/squid/locale/zh_TW/fusiondirectory.po b/squid/locale/zh_TW/fusiondirectory.po
index 31bea394f1..52a8c282c9 100644
--- a/squid/locale/zh_TW/fusiondirectory.po
+++ b/squid/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/af_ZA/fusiondirectory.po b/ssh/locale/af_ZA/fusiondirectory.po
index 4027d8f221..267a6f261c 100644
--- a/ssh/locale/af_ZA/fusiondirectory.po
+++ b/ssh/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po
index 68e585bbcd..c0fccde244 100644
--- a/ssh/locale/ar/fusiondirectory.po
+++ b/ssh/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po
index 38e652d47e..99dae2b6d5 100644
--- a/ssh/locale/ca/fusiondirectory.po
+++ b/ssh/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po
index b008d55fb1..f07cb397d0 100644
--- a/ssh/locale/cs_CZ/fusiondirectory.po
+++ b/ssh/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po
index 27437dc230..a03a0f5aee 100644
--- a/ssh/locale/de/fusiondirectory.po
+++ b/ssh/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po
index 58d74013dd..53e5507631 100644
--- a/ssh/locale/el_GR/fusiondirectory.po
+++ b/ssh/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po
index d48cac67d7..f82b4b347b 100644
--- a/ssh/locale/es/fusiondirectory.po
+++ b/ssh/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po
index 28e365582e..3aa67d37a9 100644
--- a/ssh/locale/es_CO/fusiondirectory.po
+++ b/ssh/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po
index 36c96c7155..91ae341b9e 100644
--- a/ssh/locale/es_VE/fusiondirectory.po
+++ b/ssh/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po
index d51ad484b9..eaa3fd3191 100644
--- a/ssh/locale/fa_IR/fusiondirectory.po
+++ b/ssh/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po
index e5d4615eda..d91a70c34e 100644
--- a/ssh/locale/fi_FI/fusiondirectory.po
+++ b/ssh/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po
index 96d1dde66a..bcb27c25db 100644
--- a/ssh/locale/fr/fusiondirectory.po
+++ b/ssh/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po
index f48ea92aea..dbdc5fe721 100644
--- a/ssh/locale/hu_HU/fusiondirectory.po
+++ b/ssh/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po
index 67e8aa870c..c637242fda 100644
--- a/ssh/locale/id/fusiondirectory.po
+++ b/ssh/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po
index 73ef2e7e43..f7f18f27c9 100644
--- a/ssh/locale/it_IT/fusiondirectory.po
+++ b/ssh/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ssh/locale/ja/fusiondirectory.po b/ssh/locale/ja/fusiondirectory.po
index 37146bf583..9aa0ec011f 100644
--- a/ssh/locale/ja/fusiondirectory.po
+++ b/ssh/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ko/fusiondirectory.po b/ssh/locale/ko/fusiondirectory.po
index 8e0faade5f..7a548475d9 100644
--- a/ssh/locale/ko/fusiondirectory.po
+++ b/ssh/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po
index 42a8a37cd9..7f3e2b361f 100644
--- a/ssh/locale/lv/fusiondirectory.po
+++ b/ssh/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po
index 94a94f7f73..084d8af92f 100644
--- a/ssh/locale/nb/fusiondirectory.po
+++ b/ssh/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po
index 30f361dd34..c6f052f1da 100644
--- a/ssh/locale/nl/fusiondirectory.po
+++ b/ssh/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po
index 1f2e134c81..283912a0bd 100644
--- a/ssh/locale/pl/fusiondirectory.po
+++ b/ssh/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po
index 1a147d94b5..4c77ca0fa4 100644
--- a/ssh/locale/pt/fusiondirectory.po
+++ b/ssh/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po
index 887b18a986..39522b61e2 100644
--- a/ssh/locale/pt_BR/fusiondirectory.po
+++ b/ssh/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po
index a4a2706767..faf54a923e 100644
--- a/ssh/locale/ru/fusiondirectory.po
+++ b/ssh/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po
index e4256d7be7..a27ab7f17e 100644
--- a/ssh/locale/ru@petr1708/fusiondirectory.po
+++ b/ssh/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po
index 1dcc3d1ead..e127c9ff39 100644
--- a/ssh/locale/sv/fusiondirectory.po
+++ b/ssh/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/tr_TR/fusiondirectory.po b/ssh/locale/tr_TR/fusiondirectory.po
index 2f26ca7a29..8c304db763 100644
--- a/ssh/locale/tr_TR/fusiondirectory.po
+++ b/ssh/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po
index 5e0d7c8a35..781cf35217 100644
--- a/ssh/locale/ug/fusiondirectory.po
+++ b/ssh/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po
index eebef435e0..656b18aac7 100644
--- a/ssh/locale/vi_VN/fusiondirectory.po
+++ b/ssh/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po
index 03a72fce7c..bae7d61d97 100644
--- a/ssh/locale/zh/fusiondirectory.po
+++ b/ssh/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh_TW/fusiondirectory.po b/ssh/locale/zh_TW/fusiondirectory.po
index 4d60b9ca6c..5517a54cec 100644
--- a/ssh/locale/zh_TW/fusiondirectory.po
+++ b/ssh/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/af_ZA/fusiondirectory.po b/subcontracting/locale/af_ZA/fusiondirectory.po
index c75656f822..568d084d29 100644
--- a/subcontracting/locale/af_ZA/fusiondirectory.po
+++ b/subcontracting/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po
index cecb5cd9b2..7226addf1b 100644
--- a/subcontracting/locale/ar/fusiondirectory.po
+++ b/subcontracting/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po
index bb3a92a088..0a8def202e 100644
--- a/subcontracting/locale/ca/fusiondirectory.po
+++ b/subcontracting/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po
index 6e48a33434..33b41e46c9 100644
--- a/subcontracting/locale/cs_CZ/fusiondirectory.po
+++ b/subcontracting/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po
index 89308e14eb..46a2ae22b3 100644
--- a/subcontracting/locale/de/fusiondirectory.po
+++ b/subcontracting/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po
index d4f0b250f9..bbe5b67253 100644
--- a/subcontracting/locale/el_GR/fusiondirectory.po
+++ b/subcontracting/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po
index 6a3c3aab09..a17708705b 100644
--- a/subcontracting/locale/es/fusiondirectory.po
+++ b/subcontracting/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po
index 429d7bb329..040988a3c8 100644
--- a/subcontracting/locale/es_CO/fusiondirectory.po
+++ b/subcontracting/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po
index bc32ca3b27..deccbbc027 100644
--- a/subcontracting/locale/es_VE/fusiondirectory.po
+++ b/subcontracting/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po
index 9e4705b83b..932853eb82 100644
--- a/subcontracting/locale/fa_IR/fusiondirectory.po
+++ b/subcontracting/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po
index 91f156e534..a080a02fac 100644
--- a/subcontracting/locale/fi_FI/fusiondirectory.po
+++ b/subcontracting/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po
index 45c419a9b8..6b9126711a 100644
--- a/subcontracting/locale/fr/fusiondirectory.po
+++ b/subcontracting/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po
index 9a4b540908..ef76960302 100644
--- a/subcontracting/locale/hu_HU/fusiondirectory.po
+++ b/subcontracting/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po
index 1530fb52f6..4943d6ba1f 100644
--- a/subcontracting/locale/id/fusiondirectory.po
+++ b/subcontracting/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po
index 9a8aa8604a..c919038726 100644
--- a/subcontracting/locale/it_IT/fusiondirectory.po
+++ b/subcontracting/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/subcontracting/locale/ja/fusiondirectory.po b/subcontracting/locale/ja/fusiondirectory.po
index 99b4fd0c50..361b411f2d 100644
--- a/subcontracting/locale/ja/fusiondirectory.po
+++ b/subcontracting/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ko/fusiondirectory.po b/subcontracting/locale/ko/fusiondirectory.po
index eb2256d487..7b0435cd3b 100644
--- a/subcontracting/locale/ko/fusiondirectory.po
+++ b/subcontracting/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po
index f55e1e0321..42fc4a51c1 100644
--- a/subcontracting/locale/lv/fusiondirectory.po
+++ b/subcontracting/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po
index 6a7f46b3d2..186143a731 100644
--- a/subcontracting/locale/nb/fusiondirectory.po
+++ b/subcontracting/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po
index 42f7d3dd9d..851117d240 100644
--- a/subcontracting/locale/nl/fusiondirectory.po
+++ b/subcontracting/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po
index 4cb42a0254..9a394c8a03 100644
--- a/subcontracting/locale/pl/fusiondirectory.po
+++ b/subcontracting/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po
index 03ba043aff..43869aee3b 100644
--- a/subcontracting/locale/pt/fusiondirectory.po
+++ b/subcontracting/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po
index f23c2554ed..51f9d2aa06 100644
--- a/subcontracting/locale/pt_BR/fusiondirectory.po
+++ b/subcontracting/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po
index efc50ce8c8..bcfee817ee 100644
--- a/subcontracting/locale/ru/fusiondirectory.po
+++ b/subcontracting/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po
index cb4cea3c2f..6aec32a0c9 100644
--- a/subcontracting/locale/ru@petr1708/fusiondirectory.po
+++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po
index ac86e1c67b..9610e4021a 100644
--- a/subcontracting/locale/sv/fusiondirectory.po
+++ b/subcontracting/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/subcontracting/locale/tr_TR/fusiondirectory.po b/subcontracting/locale/tr_TR/fusiondirectory.po
index a19c3c0461..54a002d889 100644
--- a/subcontracting/locale/tr_TR/fusiondirectory.po
+++ b/subcontracting/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po
index 888e5342eb..9962d521a9 100644
--- a/subcontracting/locale/ug/fusiondirectory.po
+++ b/subcontracting/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po
index 6e27d05b0c..74e5f83eb5 100644
--- a/subcontracting/locale/vi_VN/fusiondirectory.po
+++ b/subcontracting/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po
index bf4accc983..9ef065050e 100644
--- a/subcontracting/locale/zh/fusiondirectory.po
+++ b/subcontracting/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/subcontracting/locale/zh_TW/fusiondirectory.po b/subcontracting/locale/zh_TW/fusiondirectory.po
index d437b887e6..1864526a70 100644
--- a/subcontracting/locale/zh_TW/fusiondirectory.po
+++ b/subcontracting/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/af_ZA/fusiondirectory.po b/sudo/locale/af_ZA/fusiondirectory.po
index 0bf0b95e6d..1af851c899 100644
--- a/sudo/locale/af_ZA/fusiondirectory.po
+++ b/sudo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po
index 940e7bf574..23258aa76a 100644
--- a/sudo/locale/ar/fusiondirectory.po
+++ b/sudo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po
index 4258d741ab..faf8a4a4ad 100644
--- a/sudo/locale/ca/fusiondirectory.po
+++ b/sudo/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po
index 1f480903dc..490976e420 100644
--- a/sudo/locale/cs_CZ/fusiondirectory.po
+++ b/sudo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po
index 0b659e5d37..a0b8d25db8 100644
--- a/sudo/locale/de/fusiondirectory.po
+++ b/sudo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po
index 99fa36d721..cd9e9acc5b 100644
--- a/sudo/locale/el_GR/fusiondirectory.po
+++ b/sudo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po
index 253fa8490c..01f6b0abe4 100644
--- a/sudo/locale/es/fusiondirectory.po
+++ b/sudo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po
index 45ddae0d59..07d3a4de92 100644
--- a/sudo/locale/es_CO/fusiondirectory.po
+++ b/sudo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po
index ccec0a6757..14fb69b7d6 100644
--- a/sudo/locale/es_VE/fusiondirectory.po
+++ b/sudo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po
index fe86935260..8640019e4a 100644
--- a/sudo/locale/fa_IR/fusiondirectory.po
+++ b/sudo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po
index 720874ec27..cec9d353c8 100644
--- a/sudo/locale/fi_FI/fusiondirectory.po
+++ b/sudo/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po
index 7279fb8f3d..555030489a 100644
--- a/sudo/locale/fr/fusiondirectory.po
+++ b/sudo/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po
index a69128c2d1..eda7d2018f 100644
--- a/sudo/locale/hu_HU/fusiondirectory.po
+++ b/sudo/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po
index 0594c819be..ef76007bf9 100644
--- a/sudo/locale/id/fusiondirectory.po
+++ b/sudo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index 5c7093d511..a84a66b9f6 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sudo/locale/ja/fusiondirectory.po b/sudo/locale/ja/fusiondirectory.po
index 8bf7eca9e9..fa5b8d98e4 100644
--- a/sudo/locale/ja/fusiondirectory.po
+++ b/sudo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ko/fusiondirectory.po b/sudo/locale/ko/fusiondirectory.po
index ba831e863d..e66e0607a1 100644
--- a/sudo/locale/ko/fusiondirectory.po
+++ b/sudo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po
index 1724c8c15f..7d3b77a3b0 100644
--- a/sudo/locale/lv/fusiondirectory.po
+++ b/sudo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po
index 8b8bf36d4a..3ea10a9d31 100644
--- a/sudo/locale/nb/fusiondirectory.po
+++ b/sudo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po
index b6701b68d1..c77c7e00ee 100644
--- a/sudo/locale/nl/fusiondirectory.po
+++ b/sudo/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po
index 6c4088daa9..aa68747808 100644
--- a/sudo/locale/pl/fusiondirectory.po
+++ b/sudo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po
index f3a903b670..0cdfa354d2 100644
--- a/sudo/locale/pt/fusiondirectory.po
+++ b/sudo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po
index 8587c2ce0d..69187f17c3 100644
--- a/sudo/locale/pt_BR/fusiondirectory.po
+++ b/sudo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po
index bc09c4e424..cffba12104 100644
--- a/sudo/locale/ru/fusiondirectory.po
+++ b/sudo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po
index 2efb959312..f6e80b9e92 100644
--- a/sudo/locale/ru@petr1708/fusiondirectory.po
+++ b/sudo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po
index 1c026b0921..2cf4d92f54 100644
--- a/sudo/locale/sv/fusiondirectory.po
+++ b/sudo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sudo/locale/tr_TR/fusiondirectory.po b/sudo/locale/tr_TR/fusiondirectory.po
index dbc2dd714f..e6d7c84b87 100644
--- a/sudo/locale/tr_TR/fusiondirectory.po
+++ b/sudo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po
index 2d9eea5d9c..183e00fa3c 100644
--- a/sudo/locale/ug/fusiondirectory.po
+++ b/sudo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po
index 6b64ad9ad9..5ffe56c426 100644
--- a/sudo/locale/vi_VN/fusiondirectory.po
+++ b/sudo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po
index 4bd1f068ad..ceff83560f 100644
--- a/sudo/locale/zh/fusiondirectory.po
+++ b/sudo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sudo/locale/zh_TW/fusiondirectory.po b/sudo/locale/zh_TW/fusiondirectory.po
index 69eb2dc4dc..a2609b2d11 100644
--- a/sudo/locale/zh_TW/fusiondirectory.po
+++ b/sudo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/af_ZA/fusiondirectory.po b/supann/locale/af_ZA/fusiondirectory.po
index 200963e3e8..1179e5db13 100644
--- a/supann/locale/af_ZA/fusiondirectory.po
+++ b/supann/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po
index ca9552afff..e99a22a7f3 100644
--- a/supann/locale/ar/fusiondirectory.po
+++ b/supann/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po
index fa1162483a..1397d467a7 100644
--- a/supann/locale/ca/fusiondirectory.po
+++ b/supann/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po
index e7a5433026..1d342e526b 100644
--- a/supann/locale/cs_CZ/fusiondirectory.po
+++ b/supann/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po
index 643ffcd8ff..ec69cf0d5c 100644
--- a/supann/locale/de/fusiondirectory.po
+++ b/supann/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po
index ca4f3e120c..e67e4d67b5 100644
--- a/supann/locale/el_GR/fusiondirectory.po
+++ b/supann/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po
index 1a80b66501..34a15433ed 100644
--- a/supann/locale/es/fusiondirectory.po
+++ b/supann/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po
index acf0dbdc68..066194c9c6 100644
--- a/supann/locale/es_CO/fusiondirectory.po
+++ b/supann/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po
index 99bb33a610..7a9d6e63f5 100644
--- a/supann/locale/es_VE/fusiondirectory.po
+++ b/supann/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po
index 81c17218aa..9812db1270 100644
--- a/supann/locale/fa_IR/fusiondirectory.po
+++ b/supann/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po
index fdab2645eb..4d5536a7b2 100644
--- a/supann/locale/fi_FI/fusiondirectory.po
+++ b/supann/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po
index c837c0006b..461815dcd5 100644
--- a/supann/locale/fr/fusiondirectory.po
+++ b/supann/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po
index 1d84263a99..89eb11f5da 100644
--- a/supann/locale/hu_HU/fusiondirectory.po
+++ b/supann/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po
index ea0ba6ce76..b9560e22c8 100644
--- a/supann/locale/id/fusiondirectory.po
+++ b/supann/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index 8ca0678bb2..c1e849b51a 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/supann/locale/ja/fusiondirectory.po b/supann/locale/ja/fusiondirectory.po
index f9cc5894da..9fbb69ef8a 100644
--- a/supann/locale/ja/fusiondirectory.po
+++ b/supann/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ko/fusiondirectory.po b/supann/locale/ko/fusiondirectory.po
index b6662f6b04..e2309024a6 100644
--- a/supann/locale/ko/fusiondirectory.po
+++ b/supann/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: personal/supann/class_supannAccount.inc:335
 #: personal/supann/class_supannAccount.inc:374
 msgid "Establishment"
-msgstr ""
+msgstr "설립"
 
 #: admin/supannStructures/class_etablissement.inc:33
 msgid "SupAnn Establishment Settings"
@@ -85,7 +85,7 @@ msgstr ""
 #: admin/supannStructures/class_etablissement.inc:80
 #: admin/supannStructures/class_entite.inc:68
 msgid "Telephone"
-msgstr ""
+msgstr "ì „í™”"
 
 #: admin/supannStructures/class_etablissement.inc:80
 msgid "Phone number of this establishment"
@@ -94,7 +94,7 @@ msgstr ""
 #: admin/supannStructures/class_etablissement.inc:84
 #: admin/supannStructures/class_entite.inc:72
 msgid "Fax"
-msgstr ""
+msgstr "팩스"
 
 #: admin/supannStructures/class_etablissement.inc:84
 msgid "Fax number of this establishment"
@@ -106,7 +106,7 @@ msgstr ""
 
 #: admin/supannStructures/class_etablissement.inc:93
 msgid "Establishment code"
-msgstr ""
+msgstr "시설 코드"
 
 #: admin/supannStructures/class_etablissement.inc:93
 msgid "The code of this establishment (must have a prefix between {})"
diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po
index 3436ad9d7f..62eb0d8327 100644
--- a/supann/locale/lv/fusiondirectory.po
+++ b/supann/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po
index 49b90da4a7..d4b2926003 100644
--- a/supann/locale/nb/fusiondirectory.po
+++ b/supann/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po
index 8ba0c74596..7076a3e2b4 100644
--- a/supann/locale/nl/fusiondirectory.po
+++ b/supann/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po
index 718279a7ad..06cd8241a0 100644
--- a/supann/locale/pl/fusiondirectory.po
+++ b/supann/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po
index 4f401e31b1..e18aa0aee6 100644
--- a/supann/locale/pt/fusiondirectory.po
+++ b/supann/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po
index 7e25cbbd91..85c25df2ca 100644
--- a/supann/locale/pt_BR/fusiondirectory.po
+++ b/supann/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po
index 57efa29d91..724068e5e7 100644
--- a/supann/locale/ru/fusiondirectory.po
+++ b/supann/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po
index 40e400a04b..25968ed515 100644
--- a/supann/locale/ru@petr1708/fusiondirectory.po
+++ b/supann/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po
index af2da40cd9..4ce22ff65b 100644
--- a/supann/locale/sv/fusiondirectory.po
+++ b/supann/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/supann/locale/tr_TR/fusiondirectory.po b/supann/locale/tr_TR/fusiondirectory.po
index 0bbd259532..24bd107181 100644
--- a/supann/locale/tr_TR/fusiondirectory.po
+++ b/supann/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po
index 398f9344fe..3808eb9f01 100644
--- a/supann/locale/ug/fusiondirectory.po
+++ b/supann/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po
index a5b23f3172..748af12bb9 100644
--- a/supann/locale/vi_VN/fusiondirectory.po
+++ b/supann/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po
index f4a587b6a6..ee121b0258 100644
--- a/supann/locale/zh/fusiondirectory.po
+++ b/supann/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/supann/locale/zh_TW/fusiondirectory.po b/supann/locale/zh_TW/fusiondirectory.po
index d74ca6aa3d..8c93ebfaae 100644
--- a/supann/locale/zh_TW/fusiondirectory.po
+++ b/supann/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/af_ZA/fusiondirectory.po b/sympa/locale/af_ZA/fusiondirectory.po
index 08ce26c57e..b1ac671b5a 100644
--- a/sympa/locale/af_ZA/fusiondirectory.po
+++ b/sympa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po
index f20ff4dd9b..68f2bfe1c4 100644
--- a/sympa/locale/ar/fusiondirectory.po
+++ b/sympa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po
index c539b0aadf..21c092dd9d 100644
--- a/sympa/locale/ca/fusiondirectory.po
+++ b/sympa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po
index fe8a6c2b49..6993c8d8af 100644
--- a/sympa/locale/cs_CZ/fusiondirectory.po
+++ b/sympa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po
index 376fa63de3..ee7e388b58 100644
--- a/sympa/locale/de/fusiondirectory.po
+++ b/sympa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po
index fcd8bfde78..6abb0a1bb3 100644
--- a/sympa/locale/el_GR/fusiondirectory.po
+++ b/sympa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po
index 577baf3a6d..679ef7d572 100644
--- a/sympa/locale/es/fusiondirectory.po
+++ b/sympa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po
index b4516a9a9f..5d0c7749be 100644
--- a/sympa/locale/es_CO/fusiondirectory.po
+++ b/sympa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po
index 7cdafac15f..a1a91ffefa 100644
--- a/sympa/locale/es_VE/fusiondirectory.po
+++ b/sympa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po
index b9ff2f07a4..1f8b8ca3fb 100644
--- a/sympa/locale/fa_IR/fusiondirectory.po
+++ b/sympa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po
index c67e87a0bd..385a3ca183 100644
--- a/sympa/locale/fi_FI/fusiondirectory.po
+++ b/sympa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po
index 64233bbdcf..ece33500a3 100644
--- a/sympa/locale/fr/fusiondirectory.po
+++ b/sympa/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po
index 757d45cdef..c89de944fe 100644
--- a/sympa/locale/hu_HU/fusiondirectory.po
+++ b/sympa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po
index 4b1b33d938..6b95a87555 100644
--- a/sympa/locale/id/fusiondirectory.po
+++ b/sympa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po
index a83e8397ee..88a9321a18 100644
--- a/sympa/locale/it_IT/fusiondirectory.po
+++ b/sympa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sympa/locale/ja/fusiondirectory.po b/sympa/locale/ja/fusiondirectory.po
index c853e112d6..608e7ca161 100644
--- a/sympa/locale/ja/fusiondirectory.po
+++ b/sympa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ko/fusiondirectory.po b/sympa/locale/ko/fusiondirectory.po
index c0f7955703..b916a295f1 100644
--- a/sympa/locale/ko/fusiondirectory.po
+++ b/sympa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po
index 2b725e40bf..ca23d16e58 100644
--- a/sympa/locale/lv/fusiondirectory.po
+++ b/sympa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po
index ce3863baf3..7183576595 100644
--- a/sympa/locale/nb/fusiondirectory.po
+++ b/sympa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po
index 9570ad6c45..d8c26d517a 100644
--- a/sympa/locale/nl/fusiondirectory.po
+++ b/sympa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po
index 556f5f9c12..50c9740333 100644
--- a/sympa/locale/pl/fusiondirectory.po
+++ b/sympa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po
index 204e500ac3..b0d82f8877 100644
--- a/sympa/locale/pt/fusiondirectory.po
+++ b/sympa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po
index e249f9d2eb..25d341920a 100644
--- a/sympa/locale/pt_BR/fusiondirectory.po
+++ b/sympa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po
index 0939dfa6e7..09132b927c 100644
--- a/sympa/locale/ru/fusiondirectory.po
+++ b/sympa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po
index 97b74cb9d3..732f2d89fb 100644
--- a/sympa/locale/ru@petr1708/fusiondirectory.po
+++ b/sympa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po
index 9f3c5401ed..b28b3423ef 100644
--- a/sympa/locale/sv/fusiondirectory.po
+++ b/sympa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sympa/locale/tr_TR/fusiondirectory.po b/sympa/locale/tr_TR/fusiondirectory.po
index 684332a56e..6605ab28f8 100644
--- a/sympa/locale/tr_TR/fusiondirectory.po
+++ b/sympa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po
index 9373c08970..9bf407f8f7 100644
--- a/sympa/locale/ug/fusiondirectory.po
+++ b/sympa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po
index 87b94c1291..ba146f3d33 100644
--- a/sympa/locale/vi_VN/fusiondirectory.po
+++ b/sympa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po
index 72c0eef029..33b04e98a8 100644
--- a/sympa/locale/zh/fusiondirectory.po
+++ b/sympa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sympa/locale/zh_TW/fusiondirectory.po b/sympa/locale/zh_TW/fusiondirectory.po
index dd4add331c..271ee7b067 100644
--- a/sympa/locale/zh_TW/fusiondirectory.po
+++ b/sympa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/af_ZA/fusiondirectory.po b/systems/locale/af_ZA/fusiondirectory.po
index f9ca872c30..94197ca5b2 100644
--- a/systems/locale/af_ZA/fusiondirectory.po
+++ b/systems/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po
index 26764ac1e7..480e9a3ad7 100644
--- a/systems/locale/ar/fusiondirectory.po
+++ b/systems/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po
index 55a3201001..ea54abd1ef 100644
--- a/systems/locale/ca/fusiondirectory.po
+++ b/systems/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po
index b3e02224c0..5d1e36d7c6 100644
--- a/systems/locale/cs_CZ/fusiondirectory.po
+++ b/systems/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po
index bf7a74dbf2..30c484c3c4 100644
--- a/systems/locale/de/fusiondirectory.po
+++ b/systems/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po
index 68ad095334..106618bd0e 100644
--- a/systems/locale/el_GR/fusiondirectory.po
+++ b/systems/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po
index 699712f621..e0d966c543 100644
--- a/systems/locale/es/fusiondirectory.po
+++ b/systems/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po
index 1949436300..e93e7dc47a 100644
--- a/systems/locale/es_CO/fusiondirectory.po
+++ b/systems/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po
index 25754c0899..755419f56f 100644
--- a/systems/locale/es_VE/fusiondirectory.po
+++ b/systems/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po
index 599322a5fa..55b7e38cc1 100644
--- a/systems/locale/fa_IR/fusiondirectory.po
+++ b/systems/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po
index feba08835f..5c10c6e7eb 100644
--- a/systems/locale/fi_FI/fusiondirectory.po
+++ b/systems/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po
index 518fd95d82..51a1a2f5b6 100644
--- a/systems/locale/fr/fusiondirectory.po
+++ b/systems/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po
index 5ccab372b7..1833c54ac9 100644
--- a/systems/locale/hu_HU/fusiondirectory.po
+++ b/systems/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po
index 54b4101087..3ae780f481 100644
--- a/systems/locale/id/fusiondirectory.po
+++ b/systems/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 0d4ae10740..80bfd95f00 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/systems/locale/ja/fusiondirectory.po b/systems/locale/ja/fusiondirectory.po
index f2ed92b02a..bf958d601e 100644
--- a/systems/locale/ja/fusiondirectory.po
+++ b/systems/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ko/fusiondirectory.po b/systems/locale/ko/fusiondirectory.po
index 9f52a5d9c6..b0201c5626 100644
--- a/systems/locale/ko/fusiondirectory.po
+++ b/systems/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po
index 7c1a530822..f3e1121285 100644
--- a/systems/locale/lv/fusiondirectory.po
+++ b/systems/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po
index 4119f8b2f8..1382db6c51 100644
--- a/systems/locale/nb/fusiondirectory.po
+++ b/systems/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po
index af161a1a28..b00e9b6a18 100644
--- a/systems/locale/nl/fusiondirectory.po
+++ b/systems/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po
index cc0130e7a9..e0658b7c45 100644
--- a/systems/locale/pl/fusiondirectory.po
+++ b/systems/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po
index c90ef95518..ffdf0935f6 100644
--- a/systems/locale/pt/fusiondirectory.po
+++ b/systems/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po
index 2f4e36b330..bcde515185 100644
--- a/systems/locale/pt_BR/fusiondirectory.po
+++ b/systems/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po
index 6c19add262..cbb20dbafd 100644
--- a/systems/locale/ru/fusiondirectory.po
+++ b/systems/locale/ru/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po
index 693e85c875..685e210009 100644
--- a/systems/locale/ru@petr1708/fusiondirectory.po
+++ b/systems/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po
index 11b15c1a53..e63e7117ea 100644
--- a/systems/locale/sv/fusiondirectory.po
+++ b/systems/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/systems/locale/tr_TR/fusiondirectory.po b/systems/locale/tr_TR/fusiondirectory.po
index 84961c6fa8..17479d3c05 100644
--- a/systems/locale/tr_TR/fusiondirectory.po
+++ b/systems/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po
index ea1be43bdc..eb598b15d0 100644
--- a/systems/locale/ug/fusiondirectory.po
+++ b/systems/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po
index 32692bd96d..9dc5c0e662 100644
--- a/systems/locale/vi_VN/fusiondirectory.po
+++ b/systems/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po
index 34fbcf3826..0902e9b1d4 100644
--- a/systems/locale/zh/fusiondirectory.po
+++ b/systems/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/systems/locale/zh_TW/fusiondirectory.po b/systems/locale/zh_TW/fusiondirectory.po
index c06fd159bf..3b4e4fbeaa 100644
--- a/systems/locale/zh_TW/fusiondirectory.po
+++ b/systems/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/af_ZA/fusiondirectory.po b/user-reminder/locale/af_ZA/fusiondirectory.po
index 5432ab8a3c..bdb847b1a2 100644
--- a/user-reminder/locale/af_ZA/fusiondirectory.po
+++ b/user-reminder/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po
index 97561d18c2..319bb7ee98 100644
--- a/user-reminder/locale/ar/fusiondirectory.po
+++ b/user-reminder/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po
index c29090a7d8..185ed1f5ea 100644
--- a/user-reminder/locale/ca/fusiondirectory.po
+++ b/user-reminder/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po
index 9250e3df97..63de6f0362 100644
--- a/user-reminder/locale/cs_CZ/fusiondirectory.po
+++ b/user-reminder/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po
index ef26fba557..cfc68aaf78 100644
--- a/user-reminder/locale/de/fusiondirectory.po
+++ b/user-reminder/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po
index e7aea5b0a6..4e4175e833 100644
--- a/user-reminder/locale/el_GR/fusiondirectory.po
+++ b/user-reminder/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po
index 65e9671d73..77e2c3792e 100644
--- a/user-reminder/locale/es/fusiondirectory.po
+++ b/user-reminder/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po
index 4716f5ea1b..324a12152f 100644
--- a/user-reminder/locale/es_CO/fusiondirectory.po
+++ b/user-reminder/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po
index 0f0ffc94a0..56df43f507 100644
--- a/user-reminder/locale/es_VE/fusiondirectory.po
+++ b/user-reminder/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po
index 8874e477bf..25c20500d1 100644
--- a/user-reminder/locale/fa_IR/fusiondirectory.po
+++ b/user-reminder/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po
index 4bcd83a958..747e24b9ce 100644
--- a/user-reminder/locale/fi_FI/fusiondirectory.po
+++ b/user-reminder/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po
index 873ef58dad..c18e05a7ba 100644
--- a/user-reminder/locale/fr/fusiondirectory.po
+++ b/user-reminder/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po
index 510ea87043..5788223fea 100644
--- a/user-reminder/locale/hu_HU/fusiondirectory.po
+++ b/user-reminder/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po
index 3e05a837bd..3990c37ec6 100644
--- a/user-reminder/locale/id/fusiondirectory.po
+++ b/user-reminder/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index 1bedcfdf8c..69f2b1cb7d 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/user-reminder/locale/ja/fusiondirectory.po b/user-reminder/locale/ja/fusiondirectory.po
index 36a571ef8e..cce24c08e9 100644
--- a/user-reminder/locale/ja/fusiondirectory.po
+++ b/user-reminder/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ko/fusiondirectory.po b/user-reminder/locale/ko/fusiondirectory.po
index 3862f69e8c..a75a3e0c9c 100644
--- a/user-reminder/locale/ko/fusiondirectory.po
+++ b/user-reminder/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po
index 23c0a81cba..f0e5dd36cc 100644
--- a/user-reminder/locale/lv/fusiondirectory.po
+++ b/user-reminder/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po
index bfecd5b3af..0440f70c5c 100644
--- a/user-reminder/locale/nb/fusiondirectory.po
+++ b/user-reminder/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po
index 961f7cd3be..e27e593b1e 100644
--- a/user-reminder/locale/nl/fusiondirectory.po
+++ b/user-reminder/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po
index 1c582f0f29..6969f0f53b 100644
--- a/user-reminder/locale/pl/fusiondirectory.po
+++ b/user-reminder/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po
index 96ee526089..8589cbaaed 100644
--- a/user-reminder/locale/pt/fusiondirectory.po
+++ b/user-reminder/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po
index c0d0b1cc18..ccc42bbd1a 100644
--- a/user-reminder/locale/pt_BR/fusiondirectory.po
+++ b/user-reminder/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po
index e7634c7811..d46c07ec39 100644
--- a/user-reminder/locale/ru/fusiondirectory.po
+++ b/user-reminder/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po
index 3d93fff5a7..af0034e8c8 100644
--- a/user-reminder/locale/ru@petr1708/fusiondirectory.po
+++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po
index 1eee86cf46..4367e88dc8 100644
--- a/user-reminder/locale/sv/fusiondirectory.po
+++ b/user-reminder/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/user-reminder/locale/tr_TR/fusiondirectory.po b/user-reminder/locale/tr_TR/fusiondirectory.po
index f9aa864371..8e71bd1f6d 100644
--- a/user-reminder/locale/tr_TR/fusiondirectory.po
+++ b/user-reminder/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po
index 83e65ae1ed..19bc8a2d65 100644
--- a/user-reminder/locale/ug/fusiondirectory.po
+++ b/user-reminder/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po
index bb467614b5..a412ac9489 100644
--- a/user-reminder/locale/vi_VN/fusiondirectory.po
+++ b/user-reminder/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po
index a31c90970c..b4c9d12d1a 100644
--- a/user-reminder/locale/zh/fusiondirectory.po
+++ b/user-reminder/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/user-reminder/locale/zh_TW/fusiondirectory.po b/user-reminder/locale/zh_TW/fusiondirectory.po
index 14cc8ff431..1f59100f61 100644
--- a/user-reminder/locale/zh_TW/fusiondirectory.po
+++ b/user-reminder/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/af_ZA/fusiondirectory.po b/weblink/locale/af_ZA/fusiondirectory.po
index 3bbda1e3f1..58ebd07b19 100644
--- a/weblink/locale/af_ZA/fusiondirectory.po
+++ b/weblink/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po
index 15e35f38bd..d591b55f88 100644
--- a/weblink/locale/ar/fusiondirectory.po
+++ b/weblink/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po
index b8ab2b0f76..9e983f38bf 100644
--- a/weblink/locale/ca/fusiondirectory.po
+++ b/weblink/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po
index bc2c6265b2..506e4ec2bd 100644
--- a/weblink/locale/cs_CZ/fusiondirectory.po
+++ b/weblink/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po
index 46edde3109..e49b26f73a 100644
--- a/weblink/locale/de/fusiondirectory.po
+++ b/weblink/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po
index 73203930c3..1ff9cccf4e 100644
--- a/weblink/locale/el_GR/fusiondirectory.po
+++ b/weblink/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po
index dd435de46c..d68a2d35a3 100644
--- a/weblink/locale/es/fusiondirectory.po
+++ b/weblink/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po
index 03819578bc..31c88f6328 100644
--- a/weblink/locale/es_CO/fusiondirectory.po
+++ b/weblink/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po
index 0a4d586da6..ff7c6ce55d 100644
--- a/weblink/locale/es_VE/fusiondirectory.po
+++ b/weblink/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po
index 34f325369b..85be0972ad 100644
--- a/weblink/locale/fa_IR/fusiondirectory.po
+++ b/weblink/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po
index e679400910..89c3bfd1a2 100644
--- a/weblink/locale/fi_FI/fusiondirectory.po
+++ b/weblink/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po
index 9fbc52372d..2366a2471f 100644
--- a/weblink/locale/fr/fusiondirectory.po
+++ b/weblink/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po
index abac7d8737..785e7aecb7 100644
--- a/weblink/locale/hu_HU/fusiondirectory.po
+++ b/weblink/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po
index 5398a77f54..664011aa08 100644
--- a/weblink/locale/id/fusiondirectory.po
+++ b/weblink/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index ff7997e7b5..23067f5e97 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/weblink/locale/ja/fusiondirectory.po b/weblink/locale/ja/fusiondirectory.po
index d070eb2438..094f72c3a1 100644
--- a/weblink/locale/ja/fusiondirectory.po
+++ b/weblink/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ko/fusiondirectory.po b/weblink/locale/ko/fusiondirectory.po
index 41d3add616..8c163c71ec 100644
--- a/weblink/locale/ko/fusiondirectory.po
+++ b/weblink/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po
index 15a46edb4e..896b21b306 100644
--- a/weblink/locale/lv/fusiondirectory.po
+++ b/weblink/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po
index a12b6c97be..ae4e45f69a 100644
--- a/weblink/locale/nb/fusiondirectory.po
+++ b/weblink/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po
index 5f9116c1e5..0609fae882 100644
--- a/weblink/locale/nl/fusiondirectory.po
+++ b/weblink/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po
index baa6400f29..7ff92b37a0 100644
--- a/weblink/locale/pl/fusiondirectory.po
+++ b/weblink/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po
index ba1baa5348..291dc05968 100644
--- a/weblink/locale/pt/fusiondirectory.po
+++ b/weblink/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po
index 1fb22476bb..75d398c811 100644
--- a/weblink/locale/pt_BR/fusiondirectory.po
+++ b/weblink/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po
index fa62b99950..74e7f25983 100644
--- a/weblink/locale/ru/fusiondirectory.po
+++ b/weblink/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po
index fe8a2b07bd..279b644123 100644
--- a/weblink/locale/ru@petr1708/fusiondirectory.po
+++ b/weblink/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po
index 570884e665..d7f143ba21 100644
--- a/weblink/locale/sv/fusiondirectory.po
+++ b/weblink/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/tr_TR/fusiondirectory.po b/weblink/locale/tr_TR/fusiondirectory.po
index 44f920e3cf..af52e5b1e2 100644
--- a/weblink/locale/tr_TR/fusiondirectory.po
+++ b/weblink/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po
index 466d5884d4..babc83cf68 100644
--- a/weblink/locale/ug/fusiondirectory.po
+++ b/weblink/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po
index f38b0ad2cc..292d1c20b3 100644
--- a/weblink/locale/vi_VN/fusiondirectory.po
+++ b/weblink/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po
index 423b3e0005..bfe78804b5 100644
--- a/weblink/locale/zh/fusiondirectory.po
+++ b/weblink/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh_TW/fusiondirectory.po b/weblink/locale/zh_TW/fusiondirectory.po
index 1814118326..3bea52931a 100644
--- a/weblink/locale/zh_TW/fusiondirectory.po
+++ b/weblink/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/af_ZA/fusiondirectory.po b/webservice/locale/af_ZA/fusiondirectory.po
index 3aee31a585..25179e94bd 100644
--- a/webservice/locale/af_ZA/fusiondirectory.po
+++ b/webservice/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po
index a3c8bdb122..26eb557730 100644
--- a/webservice/locale/ar/fusiondirectory.po
+++ b/webservice/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po
index 80a7f8b9f6..66e07ecd0a 100644
--- a/webservice/locale/ca/fusiondirectory.po
+++ b/webservice/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po
index 38113d4e34..6790e0cba2 100644
--- a/webservice/locale/cs_CZ/fusiondirectory.po
+++ b/webservice/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po
index 8196a0048b..9c52c6d229 100644
--- a/webservice/locale/de/fusiondirectory.po
+++ b/webservice/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po
index f097511489..c9aa3b25bb 100644
--- a/webservice/locale/el_GR/fusiondirectory.po
+++ b/webservice/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po
index e86d04be80..803c73e4f1 100644
--- a/webservice/locale/es/fusiondirectory.po
+++ b/webservice/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po
index 6946c1350c..1ab1a9042e 100644
--- a/webservice/locale/es_CO/fusiondirectory.po
+++ b/webservice/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po
index 69d8edf7a3..aa2e8be863 100644
--- a/webservice/locale/es_VE/fusiondirectory.po
+++ b/webservice/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po
index 8e6971562a..eb41634a9d 100644
--- a/webservice/locale/fa_IR/fusiondirectory.po
+++ b/webservice/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po
index 1b1bf7e9c6..9e585a2c4f 100644
--- a/webservice/locale/fi_FI/fusiondirectory.po
+++ b/webservice/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po
index 5b806af855..7736647225 100644
--- a/webservice/locale/fr/fusiondirectory.po
+++ b/webservice/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po
index beeb5d6a5e..c2f1f4e28f 100644
--- a/webservice/locale/hu_HU/fusiondirectory.po
+++ b/webservice/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po
index bf85d1d7cf..8f30b3ee73 100644
--- a/webservice/locale/id/fusiondirectory.po
+++ b/webservice/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index 982fcc5ca3..147967d36f 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/webservice/locale/ja/fusiondirectory.po b/webservice/locale/ja/fusiondirectory.po
index fa4a813f16..bf8388db91 100644
--- a/webservice/locale/ja/fusiondirectory.po
+++ b/webservice/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ko/fusiondirectory.po b/webservice/locale/ko/fusiondirectory.po
index 0e9c6d742d..98c0d8ccb4 100644
--- a/webservice/locale/ko/fusiondirectory.po
+++ b/webservice/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po
index f8ff641431..135447e100 100644
--- a/webservice/locale/lv/fusiondirectory.po
+++ b/webservice/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po
index 31cd64fe89..6887f2c3e8 100644
--- a/webservice/locale/nb/fusiondirectory.po
+++ b/webservice/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po
index 1af9e87f36..86fe3042b6 100644
--- a/webservice/locale/nl/fusiondirectory.po
+++ b/webservice/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po
index c966470cde..960b8c8712 100644
--- a/webservice/locale/pl/fusiondirectory.po
+++ b/webservice/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po
index 786d30b3f7..01e5fc7977 100644
--- a/webservice/locale/pt/fusiondirectory.po
+++ b/webservice/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po
index 92c4785acb..56e734cb75 100644
--- a/webservice/locale/pt_BR/fusiondirectory.po
+++ b/webservice/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po
index c72cb5251e..118a1f84fe 100644
--- a/webservice/locale/ru/fusiondirectory.po
+++ b/webservice/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po
index 0c62aa8b47..76e6177905 100644
--- a/webservice/locale/ru@petr1708/fusiondirectory.po
+++ b/webservice/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po
index 75c732c639..ca5c3426b3 100644
--- a/webservice/locale/sv/fusiondirectory.po
+++ b/webservice/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/webservice/locale/tr_TR/fusiondirectory.po b/webservice/locale/tr_TR/fusiondirectory.po
index b09a5ffa7e..18bc23f53e 100644
--- a/webservice/locale/tr_TR/fusiondirectory.po
+++ b/webservice/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po
index 413eddc73d..09aad9dc00 100644
--- a/webservice/locale/ug/fusiondirectory.po
+++ b/webservice/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po
index ffba75efae..25edaf6af6 100644
--- a/webservice/locale/vi_VN/fusiondirectory.po
+++ b/webservice/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po
index 1b0d18ed4b..f4ca3b8686 100644
--- a/webservice/locale/zh/fusiondirectory.po
+++ b/webservice/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/zh_TW/fusiondirectory.po b/webservice/locale/zh_TW/fusiondirectory.po
index 74ff5bbe3c..3c61379d35 100644
--- a/webservice/locale/zh_TW/fusiondirectory.po
+++ b/webservice/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-10-01 16:19+0000\n"
+"POT-Creation-Date: 2019-11-13 11:01+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
-- 
GitLab


From f12745c503f2fe196740e1228950c10739132390 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Tue, 3 Mar 2020 10:26:58 +0000
Subject: [PATCH 24/73] Merge branch
 '6033-supanncodeentite-should-allow-slashes' into '1.4-dev'

Resolve "supannCodeEntite should allow slashes"

See merge request fusiondirectory/fd-plugins!679

(cherry picked from commit 353b60a6d6ff448375fe673fbf7b6e992f061afc)

18dee540 :sparkles: feat(supann) Allow slashes in supannCodeEntite
---
 supann/admin/supannStructures/class_entite.inc        | 2 +-
 supann/admin/supannStructures/class_etablissement.inc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/supann/admin/supannStructures/class_entite.inc b/supann/admin/supannStructures/class_entite.inc
index 38d061df97..af14f346f7 100644
--- a/supann/admin/supannStructures/class_entite.inc
+++ b/supann/admin/supannStructures/class_entite.inc
@@ -88,7 +88,7 @@ class entite extends simplePlugin
           new StringAttribute(
             _('Entity code'), _('The SupAnn code of this entity'),
             'supannCodeEntite', TRUE,
-            '', '', '/^[a-z0-9_-]*$/i'
+            '', '', '|^[a-zA-Z0-9_/-]*$|'
           ),
           new SetAttribute(
             new SelectAttribute(
diff --git a/supann/admin/supannStructures/class_etablissement.inc b/supann/admin/supannStructures/class_etablissement.inc
index 7fc3226c94..3ce4e3ec6e 100644
--- a/supann/admin/supannStructures/class_etablissement.inc
+++ b/supann/admin/supannStructures/class_etablissement.inc
@@ -101,7 +101,7 @@ class etablissement extends simplePlugin
           new StringAttribute(
             _('SupAnn code'), _('The SupAnn code for this establishment'),
             'supannCodeEntite', TRUE,
-            '', '', '/^[a-z0-9_-]*$/i'
+            '', '', '|^[a-zA-Z0-9_/-]*$|'
           ),
           new SetAttribute(
             new SelectAttribute(
-- 
GitLab


From bb91124dc86707cb0ddee9f1cc21098ec6ea780b Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@opensides.be>
Date: Fri, 20 Mar 2020 18:01:03 +0100
Subject: [PATCH 25/73] :handshake: fix(locales) updating locales for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@opensides.be>
---
 alias/locale/af_ZA/fusiondirectory.po         |   2 +-
 alias/locale/ar/fusiondirectory.po            |   2 +-
 alias/locale/ca/fusiondirectory.po            |   2 +-
 alias/locale/cs_CZ/fusiondirectory.po         |   2 +-
 alias/locale/de/fusiondirectory.po            |   2 +-
 alias/locale/el_GR/fusiondirectory.po         |   2 +-
 alias/locale/en/fusiondirectory.po            | 100 +-
 alias/locale/es/fusiondirectory.po            |   2 +-
 alias/locale/es_CO/fusiondirectory.po         |   2 +-
 alias/locale/es_VE/fusiondirectory.po         |   2 +-
 alias/locale/fa_IR/fusiondirectory.po         |   2 +-
 alias/locale/fi_FI/fusiondirectory.po         |   2 +-
 alias/locale/fr/fusiondirectory.po            |   2 +-
 alias/locale/hu_HU/fusiondirectory.po         |   2 +-
 alias/locale/id/fusiondirectory.po            |   2 +-
 alias/locale/it_IT/fusiondirectory.po         |   2 +-
 alias/locale/ja/fusiondirectory.po            |   2 +-
 alias/locale/ko/fusiondirectory.po            |   2 +-
 alias/locale/lv/fusiondirectory.po            |   2 +-
 alias/locale/nb/fusiondirectory.po            |   2 +-
 alias/locale/nl/fusiondirectory.po            |   2 +-
 alias/locale/pl/fusiondirectory.po            |   2 +-
 alias/locale/pt/fusiondirectory.po            |   2 +-
 alias/locale/pt_BR/fusiondirectory.po         |   2 +-
 alias/locale/ru/fusiondirectory.po            |   2 +-
 alias/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 alias/locale/sv/fusiondirectory.po            |   2 +-
 alias/locale/tr_TR/fusiondirectory.po         |   2 +-
 alias/locale/ug/fusiondirectory.po            |   2 +-
 alias/locale/vi_VN/fusiondirectory.po         |   2 +-
 alias/locale/zh/fusiondirectory.po            |   2 +-
 alias/locale/zh_TW/fusiondirectory.po         |   2 +-
 applications/locale/af_ZA/fusiondirectory.po  |   2 +-
 applications/locale/ar/fusiondirectory.po     |   2 +-
 applications/locale/ca/fusiondirectory.po     |   2 +-
 applications/locale/cs_CZ/fusiondirectory.po  |   2 +-
 applications/locale/de/fusiondirectory.po     |   2 +-
 applications/locale/el_GR/fusiondirectory.po  |   2 +-
 applications/locale/en/fusiondirectory.po     |   4 +-
 applications/locale/es/fusiondirectory.po     |   2 +-
 applications/locale/es_CO/fusiondirectory.po  |   2 +-
 applications/locale/es_VE/fusiondirectory.po  |   2 +-
 applications/locale/fa_IR/fusiondirectory.po  |   2 +-
 applications/locale/fi_FI/fusiondirectory.po  |   2 +-
 applications/locale/fr/fusiondirectory.po     |   2 +-
 applications/locale/hu_HU/fusiondirectory.po  |   2 +-
 applications/locale/id/fusiondirectory.po     |   2 +-
 applications/locale/it_IT/fusiondirectory.po  |   2 +-
 applications/locale/ja/fusiondirectory.po     |   2 +-
 applications/locale/ko/fusiondirectory.po     |   2 +-
 applications/locale/lv/fusiondirectory.po     |   2 +-
 applications/locale/nb/fusiondirectory.po     |   2 +-
 applications/locale/nl/fusiondirectory.po     |   2 +-
 applications/locale/pl/fusiondirectory.po     |   2 +-
 applications/locale/pt/fusiondirectory.po     |   2 +-
 applications/locale/pt_BR/fusiondirectory.po  |   2 +-
 applications/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 applications/locale/sv/fusiondirectory.po     |   2 +-
 applications/locale/tr_TR/fusiondirectory.po  |   2 +-
 applications/locale/ug/fusiondirectory.po     |   2 +-
 applications/locale/vi_VN/fusiondirectory.po  |   2 +-
 applications/locale/zh/fusiondirectory.po     |   2 +-
 applications/locale/zh_TW/fusiondirectory.po  |   2 +-
 argonaut/locale/af_ZA/fusiondirectory.po      |   2 +-
 argonaut/locale/ar/fusiondirectory.po         |   2 +-
 argonaut/locale/ca/fusiondirectory.po         |   2 +-
 argonaut/locale/cs_CZ/fusiondirectory.po      |   2 +-
 argonaut/locale/de/fusiondirectory.po         |   2 +-
 argonaut/locale/el_GR/fusiondirectory.po      |   2 +-
 argonaut/locale/en/fusiondirectory.po         | 815 +++++++++-------
 argonaut/locale/es/fusiondirectory.po         |   2 +-
 argonaut/locale/es_CO/fusiondirectory.po      |   2 +-
 argonaut/locale/es_VE/fusiondirectory.po      |   2 +-
 argonaut/locale/fa_IR/fusiondirectory.po      |   2 +-
 argonaut/locale/fi_FI/fusiondirectory.po      |   2 +-
 argonaut/locale/fr/fusiondirectory.po         |   2 +-
 argonaut/locale/hu_HU/fusiondirectory.po      |   2 +-
 argonaut/locale/id/fusiondirectory.po         |   2 +-
 argonaut/locale/it_IT/fusiondirectory.po      |   2 +-
 argonaut/locale/ja/fusiondirectory.po         |   2 +-
 argonaut/locale/ko/fusiondirectory.po         |   2 +-
 argonaut/locale/lv/fusiondirectory.po         |   2 +-
 argonaut/locale/nb/fusiondirectory.po         |   2 +-
 argonaut/locale/nl/fusiondirectory.po         |   2 +-
 argonaut/locale/pl/fusiondirectory.po         |   2 +-
 argonaut/locale/pt/fusiondirectory.po         |   2 +-
 argonaut/locale/pt_BR/fusiondirectory.po      |   2 +-
 argonaut/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 argonaut/locale/sv/fusiondirectory.po         |   2 +-
 argonaut/locale/tr_TR/fusiondirectory.po      |   2 +-
 argonaut/locale/ug/fusiondirectory.po         |   2 +-
 argonaut/locale/vi_VN/fusiondirectory.po      |   2 +-
 argonaut/locale/zh/fusiondirectory.po         |   2 +-
 argonaut/locale/zh_TW/fusiondirectory.po      |   2 +-
 audit/locale/af_ZA/fusiondirectory.po         |   2 +-
 audit/locale/ar/fusiondirectory.po            |   2 +-
 audit/locale/ca/fusiondirectory.po            |   2 +-
 audit/locale/cs_CZ/fusiondirectory.po         |   2 +-
 audit/locale/de/fusiondirectory.po            |   2 +-
 audit/locale/el_GR/fusiondirectory.po         |   2 +-
 audit/locale/en/fusiondirectory.po            |  67 +-
 audit/locale/es/fusiondirectory.po            |   2 +-
 audit/locale/es_CO/fusiondirectory.po         |   2 +-
 audit/locale/es_VE/fusiondirectory.po         |   2 +-
 audit/locale/fa_IR/fusiondirectory.po         |   2 +-
 audit/locale/fi_FI/fusiondirectory.po         |   2 +-
 audit/locale/fr/fusiondirectory.po            |   2 +-
 audit/locale/hu_HU/fusiondirectory.po         |   2 +-
 audit/locale/id/fusiondirectory.po            |   2 +-
 audit/locale/it_IT/fusiondirectory.po         |   2 +-
 audit/locale/ja/fusiondirectory.po            |   2 +-
 audit/locale/ko/fusiondirectory.po            |   2 +-
 audit/locale/lv/fusiondirectory.po            |   2 +-
 audit/locale/nb/fusiondirectory.po            |   2 +-
 audit/locale/nl/fusiondirectory.po            |   2 +-
 audit/locale/pl/fusiondirectory.po            |   2 +-
 audit/locale/pt/fusiondirectory.po            |   2 +-
 audit/locale/pt_BR/fusiondirectory.po         |   2 +-
 audit/locale/ru/fusiondirectory.po            |   2 +-
 audit/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 audit/locale/sv/fusiondirectory.po            |   2 +-
 audit/locale/tr_TR/fusiondirectory.po         |   2 +-
 audit/locale/ug/fusiondirectory.po            |   2 +-
 audit/locale/vi_VN/fusiondirectory.po         |   2 +-
 audit/locale/zh/fusiondirectory.po            |   2 +-
 audit/locale/zh_TW/fusiondirectory.po         |   2 +-
 autofs/locale/af_ZA/fusiondirectory.po        |   2 +-
 autofs/locale/ar/fusiondirectory.po           |   2 +-
 autofs/locale/ca/fusiondirectory.po           |   2 +-
 autofs/locale/cs_CZ/fusiondirectory.po        |   2 +-
 autofs/locale/de/fusiondirectory.po           |   2 +-
 autofs/locale/el_GR/fusiondirectory.po        |   2 +-
 autofs/locale/en/fusiondirectory.po           |  54 +-
 autofs/locale/es/fusiondirectory.po           |   2 +-
 autofs/locale/es_CO/fusiondirectory.po        |   2 +-
 autofs/locale/es_VE/fusiondirectory.po        |   2 +-
 autofs/locale/fa_IR/fusiondirectory.po        |   2 +-
 autofs/locale/fi_FI/fusiondirectory.po        |   2 +-
 autofs/locale/fr/fusiondirectory.po           |   2 +-
 autofs/locale/hu_HU/fusiondirectory.po        |   2 +-
 autofs/locale/id/fusiondirectory.po           |   2 +-
 autofs/locale/it_IT/fusiondirectory.po        |   2 +-
 autofs/locale/ja/fusiondirectory.po           |   2 +-
 autofs/locale/ko/fusiondirectory.po           |   2 +-
 autofs/locale/lv/fusiondirectory.po           |   2 +-
 autofs/locale/nb/fusiondirectory.po           |   2 +-
 autofs/locale/nl/fusiondirectory.po           |   2 +-
 autofs/locale/pl/fusiondirectory.po           |   2 +-
 autofs/locale/pt/fusiondirectory.po           |   2 +-
 autofs/locale/pt_BR/fusiondirectory.po        |   2 +-
 autofs/locale/ru/fusiondirectory.po           |   2 +-
 autofs/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 autofs/locale/sv/fusiondirectory.po           |   2 +-
 autofs/locale/tr_TR/fusiondirectory.po        |   2 +-
 autofs/locale/ug/fusiondirectory.po           |   2 +-
 autofs/locale/vi_VN/fusiondirectory.po        |   2 +-
 autofs/locale/zh/fusiondirectory.po           |   2 +-
 autofs/locale/zh_TW/fusiondirectory.po        |   2 +-
 certificates/locale/af_ZA/fusiondirectory.po  |   2 +-
 certificates/locale/ar/fusiondirectory.po     |   2 +-
 certificates/locale/ca/fusiondirectory.po     |   2 +-
 certificates/locale/cs_CZ/fusiondirectory.po  |   2 +-
 certificates/locale/de/fusiondirectory.po     |   2 +-
 certificates/locale/el_GR/fusiondirectory.po  |   2 +-
 certificates/locale/en/fusiondirectory.po     |   4 +-
 certificates/locale/es/fusiondirectory.po     |   2 +-
 certificates/locale/es_CO/fusiondirectory.po  |   2 +-
 certificates/locale/es_VE/fusiondirectory.po  |   2 +-
 certificates/locale/fa_IR/fusiondirectory.po  |   2 +-
 certificates/locale/fi_FI/fusiondirectory.po  |   2 +-
 certificates/locale/fr/fusiondirectory.po     |   2 +-
 certificates/locale/hu_HU/fusiondirectory.po  |   2 +-
 certificates/locale/id/fusiondirectory.po     |   2 +-
 certificates/locale/it_IT/fusiondirectory.po  |   2 +-
 certificates/locale/ja/fusiondirectory.po     |   2 +-
 certificates/locale/ko/fusiondirectory.po     |   2 +-
 certificates/locale/lv/fusiondirectory.po     |   2 +-
 certificates/locale/nb/fusiondirectory.po     |   2 +-
 certificates/locale/nl/fusiondirectory.po     |   2 +-
 certificates/locale/pl/fusiondirectory.po     |   2 +-
 certificates/locale/pt/fusiondirectory.po     |   2 +-
 certificates/locale/pt_BR/fusiondirectory.po  |   2 +-
 certificates/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 certificates/locale/sv/fusiondirectory.po     |   2 +-
 certificates/locale/tr_TR/fusiondirectory.po  |   2 +-
 certificates/locale/ug/fusiondirectory.po     |   2 +-
 certificates/locale/vi_VN/fusiondirectory.po  |   2 +-
 certificates/locale/zh/fusiondirectory.po     |   2 +-
 certificates/locale/zh_TW/fusiondirectory.po  |   2 +-
 community/locale/af_ZA/fusiondirectory.po     |   2 +-
 community/locale/ar/fusiondirectory.po        |   2 +-
 community/locale/ca/fusiondirectory.po        |   2 +-
 community/locale/cs_CZ/fusiondirectory.po     |   2 +-
 community/locale/de/fusiondirectory.po        |   2 +-
 community/locale/el_GR/fusiondirectory.po     |   2 +-
 community/locale/en/fusiondirectory.po        |  44 +-
 community/locale/es/fusiondirectory.po        |   2 +-
 community/locale/es_CO/fusiondirectory.po     |   2 +-
 community/locale/es_VE/fusiondirectory.po     |   2 +-
 community/locale/fa_IR/fusiondirectory.po     |   2 +-
 community/locale/fi_FI/fusiondirectory.po     |   2 +-
 community/locale/fr/fusiondirectory.po        |   2 +-
 community/locale/hu_HU/fusiondirectory.po     |   2 +-
 community/locale/id/fusiondirectory.po        |   2 +-
 community/locale/it_IT/fusiondirectory.po     |   2 +-
 community/locale/ja/fusiondirectory.po        |   2 +-
 community/locale/ko/fusiondirectory.po        |   2 +-
 community/locale/lv/fusiondirectory.po        |   2 +-
 community/locale/nb/fusiondirectory.po        |   2 +-
 community/locale/nl/fusiondirectory.po        |   2 +-
 community/locale/pl/fusiondirectory.po        |   2 +-
 community/locale/pt/fusiondirectory.po        |   2 +-
 community/locale/pt_BR/fusiondirectory.po     |   2 +-
 community/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 community/locale/sv/fusiondirectory.po        |   2 +-
 community/locale/tr_TR/fusiondirectory.po     |   2 +-
 community/locale/ug/fusiondirectory.po        |   2 +-
 community/locale/vi_VN/fusiondirectory.po     |   2 +-
 community/locale/zh/fusiondirectory.po        |   2 +-
 community/locale/zh_TW/fusiondirectory.po     |   2 +-
 cyrus/locale/af_ZA/fusiondirectory.po         |   2 +-
 cyrus/locale/ar/fusiondirectory.po            |   2 +-
 cyrus/locale/ca/fusiondirectory.po            |   2 +-
 cyrus/locale/cs_CZ/fusiondirectory.po         |   2 +-
 cyrus/locale/de/fusiondirectory.po            |   2 +-
 cyrus/locale/el_GR/fusiondirectory.po         |   2 +-
 cyrus/locale/en/fusiondirectory.po            | 100 +-
 cyrus/locale/es/fusiondirectory.po            |   2 +-
 cyrus/locale/es_CO/fusiondirectory.po         |   2 +-
 cyrus/locale/es_VE/fusiondirectory.po         |   2 +-
 cyrus/locale/fa_IR/fusiondirectory.po         |   2 +-
 cyrus/locale/fi_FI/fusiondirectory.po         |   2 +-
 cyrus/locale/fr/fusiondirectory.po            |   2 +-
 cyrus/locale/hu_HU/fusiondirectory.po         |   2 +-
 cyrus/locale/id/fusiondirectory.po            |   2 +-
 cyrus/locale/it_IT/fusiondirectory.po         |   2 +-
 cyrus/locale/ja/fusiondirectory.po            |   2 +-
 cyrus/locale/ko/fusiondirectory.po            |   2 +-
 cyrus/locale/lv/fusiondirectory.po            |   2 +-
 cyrus/locale/nb/fusiondirectory.po            |   2 +-
 cyrus/locale/nl/fusiondirectory.po            |   2 +-
 cyrus/locale/pl/fusiondirectory.po            |   2 +-
 cyrus/locale/pt/fusiondirectory.po            |   2 +-
 cyrus/locale/pt_BR/fusiondirectory.po         |   2 +-
 cyrus/locale/ru/fusiondirectory.po            |   2 +-
 cyrus/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 cyrus/locale/sv/fusiondirectory.po            |   2 +-
 cyrus/locale/tr_TR/fusiondirectory.po         |   2 +-
 cyrus/locale/ug/fusiondirectory.po            |   2 +-
 cyrus/locale/vi_VN/fusiondirectory.po         |   2 +-
 cyrus/locale/zh/fusiondirectory.po            |   2 +-
 cyrus/locale/zh_TW/fusiondirectory.po         |   2 +-
 debconf/locale/af_ZA/fusiondirectory.po       |   2 +-
 debconf/locale/ar/fusiondirectory.po          |   2 +-
 debconf/locale/ca/fusiondirectory.po          |   2 +-
 debconf/locale/cs_CZ/fusiondirectory.po       |   2 +-
 debconf/locale/de/fusiondirectory.po          |   2 +-
 debconf/locale/el_GR/fusiondirectory.po       |   2 +-
 debconf/locale/en/fusiondirectory.po          |  96 +-
 debconf/locale/es/fusiondirectory.po          |   2 +-
 debconf/locale/es_CO/fusiondirectory.po       |   2 +-
 debconf/locale/es_VE/fusiondirectory.po       |   2 +-
 debconf/locale/fa_IR/fusiondirectory.po       |   2 +-
 debconf/locale/fi_FI/fusiondirectory.po       |   2 +-
 debconf/locale/fr/fusiondirectory.po          |   2 +-
 debconf/locale/hu_HU/fusiondirectory.po       |   2 +-
 debconf/locale/id/fusiondirectory.po          |   2 +-
 debconf/locale/it_IT/fusiondirectory.po       |   2 +-
 debconf/locale/ja/fusiondirectory.po          |   2 +-
 debconf/locale/ko/fusiondirectory.po          |   2 +-
 debconf/locale/lv/fusiondirectory.po          |   2 +-
 debconf/locale/nb/fusiondirectory.po          |   2 +-
 debconf/locale/nl/fusiondirectory.po          |   2 +-
 debconf/locale/pl/fusiondirectory.po          |   2 +-
 debconf/locale/pt/fusiondirectory.po          |   2 +-
 debconf/locale/pt_BR/fusiondirectory.po       |   2 +-
 debconf/locale/ru/fusiondirectory.po          |   2 +-
 debconf/locale/ru@petr1708/fusiondirectory.po |   2 +-
 debconf/locale/sv/fusiondirectory.po          |   2 +-
 debconf/locale/tr_TR/fusiondirectory.po       |   2 +-
 debconf/locale/ug/fusiondirectory.po          |   2 +-
 debconf/locale/vi_VN/fusiondirectory.po       |   2 +-
 debconf/locale/zh/fusiondirectory.po          |   2 +-
 debconf/locale/zh_TW/fusiondirectory.po       |   2 +-
 developers/locale/af_ZA/fusiondirectory.po    |   2 +-
 developers/locale/ar/fusiondirectory.po       |   2 +-
 developers/locale/ca/fusiondirectory.po       |   2 +-
 developers/locale/cs_CZ/fusiondirectory.po    |   2 +-
 developers/locale/de/fusiondirectory.po       |   2 +-
 developers/locale/el_GR/fusiondirectory.po    |   2 +-
 developers/locale/en/fusiondirectory.po       |  20 +-
 developers/locale/es/fusiondirectory.po       |   2 +-
 developers/locale/es_CO/fusiondirectory.po    |   2 +-
 developers/locale/es_VE/fusiondirectory.po    |   2 +-
 developers/locale/fa_IR/fusiondirectory.po    |   2 +-
 developers/locale/fi_FI/fusiondirectory.po    |   2 +-
 developers/locale/fr/fusiondirectory.po       |   2 +-
 developers/locale/hu_HU/fusiondirectory.po    |   2 +-
 developers/locale/id/fusiondirectory.po       |   2 +-
 developers/locale/it_IT/fusiondirectory.po    |   2 +-
 developers/locale/ja/fusiondirectory.po       |   2 +-
 developers/locale/ko/fusiondirectory.po       |   2 +-
 developers/locale/lv/fusiondirectory.po       |   2 +-
 developers/locale/nb/fusiondirectory.po       |   2 +-
 developers/locale/nl/fusiondirectory.po       |   2 +-
 developers/locale/pl/fusiondirectory.po       |   2 +-
 developers/locale/pt/fusiondirectory.po       |   2 +-
 developers/locale/pt_BR/fusiondirectory.po    |   2 +-
 developers/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 developers/locale/sv/fusiondirectory.po       |   2 +-
 developers/locale/tr_TR/fusiondirectory.po    |   2 +-
 developers/locale/ug/fusiondirectory.po       |   2 +-
 developers/locale/vi_VN/fusiondirectory.po    |   2 +-
 developers/locale/zh/fusiondirectory.po       |   2 +-
 developers/locale/zh_TW/fusiondirectory.po    |   2 +-
 dhcp/locale/af_ZA/fusiondirectory.po          |   2 +-
 dhcp/locale/ar/fusiondirectory.po             |   2 +-
 dhcp/locale/ca/fusiondirectory.po             |   2 +-
 dhcp/locale/cs_CZ/fusiondirectory.po          |   2 +-
 dhcp/locale/de/fusiondirectory.po             |   2 +-
 dhcp/locale/el_GR/fusiondirectory.po          |   2 +-
 dhcp/locale/en/fusiondirectory.po             | 472 +++++----
 dhcp/locale/es/fusiondirectory.po             |   2 +-
 dhcp/locale/es_CO/fusiondirectory.po          |   2 +-
 dhcp/locale/es_VE/fusiondirectory.po          |   2 +-
 dhcp/locale/fa_IR/fusiondirectory.po          |   2 +-
 dhcp/locale/fi_FI/fusiondirectory.po          |   2 +-
 dhcp/locale/fr/fusiondirectory.po             |   2 +-
 dhcp/locale/hu_HU/fusiondirectory.po          |   2 +-
 dhcp/locale/id/fusiondirectory.po             |   2 +-
 dhcp/locale/it_IT/fusiondirectory.po          |   2 +-
 dhcp/locale/ja/fusiondirectory.po             |   2 +-
 dhcp/locale/ko/fusiondirectory.po             |   2 +-
 dhcp/locale/lv/fusiondirectory.po             |   2 +-
 dhcp/locale/nb/fusiondirectory.po             |   2 +-
 dhcp/locale/nl/fusiondirectory.po             |   2 +-
 dhcp/locale/pl/fusiondirectory.po             |   2 +-
 dhcp/locale/pt/fusiondirectory.po             |   2 +-
 dhcp/locale/pt_BR/fusiondirectory.po          |   2 +-
 dhcp/locale/ru/fusiondirectory.po             |   2 +-
 dhcp/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 dhcp/locale/sv/fusiondirectory.po             |   2 +-
 dhcp/locale/tr_TR/fusiondirectory.po          |   2 +-
 dhcp/locale/ug/fusiondirectory.po             |   2 +-
 dhcp/locale/vi_VN/fusiondirectory.po          |   2 +-
 dhcp/locale/zh/fusiondirectory.po             |   2 +-
 dhcp/locale/zh_TW/fusiondirectory.po          |   2 +-
 dns/locale/af_ZA/fusiondirectory.po           |   2 +-
 dns/locale/ar/fusiondirectory.po              |   2 +-
 dns/locale/ca/fusiondirectory.po              |   2 +-
 dns/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dns/locale/de/fusiondirectory.po              |   2 +-
 dns/locale/el_GR/fusiondirectory.po           |   2 +-
 dns/locale/en/fusiondirectory.po              | 424 ++++----
 dns/locale/es/fusiondirectory.po              |   2 +-
 dns/locale/es_CO/fusiondirectory.po           |   2 +-
 dns/locale/es_VE/fusiondirectory.po           |   2 +-
 dns/locale/fa_IR/fusiondirectory.po           |   2 +-
 dns/locale/fi_FI/fusiondirectory.po           |   2 +-
 dns/locale/fr/fusiondirectory.po              |   2 +-
 dns/locale/hu_HU/fusiondirectory.po           |   2 +-
 dns/locale/id/fusiondirectory.po              |   2 +-
 dns/locale/it_IT/fusiondirectory.po           |   2 +-
 dns/locale/ja/fusiondirectory.po              |   2 +-
 dns/locale/ko/fusiondirectory.po              |   8 +-
 dns/locale/lv/fusiondirectory.po              |   2 +-
 dns/locale/nb/fusiondirectory.po              |   2 +-
 dns/locale/nl/fusiondirectory.po              |   2 +-
 dns/locale/pl/fusiondirectory.po              |   2 +-
 dns/locale/pt/fusiondirectory.po              |   2 +-
 dns/locale/pt_BR/fusiondirectory.po           |   2 +-
 dns/locale/ru/fusiondirectory.po              |   2 +-
 dns/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dns/locale/sv/fusiondirectory.po              |   2 +-
 dns/locale/tr_TR/fusiondirectory.po           |   2 +-
 dns/locale/ug/fusiondirectory.po              |   2 +-
 dns/locale/vi_VN/fusiondirectory.po           |   2 +-
 dns/locale/zh/fusiondirectory.po              |   2 +-
 dns/locale/zh_TW/fusiondirectory.po           |   2 +-
 dovecot/locale/af_ZA/fusiondirectory.po       |   2 +-
 dovecot/locale/ar/fusiondirectory.po          |   2 +-
 dovecot/locale/ca/fusiondirectory.po          |   2 +-
 dovecot/locale/cs_CZ/fusiondirectory.po       |   2 +-
 dovecot/locale/de/fusiondirectory.po          |   2 +-
 dovecot/locale/el_GR/fusiondirectory.po       |   2 +-
 dovecot/locale/en/fusiondirectory.po          |  30 +-
 dovecot/locale/es/fusiondirectory.po          |   2 +-
 dovecot/locale/es_CO/fusiondirectory.po       |   2 +-
 dovecot/locale/es_VE/fusiondirectory.po       |   2 +-
 dovecot/locale/fa_IR/fusiondirectory.po       |   2 +-
 dovecot/locale/fi_FI/fusiondirectory.po       |   2 +-
 dovecot/locale/fr/fusiondirectory.po          |   2 +-
 dovecot/locale/hu_HU/fusiondirectory.po       |   2 +-
 dovecot/locale/id/fusiondirectory.po          |   2 +-
 dovecot/locale/it_IT/fusiondirectory.po       |   2 +-
 dovecot/locale/ja/fusiondirectory.po          |   2 +-
 dovecot/locale/ko/fusiondirectory.po          |   2 +-
 dovecot/locale/lv/fusiondirectory.po          |   2 +-
 dovecot/locale/nb/fusiondirectory.po          |   2 +-
 dovecot/locale/nl/fusiondirectory.po          |   2 +-
 dovecot/locale/pl/fusiondirectory.po          |   2 +-
 dovecot/locale/pt/fusiondirectory.po          |   2 +-
 dovecot/locale/pt_BR/fusiondirectory.po       |   2 +-
 dovecot/locale/ru/fusiondirectory.po          |   2 +-
 dovecot/locale/ru@petr1708/fusiondirectory.po |   2 +-
 dovecot/locale/sv/fusiondirectory.po          |   2 +-
 dovecot/locale/tr_TR/fusiondirectory.po       |   2 +-
 dovecot/locale/ug/fusiondirectory.po          |   2 +-
 dovecot/locale/vi_VN/fusiondirectory.po       |   2 +-
 dovecot/locale/zh/fusiondirectory.po          |   2 +-
 dovecot/locale/zh_TW/fusiondirectory.po       |   2 +-
 dsa/locale/af_ZA/fusiondirectory.po           |   2 +-
 dsa/locale/ar/fusiondirectory.po              |   2 +-
 dsa/locale/ca/fusiondirectory.po              |   2 +-
 dsa/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dsa/locale/de/fusiondirectory.po              |   2 +-
 dsa/locale/el_GR/fusiondirectory.po           |   2 +-
 dsa/locale/en/fusiondirectory.po              |   4 +-
 dsa/locale/es/fusiondirectory.po              |   2 +-
 dsa/locale/es_CO/fusiondirectory.po           |   2 +-
 dsa/locale/es_VE/fusiondirectory.po           |   2 +-
 dsa/locale/fa_IR/fusiondirectory.po           |   2 +-
 dsa/locale/fi_FI/fusiondirectory.po           |   2 +-
 dsa/locale/fr/fusiondirectory.po              |   2 +-
 dsa/locale/hu_HU/fusiondirectory.po           |   2 +-
 dsa/locale/id/fusiondirectory.po              |   2 +-
 dsa/locale/it_IT/fusiondirectory.po           |   2 +-
 dsa/locale/ja/fusiondirectory.po              |   2 +-
 dsa/locale/ko/fusiondirectory.po              |   2 +-
 dsa/locale/lv/fusiondirectory.po              |   2 +-
 dsa/locale/nb/fusiondirectory.po              |   2 +-
 dsa/locale/nl/fusiondirectory.po              |   2 +-
 dsa/locale/pl/fusiondirectory.po              |   2 +-
 dsa/locale/pt/fusiondirectory.po              |   2 +-
 dsa/locale/pt_BR/fusiondirectory.po           |   2 +-
 dsa/locale/ru/fusiondirectory.po              |   2 +-
 dsa/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dsa/locale/sv/fusiondirectory.po              |   2 +-
 dsa/locale/tr_TR/fusiondirectory.po           |   2 +-
 dsa/locale/ug/fusiondirectory.po              |   2 +-
 dsa/locale/vi_VN/fusiondirectory.po           |   2 +-
 dsa/locale/zh/fusiondirectory.po              |   2 +-
 dsa/locale/zh_TW/fusiondirectory.po           |   2 +-
 ejbca/locale/af_ZA/fusiondirectory.po         |   2 +-
 ejbca/locale/ar/fusiondirectory.po            |   2 +-
 ejbca/locale/ca/fusiondirectory.po            |   2 +-
 ejbca/locale/cs_CZ/fusiondirectory.po         |   2 +-
 ejbca/locale/de/fusiondirectory.po            |   2 +-
 ejbca/locale/el_GR/fusiondirectory.po         |   2 +-
 ejbca/locale/en/fusiondirectory.po            |  10 +-
 ejbca/locale/es/fusiondirectory.po            |   2 +-
 ejbca/locale/es_CO/fusiondirectory.po         |   2 +-
 ejbca/locale/es_VE/fusiondirectory.po         |   2 +-
 ejbca/locale/fa_IR/fusiondirectory.po         |   2 +-
 ejbca/locale/fi_FI/fusiondirectory.po         |   2 +-
 ejbca/locale/fr/fusiondirectory.po            |   2 +-
 ejbca/locale/hu_HU/fusiondirectory.po         |   2 +-
 ejbca/locale/id/fusiondirectory.po            |   2 +-
 ejbca/locale/it_IT/fusiondirectory.po         |   2 +-
 ejbca/locale/ja/fusiondirectory.po            |   2 +-
 ejbca/locale/ko/fusiondirectory.po            |   2 +-
 ejbca/locale/lv/fusiondirectory.po            |   2 +-
 ejbca/locale/nb/fusiondirectory.po            |   2 +-
 ejbca/locale/nl/fusiondirectory.po            |   2 +-
 ejbca/locale/pl/fusiondirectory.po            |   2 +-
 ejbca/locale/pt/fusiondirectory.po            |   2 +-
 ejbca/locale/pt_BR/fusiondirectory.po         |   2 +-
 ejbca/locale/ru/fusiondirectory.po            |   2 +-
 ejbca/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 ejbca/locale/sv/fusiondirectory.po            |   2 +-
 ejbca/locale/tr_TR/fusiondirectory.po         |   2 +-
 ejbca/locale/ug/fusiondirectory.po            |   2 +-
 ejbca/locale/vi_VN/fusiondirectory.po         |   2 +-
 ejbca/locale/zh/fusiondirectory.po            |   2 +-
 ejbca/locale/zh_TW/fusiondirectory.po         |   2 +-
 fai/locale/af_ZA/fusiondirectory.po           |   2 +-
 fai/locale/ar/fusiondirectory.po              |   2 +-
 fai/locale/ca/fusiondirectory.po              |   2 +-
 fai/locale/cs_CZ/fusiondirectory.po           |   2 +-
 fai/locale/de/fusiondirectory.po              |   2 +-
 fai/locale/el_GR/fusiondirectory.po           |   2 +-
 fai/locale/en/fusiondirectory.po              | 719 +++++++-------
 fai/locale/es/fusiondirectory.po              |   2 +-
 fai/locale/es_CO/fusiondirectory.po           |   2 +-
 fai/locale/es_VE/fusiondirectory.po           |   2 +-
 fai/locale/fa_IR/fusiondirectory.po           |   2 +-
 fai/locale/fi_FI/fusiondirectory.po           |   2 +-
 fai/locale/fr/fusiondirectory.po              |   2 +-
 fai/locale/hu_HU/fusiondirectory.po           |   2 +-
 fai/locale/id/fusiondirectory.po              |   2 +-
 fai/locale/it_IT/fusiondirectory.po           |   2 +-
 fai/locale/ja/fusiondirectory.po              |   2 +-
 fai/locale/ko/fusiondirectory.po              |  16 +-
 fai/locale/lv/fusiondirectory.po              |   2 +-
 fai/locale/nb/fusiondirectory.po              |   2 +-
 fai/locale/nl/fusiondirectory.po              |   2 +-
 fai/locale/pl/fusiondirectory.po              |   2 +-
 fai/locale/pt/fusiondirectory.po              |   2 +-
 fai/locale/pt_BR/fusiondirectory.po           |   2 +-
 fai/locale/ru/fusiondirectory.po              |   2 +-
 fai/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fai/locale/sv/fusiondirectory.po              |   2 +-
 fai/locale/tr_TR/fusiondirectory.po           |   2 +-
 fai/locale/ug/fusiondirectory.po              |   2 +-
 fai/locale/vi_VN/fusiondirectory.po           |   2 +-
 fai/locale/zh/fusiondirectory.po              |   2 +-
 fai/locale/zh_TW/fusiondirectory.po           |   2 +-
 freeradius/locale/af_ZA/fusiondirectory.po    |   2 +-
 freeradius/locale/ar/fusiondirectory.po       |   2 +-
 freeradius/locale/ca/fusiondirectory.po       |   2 +-
 freeradius/locale/cs_CZ/fusiondirectory.po    |   2 +-
 freeradius/locale/de/fusiondirectory.po       |   2 +-
 freeradius/locale/el_GR/fusiondirectory.po    |   2 +-
 freeradius/locale/en/fusiondirectory.po       |  22 +-
 freeradius/locale/es/fusiondirectory.po       |   2 +-
 freeradius/locale/es_CO/fusiondirectory.po    |   2 +-
 freeradius/locale/es_VE/fusiondirectory.po    |   2 +-
 freeradius/locale/fa_IR/fusiondirectory.po    |   2 +-
 freeradius/locale/fi_FI/fusiondirectory.po    |   2 +-
 freeradius/locale/fr/fusiondirectory.po       |   2 +-
 freeradius/locale/hu_HU/fusiondirectory.po    |   2 +-
 freeradius/locale/id/fusiondirectory.po       |   2 +-
 freeradius/locale/it_IT/fusiondirectory.po    |   2 +-
 freeradius/locale/ja/fusiondirectory.po       |   2 +-
 freeradius/locale/ko/fusiondirectory.po       |   2 +-
 freeradius/locale/lv/fusiondirectory.po       |   2 +-
 freeradius/locale/nb/fusiondirectory.po       |   2 +-
 freeradius/locale/nl/fusiondirectory.po       |   2 +-
 freeradius/locale/pl/fusiondirectory.po       |   2 +-
 freeradius/locale/pt/fusiondirectory.po       |   2 +-
 freeradius/locale/pt_BR/fusiondirectory.po    |   2 +-
 freeradius/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 freeradius/locale/sv/fusiondirectory.po       |   2 +-
 freeradius/locale/tr_TR/fusiondirectory.po    |   2 +-
 freeradius/locale/ug/fusiondirectory.po       |   2 +-
 freeradius/locale/vi_VN/fusiondirectory.po    |   2 +-
 freeradius/locale/zh/fusiondirectory.po       |   2 +-
 freeradius/locale/zh_TW/fusiondirectory.po    |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ar/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 fusioninventory/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/en/fusiondirectory.po  |  90 +-
 fusioninventory/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 fusioninventory/locale/fr/fusiondirectory.po  |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 fusioninventory/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ja/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ko/fusiondirectory.po  |  10 +-
 fusioninventory/locale/lv/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nb/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fusioninventory/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 fusioninventory/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 gpg/locale/af_ZA/fusiondirectory.po           |   2 +-
 gpg/locale/ar/fusiondirectory.po              |   2 +-
 gpg/locale/ca/fusiondirectory.po              |   2 +-
 gpg/locale/cs_CZ/fusiondirectory.po           |   2 +-
 gpg/locale/de/fusiondirectory.po              |   2 +-
 gpg/locale/el_GR/fusiondirectory.po           |   2 +-
 gpg/locale/en/fusiondirectory.po              |  86 +-
 gpg/locale/es/fusiondirectory.po              |   2 +-
 gpg/locale/es_CO/fusiondirectory.po           |   2 +-
 gpg/locale/es_VE/fusiondirectory.po           |   2 +-
 gpg/locale/fa_IR/fusiondirectory.po           |   2 +-
 gpg/locale/fi_FI/fusiondirectory.po           |   2 +-
 gpg/locale/fr/fusiondirectory.po              |   2 +-
 gpg/locale/hu_HU/fusiondirectory.po           |   2 +-
 gpg/locale/id/fusiondirectory.po              |   2 +-
 gpg/locale/it_IT/fusiondirectory.po           |   2 +-
 gpg/locale/ja/fusiondirectory.po              |   2 +-
 gpg/locale/ko/fusiondirectory.po              |   2 +-
 gpg/locale/lv/fusiondirectory.po              |   2 +-
 gpg/locale/nb/fusiondirectory.po              |   2 +-
 gpg/locale/nl/fusiondirectory.po              |   2 +-
 gpg/locale/pl/fusiondirectory.po              |   2 +-
 gpg/locale/pt/fusiondirectory.po              |   2 +-
 gpg/locale/pt_BR/fusiondirectory.po           |   2 +-
 gpg/locale/ru/fusiondirectory.po              |   2 +-
 gpg/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 gpg/locale/sv/fusiondirectory.po              |   2 +-
 gpg/locale/tr_TR/fusiondirectory.po           |   2 +-
 gpg/locale/ug/fusiondirectory.po              |   2 +-
 gpg/locale/vi_VN/fusiondirectory.po           |   2 +-
 gpg/locale/zh/fusiondirectory.po              |   2 +-
 gpg/locale/zh_TW/fusiondirectory.po           |   2 +-
 ipmi/locale/af_ZA/fusiondirectory.po          |   2 +-
 ipmi/locale/ar/fusiondirectory.po             |   2 +-
 ipmi/locale/ca/fusiondirectory.po             |   2 +-
 ipmi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 ipmi/locale/de/fusiondirectory.po             |   2 +-
 ipmi/locale/el_GR/fusiondirectory.po          |   2 +-
 ipmi/locale/en/fusiondirectory.po             |   8 +-
 ipmi/locale/es/fusiondirectory.po             |   2 +-
 ipmi/locale/es_CO/fusiondirectory.po          |   2 +-
 ipmi/locale/es_VE/fusiondirectory.po          |   2 +-
 ipmi/locale/fa_IR/fusiondirectory.po          |   2 +-
 ipmi/locale/fi_FI/fusiondirectory.po          |   2 +-
 ipmi/locale/fr/fusiondirectory.po             |   2 +-
 ipmi/locale/hu_HU/fusiondirectory.po          |   2 +-
 ipmi/locale/id/fusiondirectory.po             |   2 +-
 ipmi/locale/it_IT/fusiondirectory.po          |   2 +-
 ipmi/locale/ja/fusiondirectory.po             |   2 +-
 ipmi/locale/ko/fusiondirectory.po             |   2 +-
 ipmi/locale/lv/fusiondirectory.po             |   2 +-
 ipmi/locale/nb/fusiondirectory.po             |   2 +-
 ipmi/locale/nl/fusiondirectory.po             |   2 +-
 ipmi/locale/pl/fusiondirectory.po             |   2 +-
 ipmi/locale/pt/fusiondirectory.po             |   2 +-
 ipmi/locale/pt_BR/fusiondirectory.po          |   2 +-
 ipmi/locale/ru/fusiondirectory.po             |   2 +-
 ipmi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 ipmi/locale/sv/fusiondirectory.po             |   2 +-
 ipmi/locale/tr_TR/fusiondirectory.po          |   2 +-
 ipmi/locale/ug/fusiondirectory.po             |   2 +-
 ipmi/locale/vi_VN/fusiondirectory.po          |   2 +-
 ipmi/locale/zh/fusiondirectory.po             |   2 +-
 ipmi/locale/zh_TW/fusiondirectory.po          |   2 +-
 ldapdump/locale/af_ZA/fusiondirectory.po      |   2 +-
 ldapdump/locale/ar/fusiondirectory.po         |   2 +-
 ldapdump/locale/ca/fusiondirectory.po         |   2 +-
 ldapdump/locale/cs_CZ/fusiondirectory.po      |   2 +-
 ldapdump/locale/de/fusiondirectory.po         |   2 +-
 ldapdump/locale/el_GR/fusiondirectory.po      |   2 +-
 ldapdump/locale/en/fusiondirectory.po         |   4 +-
 ldapdump/locale/es/fusiondirectory.po         |   2 +-
 ldapdump/locale/es_CO/fusiondirectory.po      |   2 +-
 ldapdump/locale/es_VE/fusiondirectory.po      |   2 +-
 ldapdump/locale/fa_IR/fusiondirectory.po      |   2 +-
 ldapdump/locale/fi_FI/fusiondirectory.po      |   2 +-
 ldapdump/locale/fr/fusiondirectory.po         |   2 +-
 ldapdump/locale/hu_HU/fusiondirectory.po      |   2 +-
 ldapdump/locale/id/fusiondirectory.po         |   2 +-
 ldapdump/locale/it_IT/fusiondirectory.po      |   2 +-
 ldapdump/locale/ja/fusiondirectory.po         |   2 +-
 ldapdump/locale/ko/fusiondirectory.po         |   2 +-
 ldapdump/locale/lv/fusiondirectory.po         |   2 +-
 ldapdump/locale/nb/fusiondirectory.po         |   2 +-
 ldapdump/locale/nl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt_BR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapdump/locale/sv/fusiondirectory.po         |   2 +-
 ldapdump/locale/tr_TR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ug/fusiondirectory.po         |   2 +-
 ldapdump/locale/vi_VN/fusiondirectory.po      |   2 +-
 ldapdump/locale/zh/fusiondirectory.po         |   2 +-
 ldapdump/locale/zh_TW/fusiondirectory.po      |   2 +-
 ldapmanager/locale/af_ZA/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ar/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ca/fusiondirectory.po      |   2 +-
 ldapmanager/locale/cs_CZ/fusiondirectory.po   |   2 +-
 ldapmanager/locale/de/fusiondirectory.po      |   2 +-
 ldapmanager/locale/el_GR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/en/fusiondirectory.po      | 206 ++--
 ldapmanager/locale/es/fusiondirectory.po      |   2 +-
 ldapmanager/locale/es_CO/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es_VE/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fa_IR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fi_FI/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fr/fusiondirectory.po      |   2 +-
 ldapmanager/locale/hu_HU/fusiondirectory.po   |   2 +-
 ldapmanager/locale/id/fusiondirectory.po      |   2 +-
 ldapmanager/locale/it_IT/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ja/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ko/fusiondirectory.po      |   2 +-
 ldapmanager/locale/lv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nb/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt_BR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapmanager/locale/sv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/tr_TR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ug/fusiondirectory.po      |   2 +-
 ldapmanager/locale/vi_VN/fusiondirectory.po   |   2 +-
 ldapmanager/locale/zh/fusiondirectory.po      |   2 +-
 ldapmanager/locale/zh_TW/fusiondirectory.po   |   2 +-
 mail/locale/af_ZA/fusiondirectory.po          |   2 +-
 mail/locale/ar/fusiondirectory.po             |   2 +-
 mail/locale/ca/fusiondirectory.po             |   2 +-
 mail/locale/cs_CZ/fusiondirectory.po          |   2 +-
 mail/locale/de/fusiondirectory.po             |   2 +-
 mail/locale/el_GR/fusiondirectory.po          |   2 +-
 mail/locale/en/fusiondirectory.po             | 339 +++----
 mail/locale/es/fusiondirectory.po             |   2 +-
 mail/locale/es_CO/fusiondirectory.po          |   2 +-
 mail/locale/es_VE/fusiondirectory.po          |   2 +-
 mail/locale/fa_IR/fusiondirectory.po          |   2 +-
 mail/locale/fi_FI/fusiondirectory.po          |   2 +-
 mail/locale/fr/fusiondirectory.po             |   2 +-
 mail/locale/hu_HU/fusiondirectory.po          |   2 +-
 mail/locale/id/fusiondirectory.po             |   2 +-
 mail/locale/it_IT/fusiondirectory.po          |   2 +-
 mail/locale/ja/fusiondirectory.po             |   2 +-
 mail/locale/ko/fusiondirectory.po             |   2 +-
 mail/locale/lv/fusiondirectory.po             |   2 +-
 mail/locale/nb/fusiondirectory.po             |   2 +-
 mail/locale/nl/fusiondirectory.po             |   2 +-
 mail/locale/pl/fusiondirectory.po             |   2 +-
 mail/locale/pt/fusiondirectory.po             |   2 +-
 mail/locale/pt_BR/fusiondirectory.po          |   2 +-
 mail/locale/ru/fusiondirectory.po             |   2 +-
 mail/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 mail/locale/sv/fusiondirectory.po             |   2 +-
 mail/locale/tr_TR/fusiondirectory.po          |   2 +-
 mail/locale/ug/fusiondirectory.po             |   2 +-
 mail/locale/vi_VN/fusiondirectory.po          |   2 +-
 mail/locale/zh/fusiondirectory.po             |   2 +-
 mail/locale/zh_TW/fusiondirectory.po          |   2 +-
 mixedgroups/locale/af_ZA/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ar/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ca/fusiondirectory.po      |   2 +-
 mixedgroups/locale/cs_CZ/fusiondirectory.po   |   2 +-
 mixedgroups/locale/de/fusiondirectory.po      |   2 +-
 mixedgroups/locale/el_GR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/en/fusiondirectory.po      |  30 +-
 mixedgroups/locale/es/fusiondirectory.po      |   2 +-
 mixedgroups/locale/es_CO/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es_VE/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fa_IR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fi_FI/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fr/fusiondirectory.po      |   2 +-
 mixedgroups/locale/hu_HU/fusiondirectory.po   |   2 +-
 mixedgroups/locale/id/fusiondirectory.po      |   2 +-
 mixedgroups/locale/it_IT/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ja/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ko/fusiondirectory.po      |   2 +-
 mixedgroups/locale/lv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nb/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt_BR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 mixedgroups/locale/sv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/tr_TR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ug/fusiondirectory.po      |   2 +-
 mixedgroups/locale/vi_VN/fusiondirectory.po   |   2 +-
 mixedgroups/locale/zh/fusiondirectory.po      |   2 +-
 mixedgroups/locale/zh_TW/fusiondirectory.po   |   2 +-
 nagios/locale/af_ZA/fusiondirectory.po        |   2 +-
 nagios/locale/ar/fusiondirectory.po           |   2 +-
 nagios/locale/ca/fusiondirectory.po           |   2 +-
 nagios/locale/cs_CZ/fusiondirectory.po        |   2 +-
 nagios/locale/de/fusiondirectory.po           |   2 +-
 nagios/locale/el_GR/fusiondirectory.po        |   2 +-
 nagios/locale/en/fusiondirectory.po           |  38 +-
 nagios/locale/es/fusiondirectory.po           |   2 +-
 nagios/locale/es_CO/fusiondirectory.po        |   2 +-
 nagios/locale/es_VE/fusiondirectory.po        |   2 +-
 nagios/locale/fa_IR/fusiondirectory.po        |   2 +-
 nagios/locale/fi_FI/fusiondirectory.po        |   2 +-
 nagios/locale/fr/fusiondirectory.po           |   2 +-
 nagios/locale/hu_HU/fusiondirectory.po        |   2 +-
 nagios/locale/id/fusiondirectory.po           |   2 +-
 nagios/locale/it_IT/fusiondirectory.po        |   2 +-
 nagios/locale/ja/fusiondirectory.po           |   2 +-
 nagios/locale/ko/fusiondirectory.po           |   2 +-
 nagios/locale/lv/fusiondirectory.po           |   2 +-
 nagios/locale/nb/fusiondirectory.po           |   2 +-
 nagios/locale/nl/fusiondirectory.po           |   2 +-
 nagios/locale/pl/fusiondirectory.po           |   2 +-
 nagios/locale/pt/fusiondirectory.po           |   2 +-
 nagios/locale/pt_BR/fusiondirectory.po        |   2 +-
 nagios/locale/ru/fusiondirectory.po           |   2 +-
 nagios/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 nagios/locale/sv/fusiondirectory.po           |   2 +-
 nagios/locale/tr_TR/fusiondirectory.po        |   2 +-
 nagios/locale/ug/fusiondirectory.po           |   2 +-
 nagios/locale/vi_VN/fusiondirectory.po        |   2 +-
 nagios/locale/zh/fusiondirectory.po           |   2 +-
 nagios/locale/zh_TW/fusiondirectory.po        |   2 +-
 netgroups/locale/af_ZA/fusiondirectory.po     |   2 +-
 netgroups/locale/ar/fusiondirectory.po        |   2 +-
 netgroups/locale/ca/fusiondirectory.po        |   2 +-
 netgroups/locale/cs_CZ/fusiondirectory.po     |   2 +-
 netgroups/locale/de/fusiondirectory.po        |   2 +-
 netgroups/locale/el_GR/fusiondirectory.po     |   2 +-
 netgroups/locale/en/fusiondirectory.po        |  74 +-
 netgroups/locale/es/fusiondirectory.po        |   2 +-
 netgroups/locale/es_CO/fusiondirectory.po     |   2 +-
 netgroups/locale/es_VE/fusiondirectory.po     |   2 +-
 netgroups/locale/fa_IR/fusiondirectory.po     |   2 +-
 netgroups/locale/fi_FI/fusiondirectory.po     |   2 +-
 netgroups/locale/fr/fusiondirectory.po        |   2 +-
 netgroups/locale/hu_HU/fusiondirectory.po     |   2 +-
 netgroups/locale/id/fusiondirectory.po        |   2 +-
 netgroups/locale/it_IT/fusiondirectory.po     |   2 +-
 netgroups/locale/ja/fusiondirectory.po        |   2 +-
 netgroups/locale/ko/fusiondirectory.po        |   2 +-
 netgroups/locale/lv/fusiondirectory.po        |   2 +-
 netgroups/locale/nb/fusiondirectory.po        |   2 +-
 netgroups/locale/nl/fusiondirectory.po        |   2 +-
 netgroups/locale/pl/fusiondirectory.po        |   2 +-
 netgroups/locale/pt/fusiondirectory.po        |   2 +-
 netgroups/locale/pt_BR/fusiondirectory.po     |   2 +-
 netgroups/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 netgroups/locale/sv/fusiondirectory.po        |   2 +-
 netgroups/locale/tr_TR/fusiondirectory.po     |   2 +-
 netgroups/locale/ug/fusiondirectory.po        |   2 +-
 netgroups/locale/vi_VN/fusiondirectory.po     |   2 +-
 netgroups/locale/zh/fusiondirectory.po        |   2 +-
 netgroups/locale/zh_TW/fusiondirectory.po     |   2 +-
 newsletter/locale/af_ZA/fusiondirectory.po    |   2 +-
 newsletter/locale/ar/fusiondirectory.po       |   2 +-
 newsletter/locale/ca/fusiondirectory.po       |   2 +-
 newsletter/locale/cs_CZ/fusiondirectory.po    |   2 +-
 newsletter/locale/de/fusiondirectory.po       |   2 +-
 newsletter/locale/el_GR/fusiondirectory.po    |   2 +-
 newsletter/locale/en/fusiondirectory.po       |  38 +-
 newsletter/locale/es/fusiondirectory.po       |   2 +-
 newsletter/locale/es_CO/fusiondirectory.po    |   2 +-
 newsletter/locale/es_VE/fusiondirectory.po    |   2 +-
 newsletter/locale/fa_IR/fusiondirectory.po    |   2 +-
 newsletter/locale/fi_FI/fusiondirectory.po    |   2 +-
 newsletter/locale/fr/fusiondirectory.po       |   2 +-
 newsletter/locale/hu_HU/fusiondirectory.po    |   2 +-
 newsletter/locale/id/fusiondirectory.po       |   2 +-
 newsletter/locale/it_IT/fusiondirectory.po    |   2 +-
 newsletter/locale/ja/fusiondirectory.po       |   2 +-
 newsletter/locale/ko/fusiondirectory.po       |   2 +-
 newsletter/locale/lv/fusiondirectory.po       |   2 +-
 newsletter/locale/nb/fusiondirectory.po       |   2 +-
 newsletter/locale/nl/fusiondirectory.po       |   2 +-
 newsletter/locale/pl/fusiondirectory.po       |   2 +-
 newsletter/locale/pt/fusiondirectory.po       |   2 +-
 newsletter/locale/pt_BR/fusiondirectory.po    |   2 +-
 newsletter/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 newsletter/locale/sv/fusiondirectory.po       |   2 +-
 newsletter/locale/tr_TR/fusiondirectory.po    |   2 +-
 newsletter/locale/ug/fusiondirectory.po       |   2 +-
 newsletter/locale/vi_VN/fusiondirectory.po    |   2 +-
 newsletter/locale/zh/fusiondirectory.po       |   2 +-
 newsletter/locale/zh_TW/fusiondirectory.po    |   2 +-
 opsi/locale/af_ZA/fusiondirectory.po          |   2 +-
 opsi/locale/ar/fusiondirectory.po             |   2 +-
 opsi/locale/ca/fusiondirectory.po             |   2 +-
 opsi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 opsi/locale/de/fusiondirectory.po             |   2 +-
 opsi/locale/el_GR/fusiondirectory.po          |   2 +-
 opsi/locale/en/fusiondirectory.po             | 395 +++++---
 opsi/locale/es/fusiondirectory.po             |   2 +-
 opsi/locale/es_CO/fusiondirectory.po          |   2 +-
 opsi/locale/es_VE/fusiondirectory.po          |   2 +-
 opsi/locale/fa_IR/fusiondirectory.po          |   2 +-
 opsi/locale/fi_FI/fusiondirectory.po          |   2 +-
 opsi/locale/fr/fusiondirectory.po             |   2 +-
 opsi/locale/hu_HU/fusiondirectory.po          |   2 +-
 opsi/locale/id/fusiondirectory.po             |   2 +-
 opsi/locale/it_IT/fusiondirectory.po          |   2 +-
 opsi/locale/ja/fusiondirectory.po             |   2 +-
 opsi/locale/ko/fusiondirectory.po             |   2 +-
 opsi/locale/lv/fusiondirectory.po             |   2 +-
 opsi/locale/nb/fusiondirectory.po             |   2 +-
 opsi/locale/nl/fusiondirectory.po             |   2 +-
 opsi/locale/pl/fusiondirectory.po             |   2 +-
 opsi/locale/pt/fusiondirectory.po             |   2 +-
 opsi/locale/pt_BR/fusiondirectory.po          |   2 +-
 opsi/locale/ru/fusiondirectory.po             |   2 +-
 opsi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 opsi/locale/sv/fusiondirectory.po             |   2 +-
 opsi/locale/tr_TR/fusiondirectory.po          |   2 +-
 opsi/locale/ug/fusiondirectory.po             |   2 +-
 opsi/locale/vi_VN/fusiondirectory.po          |   2 +-
 opsi/locale/zh/fusiondirectory.po             |   2 +-
 opsi/locale/zh_TW/fusiondirectory.po          |   2 +-
 personal/locale/af_ZA/fusiondirectory.po      |   2 +-
 personal/locale/ar/fusiondirectory.po         |   2 +-
 personal/locale/ca/fusiondirectory.po         |   2 +-
 personal/locale/cs_CZ/fusiondirectory.po      |   2 +-
 personal/locale/de/fusiondirectory.po         |   2 +-
 personal/locale/el_GR/fusiondirectory.po      |   2 +-
 personal/locale/en/fusiondirectory.po         | 102 +-
 personal/locale/es/fusiondirectory.po         |   2 +-
 personal/locale/es_CO/fusiondirectory.po      |   2 +-
 personal/locale/es_VE/fusiondirectory.po      |   2 +-
 personal/locale/fa_IR/fusiondirectory.po      |   2 +-
 personal/locale/fi_FI/fusiondirectory.po      |   2 +-
 personal/locale/fr/fusiondirectory.po         |   2 +-
 personal/locale/hu_HU/fusiondirectory.po      |   2 +-
 personal/locale/id/fusiondirectory.po         |   2 +-
 personal/locale/it_IT/fusiondirectory.po      |   2 +-
 personal/locale/ja/fusiondirectory.po         |   2 +-
 personal/locale/ko/fusiondirectory.po         |   2 +-
 personal/locale/lv/fusiondirectory.po         |   2 +-
 personal/locale/nb/fusiondirectory.po         |   2 +-
 personal/locale/nl/fusiondirectory.po         |   2 +-
 personal/locale/pl/fusiondirectory.po         |   2 +-
 personal/locale/pt/fusiondirectory.po         |   2 +-
 personal/locale/pt_BR/fusiondirectory.po      |   2 +-
 personal/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 personal/locale/sv/fusiondirectory.po         |   2 +-
 personal/locale/tr_TR/fusiondirectory.po      |   2 +-
 personal/locale/ug/fusiondirectory.po         |   2 +-
 personal/locale/vi_VN/fusiondirectory.po      |   2 +-
 personal/locale/zh/fusiondirectory.po         |   2 +-
 personal/locale/zh_TW/fusiondirectory.po      |   2 +-
 posix/locale/af_ZA/fusiondirectory.po         |   2 +-
 posix/locale/ar/fusiondirectory.po            |   2 +-
 posix/locale/ca/fusiondirectory.po            |   2 +-
 posix/locale/cs_CZ/fusiondirectory.po         |   2 +-
 posix/locale/de/fusiondirectory.po            |   2 +-
 posix/locale/el_GR/fusiondirectory.po         |   2 +-
 posix/locale/en/fusiondirectory.po            | 528 +++++-----
 posix/locale/es/fusiondirectory.po            |   2 +-
 posix/locale/es_CO/fusiondirectory.po         |   2 +-
 posix/locale/es_VE/fusiondirectory.po         |   2 +-
 posix/locale/fa_IR/fusiondirectory.po         |   2 +-
 posix/locale/fi_FI/fusiondirectory.po         |   2 +-
 posix/locale/fr/fusiondirectory.po            |   2 +-
 posix/locale/hu_HU/fusiondirectory.po         |   2 +-
 posix/locale/id/fusiondirectory.po            |   2 +-
 posix/locale/it_IT/fusiondirectory.po         |   2 +-
 posix/locale/ja/fusiondirectory.po            |   2 +-
 posix/locale/ko/fusiondirectory.po            |   2 +-
 posix/locale/lv/fusiondirectory.po            |   2 +-
 posix/locale/nb/fusiondirectory.po            |   2 +-
 posix/locale/nl/fusiondirectory.po            |   2 +-
 posix/locale/pl/fusiondirectory.po            |   2 +-
 posix/locale/pt/fusiondirectory.po            |   2 +-
 posix/locale/pt_BR/fusiondirectory.po         |   2 +-
 posix/locale/ru/fusiondirectory.po            |   2 +-
 posix/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 posix/locale/sv/fusiondirectory.po            |   2 +-
 posix/locale/tr_TR/fusiondirectory.po         |   2 +-
 posix/locale/ug/fusiondirectory.po            |   2 +-
 posix/locale/vi_VN/fusiondirectory.po         |   2 +-
 posix/locale/zh/fusiondirectory.po            |   2 +-
 posix/locale/zh_TW/fusiondirectory.po         |   2 +-
 postfix/locale/af_ZA/fusiondirectory.po       |   2 +-
 postfix/locale/ar/fusiondirectory.po          |   2 +-
 postfix/locale/ca/fusiondirectory.po          |   2 +-
 postfix/locale/cs_CZ/fusiondirectory.po       |   2 +-
 postfix/locale/de/fusiondirectory.po          |   2 +-
 postfix/locale/el_GR/fusiondirectory.po       |   2 +-
 postfix/locale/en/fusiondirectory.po          |  89 +-
 postfix/locale/es/fusiondirectory.po          |   2 +-
 postfix/locale/es_CO/fusiondirectory.po       |   2 +-
 postfix/locale/es_VE/fusiondirectory.po       |   2 +-
 postfix/locale/fa_IR/fusiondirectory.po       |   2 +-
 postfix/locale/fi_FI/fusiondirectory.po       |   2 +-
 postfix/locale/fr/fusiondirectory.po          |   2 +-
 postfix/locale/hu_HU/fusiondirectory.po       |   2 +-
 postfix/locale/id/fusiondirectory.po          |   2 +-
 postfix/locale/it_IT/fusiondirectory.po       |   2 +-
 postfix/locale/ja/fusiondirectory.po          |   2 +-
 postfix/locale/ko/fusiondirectory.po          |   2 +-
 postfix/locale/lv/fusiondirectory.po          |   2 +-
 postfix/locale/nb/fusiondirectory.po          |   2 +-
 postfix/locale/nl/fusiondirectory.po          |   2 +-
 postfix/locale/pl/fusiondirectory.po          |   2 +-
 postfix/locale/pt/fusiondirectory.po          |   2 +-
 postfix/locale/pt_BR/fusiondirectory.po       |   2 +-
 postfix/locale/ru/fusiondirectory.po          |   2 +-
 postfix/locale/ru@petr1708/fusiondirectory.po |   2 +-
 postfix/locale/sv/fusiondirectory.po          |   2 +-
 postfix/locale/tr_TR/fusiondirectory.po       |   2 +-
 postfix/locale/ug/fusiondirectory.po          |   2 +-
 postfix/locale/vi_VN/fusiondirectory.po       |   2 +-
 postfix/locale/zh/fusiondirectory.po          |   2 +-
 postfix/locale/zh_TW/fusiondirectory.po       |   2 +-
 ppolicy/locale/af_ZA/fusiondirectory.po       |   2 +-
 ppolicy/locale/ar/fusiondirectory.po          |   2 +-
 ppolicy/locale/ca/fusiondirectory.po          |   2 +-
 ppolicy/locale/cs_CZ/fusiondirectory.po       |   2 +-
 ppolicy/locale/de/fusiondirectory.po          |   2 +-
 ppolicy/locale/el_GR/fusiondirectory.po       |   2 +-
 ppolicy/locale/en/fusiondirectory.po          | 204 ++--
 ppolicy/locale/es/fusiondirectory.po          |   2 +-
 ppolicy/locale/es_CO/fusiondirectory.po       |   2 +-
 ppolicy/locale/es_VE/fusiondirectory.po       |   2 +-
 ppolicy/locale/fa_IR/fusiondirectory.po       |   2 +-
 ppolicy/locale/fi_FI/fusiondirectory.po       |   2 +-
 ppolicy/locale/fr/fusiondirectory.po          |   2 +-
 ppolicy/locale/hu_HU/fusiondirectory.po       |   2 +-
 ppolicy/locale/id/fusiondirectory.po          |   2 +-
 ppolicy/locale/it_IT/fusiondirectory.po       |   2 +-
 ppolicy/locale/ja/fusiondirectory.po          |   2 +-
 ppolicy/locale/ko/fusiondirectory.po          |  14 +-
 ppolicy/locale/lv/fusiondirectory.po          |   2 +-
 ppolicy/locale/nb/fusiondirectory.po          |   2 +-
 ppolicy/locale/nl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt_BR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ru/fusiondirectory.po          |   2 +-
 ppolicy/locale/ru@petr1708/fusiondirectory.po |   2 +-
 ppolicy/locale/sv/fusiondirectory.po          |   2 +-
 ppolicy/locale/tr_TR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ug/fusiondirectory.po          |   2 +-
 ppolicy/locale/vi_VN/fusiondirectory.po       |   2 +-
 ppolicy/locale/zh/fusiondirectory.po          |   2 +-
 ppolicy/locale/zh_TW/fusiondirectory.po       |   2 +-
 puppet/locale/af_ZA/fusiondirectory.po        |   2 +-
 puppet/locale/ar/fusiondirectory.po           |   2 +-
 puppet/locale/ca/fusiondirectory.po           |   2 +-
 puppet/locale/cs_CZ/fusiondirectory.po        |   2 +-
 puppet/locale/de/fusiondirectory.po           |   2 +-
 puppet/locale/el_GR/fusiondirectory.po        |   2 +-
 puppet/locale/en/fusiondirectory.po           |   9 +-
 puppet/locale/es/fusiondirectory.po           |   2 +-
 puppet/locale/es_CO/fusiondirectory.po        |   2 +-
 puppet/locale/es_VE/fusiondirectory.po        |   2 +-
 puppet/locale/fa_IR/fusiondirectory.po        |   2 +-
 puppet/locale/fi_FI/fusiondirectory.po        |   2 +-
 puppet/locale/fr/fusiondirectory.po           |   2 +-
 puppet/locale/hu_HU/fusiondirectory.po        |   2 +-
 puppet/locale/id/fusiondirectory.po           |   2 +-
 puppet/locale/it_IT/fusiondirectory.po        |   2 +-
 puppet/locale/ja/fusiondirectory.po           |   2 +-
 puppet/locale/ko/fusiondirectory.po           |   2 +-
 puppet/locale/lv/fusiondirectory.po           |   2 +-
 puppet/locale/nb/fusiondirectory.po           |   2 +-
 puppet/locale/nl/fusiondirectory.po           |   2 +-
 puppet/locale/pl/fusiondirectory.po           |   2 +-
 puppet/locale/pt/fusiondirectory.po           |   2 +-
 puppet/locale/pt_BR/fusiondirectory.po        |   2 +-
 puppet/locale/ru/fusiondirectory.po           |   2 +-
 puppet/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 puppet/locale/sv/fusiondirectory.po           |   2 +-
 puppet/locale/tr_TR/fusiondirectory.po        |   2 +-
 puppet/locale/ug/fusiondirectory.po           |   2 +-
 puppet/locale/vi_VN/fusiondirectory.po        |   2 +-
 puppet/locale/zh/fusiondirectory.po           |   2 +-
 puppet/locale/zh_TW/fusiondirectory.po        |   2 +-
 pureftpd/locale/af_ZA/fusiondirectory.po      |   2 +-
 pureftpd/locale/ar/fusiondirectory.po         |   2 +-
 pureftpd/locale/ca/fusiondirectory.po         |   2 +-
 pureftpd/locale/cs_CZ/fusiondirectory.po      |   2 +-
 pureftpd/locale/de/fusiondirectory.po         |   2 +-
 pureftpd/locale/el_GR/fusiondirectory.po      |   2 +-
 pureftpd/locale/en/fusiondirectory.po         |   4 +-
 pureftpd/locale/es/fusiondirectory.po         |   2 +-
 pureftpd/locale/es_CO/fusiondirectory.po      |   2 +-
 pureftpd/locale/es_VE/fusiondirectory.po      |   2 +-
 pureftpd/locale/fa_IR/fusiondirectory.po      |   2 +-
 pureftpd/locale/fi_FI/fusiondirectory.po      |   2 +-
 pureftpd/locale/fr/fusiondirectory.po         |   2 +-
 pureftpd/locale/hu_HU/fusiondirectory.po      |   2 +-
 pureftpd/locale/id/fusiondirectory.po         |   2 +-
 pureftpd/locale/it_IT/fusiondirectory.po      |   2 +-
 pureftpd/locale/ja/fusiondirectory.po         |   2 +-
 pureftpd/locale/ko/fusiondirectory.po         |   2 +-
 pureftpd/locale/lv/fusiondirectory.po         |   2 +-
 pureftpd/locale/nb/fusiondirectory.po         |   2 +-
 pureftpd/locale/nl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt_BR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 pureftpd/locale/sv/fusiondirectory.po         |   2 +-
 pureftpd/locale/tr_TR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ug/fusiondirectory.po         |   2 +-
 pureftpd/locale/vi_VN/fusiondirectory.po      |   2 +-
 pureftpd/locale/zh/fusiondirectory.po         |   2 +-
 pureftpd/locale/zh_TW/fusiondirectory.po      |   2 +-
 quota/locale/af_ZA/fusiondirectory.po         |   2 +-
 quota/locale/ar/fusiondirectory.po            |   2 +-
 quota/locale/ca/fusiondirectory.po            |   2 +-
 quota/locale/cs_CZ/fusiondirectory.po         |   2 +-
 quota/locale/de/fusiondirectory.po            |   2 +-
 quota/locale/el_GR/fusiondirectory.po         |   2 +-
 quota/locale/en/fusiondirectory.po            | 134 +--
 quota/locale/es/fusiondirectory.po            |   2 +-
 quota/locale/es_CO/fusiondirectory.po         |   2 +-
 quota/locale/es_VE/fusiondirectory.po         |   2 +-
 quota/locale/fa_IR/fusiondirectory.po         |   2 +-
 quota/locale/fi_FI/fusiondirectory.po         |   2 +-
 quota/locale/fr/fusiondirectory.po            |   2 +-
 quota/locale/hu_HU/fusiondirectory.po         |   2 +-
 quota/locale/id/fusiondirectory.po            |   2 +-
 quota/locale/it_IT/fusiondirectory.po         |   2 +-
 quota/locale/ja/fusiondirectory.po            |   2 +-
 quota/locale/ko/fusiondirectory.po            |   2 +-
 quota/locale/lv/fusiondirectory.po            |   2 +-
 quota/locale/nb/fusiondirectory.po            |   2 +-
 quota/locale/nl/fusiondirectory.po            |   2 +-
 quota/locale/pl/fusiondirectory.po            |   2 +-
 quota/locale/pt/fusiondirectory.po            |   2 +-
 quota/locale/pt_BR/fusiondirectory.po         |   2 +-
 quota/locale/ru/fusiondirectory.po            |   2 +-
 quota/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 quota/locale/sv/fusiondirectory.po            |   2 +-
 quota/locale/tr_TR/fusiondirectory.po         |   2 +-
 quota/locale/ug/fusiondirectory.po            |   2 +-
 quota/locale/vi_VN/fusiondirectory.po         |   2 +-
 quota/locale/zh/fusiondirectory.po            |   2 +-
 quota/locale/zh_TW/fusiondirectory.po         |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 renater-partage/locale/ar/fusiondirectory.po  |   2 +-
 renater-partage/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 renater-partage/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 renater-partage/locale/en/fusiondirectory.po  | 275 +++---
 renater-partage/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 renater-partage/locale/fr/fusiondirectory.po  |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 renater-partage/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 renater-partage/locale/ja/fusiondirectory.po  |   2 +-
 renater-partage/locale/ko/fusiondirectory.po  |   2 +-
 renater-partage/locale/lv/fusiondirectory.po  |   2 +-
 renater-partage/locale/nb/fusiondirectory.po  |   2 +-
 renater-partage/locale/nl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 renater-partage/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 renater-partage/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 renater-partage/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 renater-partage/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 repository/locale/af_ZA/fusiondirectory.po    |   2 +-
 repository/locale/ar/fusiondirectory.po       |   2 +-
 repository/locale/ca/fusiondirectory.po       |   2 +-
 repository/locale/cs_CZ/fusiondirectory.po    |   2 +-
 repository/locale/de/fusiondirectory.po       |   2 +-
 repository/locale/el_GR/fusiondirectory.po    |   2 +-
 repository/locale/en/fusiondirectory.po       |  96 +-
 repository/locale/es/fusiondirectory.po       |   2 +-
 repository/locale/es_CO/fusiondirectory.po    |   2 +-
 repository/locale/es_VE/fusiondirectory.po    |   2 +-
 repository/locale/fa_IR/fusiondirectory.po    |   2 +-
 repository/locale/fi_FI/fusiondirectory.po    |   2 +-
 repository/locale/fr/fusiondirectory.po       |   2 +-
 repository/locale/hu_HU/fusiondirectory.po    |   2 +-
 repository/locale/id/fusiondirectory.po       |   2 +-
 repository/locale/it_IT/fusiondirectory.po    |   2 +-
 repository/locale/ja/fusiondirectory.po       |   2 +-
 repository/locale/ko/fusiondirectory.po       |  72 +-
 repository/locale/lv/fusiondirectory.po       |   2 +-
 repository/locale/nb/fusiondirectory.po       |   2 +-
 repository/locale/nl/fusiondirectory.po       |   2 +-
 repository/locale/pl/fusiondirectory.po       |   2 +-
 repository/locale/pt/fusiondirectory.po       |   2 +-
 repository/locale/pt_BR/fusiondirectory.po    |   2 +-
 repository/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 repository/locale/sv/fusiondirectory.po       |   2 +-
 repository/locale/tr_TR/fusiondirectory.po    |   2 +-
 repository/locale/ug/fusiondirectory.po       |   2 +-
 repository/locale/vi_VN/fusiondirectory.po    |   2 +-
 repository/locale/zh/fusiondirectory.po       |   2 +-
 repository/locale/zh_TW/fusiondirectory.po    |   2 +-
 samba/locale/af_ZA/fusiondirectory.po         |   2 +-
 samba/locale/ar/fusiondirectory.po            |   2 +-
 samba/locale/ca/fusiondirectory.po            |   2 +-
 samba/locale/cs_CZ/fusiondirectory.po         |   2 +-
 samba/locale/de/fusiondirectory.po            |   2 +-
 samba/locale/el_GR/fusiondirectory.po         |   2 +-
 samba/locale/en/fusiondirectory.po            | 638 ++++++------
 samba/locale/es/fusiondirectory.po            |   2 +-
 samba/locale/es_CO/fusiondirectory.po         |   2 +-
 samba/locale/es_VE/fusiondirectory.po         |   2 +-
 samba/locale/fa_IR/fusiondirectory.po         |   2 +-
 samba/locale/fi_FI/fusiondirectory.po         |   2 +-
 samba/locale/fr/fusiondirectory.po            |   2 +-
 samba/locale/hu_HU/fusiondirectory.po         |   2 +-
 samba/locale/id/fusiondirectory.po            |   2 +-
 samba/locale/it_IT/fusiondirectory.po         |   2 +-
 samba/locale/ja/fusiondirectory.po            |   2 +-
 samba/locale/ko/fusiondirectory.po            | 196 ++--
 samba/locale/lv/fusiondirectory.po            |   2 +-
 samba/locale/nb/fusiondirectory.po            |   2 +-
 samba/locale/nl/fusiondirectory.po            |   2 +-
 samba/locale/pl/fusiondirectory.po            |   2 +-
 samba/locale/pt/fusiondirectory.po            |   2 +-
 samba/locale/pt_BR/fusiondirectory.po         |   2 +-
 samba/locale/ru/fusiondirectory.po            |   2 +-
 samba/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 samba/locale/sv/fusiondirectory.po            |   2 +-
 samba/locale/tr_TR/fusiondirectory.po         |   2 +-
 samba/locale/ug/fusiondirectory.po            |   2 +-
 samba/locale/vi_VN/fusiondirectory.po         |   2 +-
 samba/locale/zh/fusiondirectory.po            |   2 +-
 samba/locale/zh_TW/fusiondirectory.po         |   2 +-
 sinaps/locale/af_ZA/fusiondirectory.po        |   2 +-
 sinaps/locale/ar/fusiondirectory.po           |   2 +-
 sinaps/locale/ca/fusiondirectory.po           |   2 +-
 sinaps/locale/cs_CZ/fusiondirectory.po        |   2 +-
 sinaps/locale/de/fusiondirectory.po           |   2 +-
 sinaps/locale/el_GR/fusiondirectory.po        |   2 +-
 sinaps/locale/en/fusiondirectory.po           | 202 ++--
 sinaps/locale/es/fusiondirectory.po           |   2 +-
 sinaps/locale/es_CO/fusiondirectory.po        |   2 +-
 sinaps/locale/es_VE/fusiondirectory.po        |   2 +-
 sinaps/locale/fa_IR/fusiondirectory.po        |   2 +-
 sinaps/locale/fi_FI/fusiondirectory.po        |   2 +-
 sinaps/locale/fr/fusiondirectory.po           |   2 +-
 sinaps/locale/hu_HU/fusiondirectory.po        |   2 +-
 sinaps/locale/id/fusiondirectory.po           |   2 +-
 sinaps/locale/it_IT/fusiondirectory.po        |   2 +-
 sinaps/locale/ja/fusiondirectory.po           |   2 +-
 sinaps/locale/ko/fusiondirectory.po           |   8 +-
 sinaps/locale/lv/fusiondirectory.po           |   2 +-
 sinaps/locale/nb/fusiondirectory.po           |   2 +-
 sinaps/locale/nl/fusiondirectory.po           |   2 +-
 sinaps/locale/pl/fusiondirectory.po           |   2 +-
 sinaps/locale/pt/fusiondirectory.po           |   2 +-
 sinaps/locale/pt_BR/fusiondirectory.po        |   2 +-
 sinaps/locale/ru/fusiondirectory.po           |   2 +-
 sinaps/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 sinaps/locale/sv/fusiondirectory.po           |   2 +-
 sinaps/locale/tr_TR/fusiondirectory.po        |   2 +-
 sinaps/locale/ug/fusiondirectory.po           |   2 +-
 sinaps/locale/vi_VN/fusiondirectory.po        |   2 +-
 sinaps/locale/zh/fusiondirectory.po           |   2 +-
 sinaps/locale/zh_TW/fusiondirectory.po        |   2 +-
 sogo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sogo/locale/ar/fusiondirectory.po             |   2 +-
 sogo/locale/ca/fusiondirectory.po             |   2 +-
 sogo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sogo/locale/de/fusiondirectory.po             |   2 +-
 sogo/locale/el_GR/fusiondirectory.po          |   2 +-
 sogo/locale/en/fusiondirectory.po             |   4 +-
 sogo/locale/es/fusiondirectory.po             |   2 +-
 sogo/locale/es_CO/fusiondirectory.po          |   2 +-
 sogo/locale/es_VE/fusiondirectory.po          |   2 +-
 sogo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sogo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sogo/locale/fr/fusiondirectory.po             |   2 +-
 sogo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sogo/locale/id/fusiondirectory.po             |   2 +-
 sogo/locale/it_IT/fusiondirectory.po          |   2 +-
 sogo/locale/ja/fusiondirectory.po             |   2 +-
 sogo/locale/ko/fusiondirectory.po             |   2 +-
 sogo/locale/lv/fusiondirectory.po             |   2 +-
 sogo/locale/nb/fusiondirectory.po             |   2 +-
 sogo/locale/nl/fusiondirectory.po             |   2 +-
 sogo/locale/pl/fusiondirectory.po             |   2 +-
 sogo/locale/pt/fusiondirectory.po             |   2 +-
 sogo/locale/pt_BR/fusiondirectory.po          |   2 +-
 sogo/locale/ru/fusiondirectory.po             |   2 +-
 sogo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sogo/locale/sv/fusiondirectory.po             |   2 +-
 sogo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sogo/locale/ug/fusiondirectory.po             |   2 +-
 sogo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sogo/locale/zh/fusiondirectory.po             |   2 +-
 sogo/locale/zh_TW/fusiondirectory.po          |   2 +-
 spamassassin/locale/af_ZA/fusiondirectory.po  |   2 +-
 spamassassin/locale/ar/fusiondirectory.po     |   2 +-
 spamassassin/locale/ca/fusiondirectory.po     |   2 +-
 spamassassin/locale/cs_CZ/fusiondirectory.po  |   2 +-
 spamassassin/locale/de/fusiondirectory.po     |   2 +-
 spamassassin/locale/el_GR/fusiondirectory.po  |   2 +-
 spamassassin/locale/en/fusiondirectory.po     |  76 +-
 spamassassin/locale/es/fusiondirectory.po     |   2 +-
 spamassassin/locale/es_CO/fusiondirectory.po  |   2 +-
 spamassassin/locale/es_VE/fusiondirectory.po  |   2 +-
 spamassassin/locale/fa_IR/fusiondirectory.po  |   2 +-
 spamassassin/locale/fi_FI/fusiondirectory.po  |   2 +-
 spamassassin/locale/fr/fusiondirectory.po     |   2 +-
 spamassassin/locale/hu_HU/fusiondirectory.po  |   2 +-
 spamassassin/locale/id/fusiondirectory.po     |   2 +-
 spamassassin/locale/it_IT/fusiondirectory.po  |   2 +-
 spamassassin/locale/ja/fusiondirectory.po     |   2 +-
 spamassassin/locale/ko/fusiondirectory.po     |   2 +-
 spamassassin/locale/lv/fusiondirectory.po     |   2 +-
 spamassassin/locale/nb/fusiondirectory.po     |   2 +-
 spamassassin/locale/nl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt_BR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 spamassassin/locale/sv/fusiondirectory.po     |   2 +-
 spamassassin/locale/tr_TR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ug/fusiondirectory.po     |   2 +-
 spamassassin/locale/vi_VN/fusiondirectory.po  |   2 +-
 spamassassin/locale/zh/fusiondirectory.po     |   2 +-
 spamassassin/locale/zh_TW/fusiondirectory.po  |   2 +-
 squid/locale/af_ZA/fusiondirectory.po         |   2 +-
 squid/locale/ar/fusiondirectory.po            |   2 +-
 squid/locale/ca/fusiondirectory.po            |   2 +-
 squid/locale/cs_CZ/fusiondirectory.po         |   2 +-
 squid/locale/de/fusiondirectory.po            |   2 +-
 squid/locale/el_GR/fusiondirectory.po         |   2 +-
 squid/locale/en/fusiondirectory.po            |   4 +-
 squid/locale/es/fusiondirectory.po            |   2 +-
 squid/locale/es_CO/fusiondirectory.po         |   2 +-
 squid/locale/es_VE/fusiondirectory.po         |   2 +-
 squid/locale/fa_IR/fusiondirectory.po         |   2 +-
 squid/locale/fi_FI/fusiondirectory.po         |   2 +-
 squid/locale/fr/fusiondirectory.po            |   2 +-
 squid/locale/hu_HU/fusiondirectory.po         |   2 +-
 squid/locale/id/fusiondirectory.po            |   2 +-
 squid/locale/it_IT/fusiondirectory.po         |   2 +-
 squid/locale/ja/fusiondirectory.po            |   2 +-
 squid/locale/ko/fusiondirectory.po            |   2 +-
 squid/locale/lv/fusiondirectory.po            |   2 +-
 squid/locale/nb/fusiondirectory.po            |   2 +-
 squid/locale/nl/fusiondirectory.po            |   2 +-
 squid/locale/pl/fusiondirectory.po            |   2 +-
 squid/locale/pt/fusiondirectory.po            |   2 +-
 squid/locale/pt_BR/fusiondirectory.po         |   2 +-
 squid/locale/ru/fusiondirectory.po            |   2 +-
 squid/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 squid/locale/sv/fusiondirectory.po            |   2 +-
 squid/locale/tr_TR/fusiondirectory.po         |   2 +-
 squid/locale/ug/fusiondirectory.po            |   2 +-
 squid/locale/vi_VN/fusiondirectory.po         |   2 +-
 squid/locale/zh/fusiondirectory.po            |   2 +-
 squid/locale/zh_TW/fusiondirectory.po         |   2 +-
 ssh/locale/af_ZA/fusiondirectory.po           |   2 +-
 ssh/locale/ar/fusiondirectory.po              |   2 +-
 ssh/locale/ca/fusiondirectory.po              |   2 +-
 ssh/locale/cs_CZ/fusiondirectory.po           |   2 +-
 ssh/locale/de/fusiondirectory.po              |   2 +-
 ssh/locale/el_GR/fusiondirectory.po           |   2 +-
 ssh/locale/en/fusiondirectory.po              |  18 +-
 ssh/locale/es/fusiondirectory.po              |   2 +-
 ssh/locale/es_CO/fusiondirectory.po           |   2 +-
 ssh/locale/es_VE/fusiondirectory.po           |   2 +-
 ssh/locale/fa_IR/fusiondirectory.po           |   2 +-
 ssh/locale/fi_FI/fusiondirectory.po           |   2 +-
 ssh/locale/fr/fusiondirectory.po              |   2 +-
 ssh/locale/hu_HU/fusiondirectory.po           |   2 +-
 ssh/locale/id/fusiondirectory.po              |   2 +-
 ssh/locale/it_IT/fusiondirectory.po           |   2 +-
 ssh/locale/ja/fusiondirectory.po              |   2 +-
 ssh/locale/ko/fusiondirectory.po              |   2 +-
 ssh/locale/lv/fusiondirectory.po              |   2 +-
 ssh/locale/nb/fusiondirectory.po              |   2 +-
 ssh/locale/nl/fusiondirectory.po              |   2 +-
 ssh/locale/pl/fusiondirectory.po              |   2 +-
 ssh/locale/pt/fusiondirectory.po              |   2 +-
 ssh/locale/pt_BR/fusiondirectory.po           |   2 +-
 ssh/locale/ru/fusiondirectory.po              |   2 +-
 ssh/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ssh/locale/sv/fusiondirectory.po              |   2 +-
 ssh/locale/tr_TR/fusiondirectory.po           |   2 +-
 ssh/locale/ug/fusiondirectory.po              |   2 +-
 ssh/locale/vi_VN/fusiondirectory.po           |   2 +-
 ssh/locale/zh/fusiondirectory.po              |   2 +-
 ssh/locale/zh_TW/fusiondirectory.po           |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 subcontracting/locale/ar/fusiondirectory.po   |   2 +-
 subcontracting/locale/ca/fusiondirectory.po   |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 subcontracting/locale/de/fusiondirectory.po   |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 subcontracting/locale/en/fusiondirectory.po   |   4 +-
 subcontracting/locale/es/fusiondirectory.po   |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 subcontracting/locale/fr/fusiondirectory.po   |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 subcontracting/locale/id/fusiondirectory.po   |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 subcontracting/locale/ja/fusiondirectory.po   |   2 +-
 subcontracting/locale/ko/fusiondirectory.po   |   2 +-
 subcontracting/locale/lv/fusiondirectory.po   |   2 +-
 subcontracting/locale/nb/fusiondirectory.po   |   2 +-
 subcontracting/locale/nl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pt/fusiondirectory.po   |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ru/fusiondirectory.po   |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 subcontracting/locale/sv/fusiondirectory.po   |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ug/fusiondirectory.po   |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 subcontracting/locale/zh/fusiondirectory.po   |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 sudo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sudo/locale/ar/fusiondirectory.po             |   2 +-
 sudo/locale/ca/fusiondirectory.po             |   2 +-
 sudo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sudo/locale/de/fusiondirectory.po             |   2 +-
 sudo/locale/el_GR/fusiondirectory.po          |   2 +-
 sudo/locale/en/fusiondirectory.po             | 379 ++++++-
 sudo/locale/es/fusiondirectory.po             |   2 +-
 sudo/locale/es_CO/fusiondirectory.po          |   2 +-
 sudo/locale/es_VE/fusiondirectory.po          |   2 +-
 sudo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sudo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sudo/locale/fr/fusiondirectory.po             |   2 +-
 sudo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sudo/locale/id/fusiondirectory.po             |   2 +-
 sudo/locale/it_IT/fusiondirectory.po          |   2 +-
 sudo/locale/ja/fusiondirectory.po             |   2 +-
 sudo/locale/ko/fusiondirectory.po             |   2 +-
 sudo/locale/lv/fusiondirectory.po             |   2 +-
 sudo/locale/nb/fusiondirectory.po             |   2 +-
 sudo/locale/nl/fusiondirectory.po             |   2 +-
 sudo/locale/pl/fusiondirectory.po             |   2 +-
 sudo/locale/pt/fusiondirectory.po             |   2 +-
 sudo/locale/pt_BR/fusiondirectory.po          |   2 +-
 sudo/locale/ru/fusiondirectory.po             |   2 +-
 sudo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sudo/locale/sv/fusiondirectory.po             |   2 +-
 sudo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sudo/locale/ug/fusiondirectory.po             |   2 +-
 sudo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sudo/locale/zh/fusiondirectory.po             |   2 +-
 sudo/locale/zh_TW/fusiondirectory.po          |   2 +-
 supann-ext/locale/en/fusiondirectory.po       |   6 +-
 supann/locale/af_ZA/fusiondirectory.po        |   2 +-
 supann/locale/ar/fusiondirectory.po           |   2 +-
 supann/locale/ca/fusiondirectory.po           |   2 +-
 supann/locale/cs_CZ/fusiondirectory.po        |   2 +-
 supann/locale/de/fusiondirectory.po           |   2 +-
 supann/locale/el_GR/fusiondirectory.po        |   2 +-
 supann/locale/en/fusiondirectory.po           | 682 ++++++-------
 supann/locale/es/fusiondirectory.po           |   2 +-
 supann/locale/es_CO/fusiondirectory.po        |   2 +-
 supann/locale/es_VE/fusiondirectory.po        |   2 +-
 supann/locale/fa_IR/fusiondirectory.po        |   2 +-
 supann/locale/fi_FI/fusiondirectory.po        |   2 +-
 supann/locale/fr/fusiondirectory.po           |   2 +-
 supann/locale/hu_HU/fusiondirectory.po        |   2 +-
 supann/locale/id/fusiondirectory.po           |   2 +-
 supann/locale/it_IT/fusiondirectory.po        |   2 +-
 supann/locale/ja/fusiondirectory.po           |   2 +-
 supann/locale/ko/fusiondirectory.po           | 164 ++--
 supann/locale/lv/fusiondirectory.po           |   2 +-
 supann/locale/nb/fusiondirectory.po           |   2 +-
 supann/locale/nl/fusiondirectory.po           |   2 +-
 supann/locale/pl/fusiondirectory.po           |   2 +-
 supann/locale/pt/fusiondirectory.po           |   2 +-
 supann/locale/pt_BR/fusiondirectory.po        |   2 +-
 supann/locale/ru/fusiondirectory.po           |   2 +-
 supann/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 supann/locale/sv/fusiondirectory.po           |   2 +-
 supann/locale/tr_TR/fusiondirectory.po        |   2 +-
 supann/locale/ug/fusiondirectory.po           |   2 +-
 supann/locale/vi_VN/fusiondirectory.po        |   2 +-
 supann/locale/zh/fusiondirectory.po           |   2 +-
 supann/locale/zh_TW/fusiondirectory.po        |   2 +-
 sympa/locale/af_ZA/fusiondirectory.po         |   2 +-
 sympa/locale/ar/fusiondirectory.po            |   2 +-
 sympa/locale/ca/fusiondirectory.po            |   2 +-
 sympa/locale/cs_CZ/fusiondirectory.po         |   2 +-
 sympa/locale/de/fusiondirectory.po            |   2 +-
 sympa/locale/el_GR/fusiondirectory.po         |   2 +-
 sympa/locale/en/fusiondirectory.po            |  78 +-
 sympa/locale/es/fusiondirectory.po            |   2 +-
 sympa/locale/es_CO/fusiondirectory.po         |   2 +-
 sympa/locale/es_VE/fusiondirectory.po         |   2 +-
 sympa/locale/fa_IR/fusiondirectory.po         |   2 +-
 sympa/locale/fi_FI/fusiondirectory.po         |   2 +-
 sympa/locale/fr/fusiondirectory.po            |   2 +-
 sympa/locale/hu_HU/fusiondirectory.po         |   2 +-
 sympa/locale/id/fusiondirectory.po            |   2 +-
 sympa/locale/it_IT/fusiondirectory.po         |   2 +-
 sympa/locale/ja/fusiondirectory.po            |   2 +-
 sympa/locale/ko/fusiondirectory.po            |   2 +-
 sympa/locale/lv/fusiondirectory.po            |   2 +-
 sympa/locale/nb/fusiondirectory.po            |   2 +-
 sympa/locale/nl/fusiondirectory.po            |   2 +-
 sympa/locale/pl/fusiondirectory.po            |   2 +-
 sympa/locale/pt/fusiondirectory.po            |   2 +-
 sympa/locale/pt_BR/fusiondirectory.po         |   2 +-
 sympa/locale/ru/fusiondirectory.po            |   2 +-
 sympa/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 sympa/locale/sv/fusiondirectory.po            |   2 +-
 sympa/locale/tr_TR/fusiondirectory.po         |   2 +-
 sympa/locale/ug/fusiondirectory.po            |   2 +-
 sympa/locale/vi_VN/fusiondirectory.po         |   2 +-
 sympa/locale/zh/fusiondirectory.po            |   2 +-
 sympa/locale/zh_TW/fusiondirectory.po         |   2 +-
 systems/locale/af_ZA/fusiondirectory.po       |   2 +-
 systems/locale/ar/fusiondirectory.po          |   2 +-
 systems/locale/ca/fusiondirectory.po          |   2 +-
 systems/locale/cs_CZ/fusiondirectory.po       |   2 +-
 systems/locale/de/fusiondirectory.po          |   2 +-
 systems/locale/el_GR/fusiondirectory.po       |   2 +-
 systems/locale/en/fusiondirectory.po          | 923 ++++++++++--------
 systems/locale/es/fusiondirectory.po          |   2 +-
 systems/locale/es_CO/fusiondirectory.po       |   2 +-
 systems/locale/es_VE/fusiondirectory.po       |   2 +-
 systems/locale/fa_IR/fusiondirectory.po       |   2 +-
 systems/locale/fi_FI/fusiondirectory.po       |   2 +-
 systems/locale/fr/fusiondirectory.po          |   2 +-
 systems/locale/hu_HU/fusiondirectory.po       |   2 +-
 systems/locale/id/fusiondirectory.po          |   2 +-
 systems/locale/it_IT/fusiondirectory.po       |   2 +-
 systems/locale/ja/fusiondirectory.po          |   2 +-
 systems/locale/ko/fusiondirectory.po          |   2 +-
 systems/locale/lv/fusiondirectory.po          |   2 +-
 systems/locale/nb/fusiondirectory.po          |   2 +-
 systems/locale/nl/fusiondirectory.po          |   2 +-
 systems/locale/pl/fusiondirectory.po          |   2 +-
 systems/locale/pt/fusiondirectory.po          |   2 +-
 systems/locale/pt_BR/fusiondirectory.po       |   2 +-
 systems/locale/ru/fusiondirectory.po          |   2 +-
 systems/locale/ru@petr1708/fusiondirectory.po |   2 +-
 systems/locale/sv/fusiondirectory.po          |   2 +-
 systems/locale/tr_TR/fusiondirectory.po       |   2 +-
 systems/locale/ug/fusiondirectory.po          |   2 +-
 systems/locale/vi_VN/fusiondirectory.po       |   2 +-
 systems/locale/zh/fusiondirectory.po          |   2 +-
 systems/locale/zh_TW/fusiondirectory.po       |   2 +-
 user-reminder/locale/af_ZA/fusiondirectory.po |   2 +-
 user-reminder/locale/ar/fusiondirectory.po    |   2 +-
 user-reminder/locale/ca/fusiondirectory.po    |   2 +-
 user-reminder/locale/cs_CZ/fusiondirectory.po |   2 +-
 user-reminder/locale/de/fusiondirectory.po    |   2 +-
 user-reminder/locale/el_GR/fusiondirectory.po |   2 +-
 user-reminder/locale/en/fusiondirectory.po    |  99 +-
 user-reminder/locale/es/fusiondirectory.po    |   2 +-
 user-reminder/locale/es_CO/fusiondirectory.po |   2 +-
 user-reminder/locale/es_VE/fusiondirectory.po |   2 +-
 user-reminder/locale/fa_IR/fusiondirectory.po |   2 +-
 user-reminder/locale/fi_FI/fusiondirectory.po |   2 +-
 user-reminder/locale/fr/fusiondirectory.po    |   2 +-
 user-reminder/locale/hu_HU/fusiondirectory.po |   2 +-
 user-reminder/locale/id/fusiondirectory.po    |   2 +-
 user-reminder/locale/it_IT/fusiondirectory.po |   2 +-
 user-reminder/locale/ja/fusiondirectory.po    |   2 +-
 user-reminder/locale/ko/fusiondirectory.po    |   2 +-
 user-reminder/locale/lv/fusiondirectory.po    |   2 +-
 user-reminder/locale/nb/fusiondirectory.po    |   2 +-
 user-reminder/locale/nl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt_BR/fusiondirectory.po |   2 +-
 user-reminder/locale/ru/fusiondirectory.po    |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 user-reminder/locale/sv/fusiondirectory.po    |   2 +-
 user-reminder/locale/tr_TR/fusiondirectory.po |   2 +-
 user-reminder/locale/ug/fusiondirectory.po    |   2 +-
 user-reminder/locale/vi_VN/fusiondirectory.po |   2 +-
 user-reminder/locale/zh/fusiondirectory.po    |   2 +-
 user-reminder/locale/zh_TW/fusiondirectory.po |   2 +-
 weblink/locale/af_ZA/fusiondirectory.po       |   2 +-
 weblink/locale/ar/fusiondirectory.po          |   2 +-
 weblink/locale/ca/fusiondirectory.po          |   2 +-
 weblink/locale/cs_CZ/fusiondirectory.po       |   2 +-
 weblink/locale/de/fusiondirectory.po          |   2 +-
 weblink/locale/el_GR/fusiondirectory.po       |   2 +-
 weblink/locale/en/fusiondirectory.po          |  30 +-
 weblink/locale/es/fusiondirectory.po          |   2 +-
 weblink/locale/es_CO/fusiondirectory.po       |   2 +-
 weblink/locale/es_VE/fusiondirectory.po       |   2 +-
 weblink/locale/fa_IR/fusiondirectory.po       |   2 +-
 weblink/locale/fi_FI/fusiondirectory.po       |   2 +-
 weblink/locale/fr/fusiondirectory.po          |   2 +-
 weblink/locale/hu_HU/fusiondirectory.po       |   2 +-
 weblink/locale/id/fusiondirectory.po          |   2 +-
 weblink/locale/it_IT/fusiondirectory.po       |   2 +-
 weblink/locale/ja/fusiondirectory.po          |   2 +-
 weblink/locale/ko/fusiondirectory.po          |   2 +-
 weblink/locale/lv/fusiondirectory.po          |   2 +-
 weblink/locale/nb/fusiondirectory.po          |   2 +-
 weblink/locale/nl/fusiondirectory.po          |   2 +-
 weblink/locale/pl/fusiondirectory.po          |   2 +-
 weblink/locale/pt/fusiondirectory.po          |   2 +-
 weblink/locale/pt_BR/fusiondirectory.po       |   2 +-
 weblink/locale/ru/fusiondirectory.po          |   2 +-
 weblink/locale/ru@petr1708/fusiondirectory.po |   2 +-
 weblink/locale/sv/fusiondirectory.po          |   2 +-
 weblink/locale/tr_TR/fusiondirectory.po       |   2 +-
 weblink/locale/ug/fusiondirectory.po          |   2 +-
 weblink/locale/vi_VN/fusiondirectory.po       |   2 +-
 weblink/locale/zh/fusiondirectory.po          |   2 +-
 weblink/locale/zh_TW/fusiondirectory.po       |   2 +-
 webservice/locale/af_ZA/fusiondirectory.po    |   2 +-
 webservice/locale/ar/fusiondirectory.po       |   2 +-
 webservice/locale/ca/fusiondirectory.po       |   2 +-
 webservice/locale/cs_CZ/fusiondirectory.po    |   2 +-
 webservice/locale/de/fusiondirectory.po       |   2 +-
 webservice/locale/el_GR/fusiondirectory.po    |   2 +-
 webservice/locale/en/fusiondirectory.po       |  34 +-
 webservice/locale/es/fusiondirectory.po       |   2 +-
 webservice/locale/es_CO/fusiondirectory.po    |   2 +-
 webservice/locale/es_VE/fusiondirectory.po    |   2 +-
 webservice/locale/fa_IR/fusiondirectory.po    |   2 +-
 webservice/locale/fi_FI/fusiondirectory.po    |   2 +-
 webservice/locale/fr/fusiondirectory.po       |   2 +-
 webservice/locale/hu_HU/fusiondirectory.po    |   2 +-
 webservice/locale/id/fusiondirectory.po       |   2 +-
 webservice/locale/it_IT/fusiondirectory.po    |   2 +-
 webservice/locale/ja/fusiondirectory.po       |   2 +-
 webservice/locale/ko/fusiondirectory.po       |   2 +-
 webservice/locale/lv/fusiondirectory.po       |   2 +-
 webservice/locale/nb/fusiondirectory.po       |   2 +-
 webservice/locale/nl/fusiondirectory.po       |   2 +-
 webservice/locale/pl/fusiondirectory.po       |   2 +-
 webservice/locale/pt/fusiondirectory.po       |   2 +-
 webservice/locale/pt_BR/fusiondirectory.po    |   2 +-
 webservice/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 webservice/locale/sv/fusiondirectory.po       |   2 +-
 webservice/locale/tr_TR/fusiondirectory.po    |   2 +-
 webservice/locale/ug/fusiondirectory.po       |   2 +-
 webservice/locale/vi_VN/fusiondirectory.po    |   2 +-
 webservice/locale/zh/fusiondirectory.po       |   2 +-
 webservice/locale/zh_TW/fusiondirectory.po    |   2 +-
 1633 files changed, 6724 insertions(+), 5821 deletions(-)

diff --git a/alias/locale/af_ZA/fusiondirectory.po b/alias/locale/af_ZA/fusiondirectory.po
index ffa66596a4..53f88a2ace 100644
--- a/alias/locale/af_ZA/fusiondirectory.po
+++ b/alias/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po
index 26eb9a35d9..88ac23df0d 100644
--- a/alias/locale/ar/fusiondirectory.po
+++ b/alias/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po
index 52d56b95a2..031582f800 100644
--- a/alias/locale/ca/fusiondirectory.po
+++ b/alias/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po
index 3f42468b59..20f17d466a 100644
--- a/alias/locale/cs_CZ/fusiondirectory.po
+++ b/alias/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po
index 44962468d8..a73e806335 100644
--- a/alias/locale/de/fusiondirectory.po
+++ b/alias/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po
index e9ae5a81dc..15838254bf 100644
--- a/alias/locale/el_GR/fusiondirectory.po
+++ b/alias/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/alias/locale/en/fusiondirectory.po b/alias/locale/en/fusiondirectory.po
index 3b4924e8b0..159d1d4389 100644
--- a/alias/locale/en/fusiondirectory.po
+++ b/alias/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -37,102 +37,102 @@ msgstr ""
 msgid "Branch in which aliases will be stored"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:31
-#: admin/alias/class_mailAliasRedirection.inc:32
-#: admin/alias/class_mailAliasRedirection.inc:35
-msgid "Temporary mail redirection"
+#: admin/alias/class_mailAliasDistribution.inc:31
+#: admin/alias/class_mailAliasDistribution.inc:32
+#: admin/alias/class_mailAliasDistribution.inc:35
+msgid "Temporary mail distribution"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:52
-msgid "Mail redirection"
+#: admin/alias/class_mailAliasDistribution.inc:51
+msgid "Mail distribution"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:55
 #: admin/alias/class_mailAliasDistribution.inc:54
+#: admin/alias/class_mailAliasRedirection.inc:55
 msgid "Name"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:55
-msgid "Name to identify this redirection"
+#: admin/alias/class_mailAliasDistribution.inc:54
+msgid "Name to identify this alias"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:57
 #: admin/alias/class_mailAliasDistribution.inc:56
+#: admin/alias/class_mailAliasRedirection.inc:57
 msgid "Description"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:57
-msgid "Description of this redirection"
+#: admin/alias/class_mailAliasDistribution.inc:56
+msgid "Description of this alias"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:62
-msgid "Redirect from"
+#: admin/alias/class_mailAliasDistribution.inc:60
+msgid "Email address"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:62
-msgid "Mail address from which you want to redirect"
+#: admin/alias/class_mailAliasDistribution.inc:65
+msgid "Email aliases"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:68
-msgid "Redirect to"
+#: admin/alias/class_mailAliasDistribution.inc:65
+msgid "Aliases for this email address"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:68
-msgid "Destination of this redirection"
+#: admin/alias/class_mailAliasDistribution.inc:70
+msgid "Mail server"
 msgstr ""
 
-#: admin/alias/class_mailAliasRedirection.inc:73
-#: admin/alias/class_mailAliasDistribution.inc:75
-msgid "Expiration date"
+#: admin/alias/class_mailAliasDistribution.inc:70
+msgid "Mail server for this alias"
 msgstr ""
 
+#: admin/alias/class_mailAliasDistribution.inc:75
 #: admin/alias/class_mailAliasRedirection.inc:73
-msgid ""
-"Date after which the redirection should be deleted. Leave empty for no "
-"deletion."
+msgid "Expiration date"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:31
-#: admin/alias/class_mailAliasDistribution.inc:32
-#: admin/alias/class_mailAliasDistribution.inc:35
-msgid "Temporary mail distribution"
+#: admin/alias/class_mailAliasDistribution.inc:75
+msgid ""
+"Date after which the alias should be deleted. Leave empty for no deletion."
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:51
-msgid "Mail distribution"
+#: admin/alias/class_mailAliasRedirection.inc:31
+#: admin/alias/class_mailAliasRedirection.inc:32
+#: admin/alias/class_mailAliasRedirection.inc:35
+msgid "Temporary mail redirection"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:54
-msgid "Name to identify this alias"
+#: admin/alias/class_mailAliasRedirection.inc:52
+msgid "Mail redirection"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:56
-msgid "Description of this alias"
+#: admin/alias/class_mailAliasRedirection.inc:55
+msgid "Name to identify this redirection"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:60
-msgid "Email address"
+#: admin/alias/class_mailAliasRedirection.inc:57
+msgid "Description of this redirection"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:65
-msgid "Email aliases"
+#: admin/alias/class_mailAliasRedirection.inc:62
+msgid "Redirect from"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:65
-msgid "Aliases for this email address"
+#: admin/alias/class_mailAliasRedirection.inc:62
+msgid "Mail address from which you want to redirect"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:70
-msgid "Mail server"
+#: admin/alias/class_mailAliasRedirection.inc:68
+msgid "Redirect to"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:70
-msgid "Mail server for this alias"
+#: admin/alias/class_mailAliasRedirection.inc:68
+msgid "Destination of this redirection"
 msgstr ""
 
-#: admin/alias/class_mailAliasDistribution.inc:75
+#: admin/alias/class_mailAliasRedirection.inc:73
 msgid ""
-"Date after which the alias should be deleted. Leave empty for no deletion."
+"Date after which the redirection should be deleted. Leave empty for no "
+"deletion."
 msgstr ""
 
 #: admin/alias/class_aliasManagement.inc:33
diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po
index 94f9b91ef2..b966eafab1 100644
--- a/alias/locale/es/fusiondirectory.po
+++ b/alias/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po
index 38eef9d11c..e6f708b92a 100644
--- a/alias/locale/es_CO/fusiondirectory.po
+++ b/alias/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po
index ac65d768b8..76e08e573c 100644
--- a/alias/locale/es_VE/fusiondirectory.po
+++ b/alias/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po
index 928132de2e..7d0e622064 100644
--- a/alias/locale/fa_IR/fusiondirectory.po
+++ b/alias/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po
index c09f631a21..b00f2a3675 100644
--- a/alias/locale/fi_FI/fusiondirectory.po
+++ b/alias/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po
index 3de4dab394..4991ff0233 100644
--- a/alias/locale/fr/fusiondirectory.po
+++ b/alias/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po
index cd72169dd1..924f4920de 100644
--- a/alias/locale/hu_HU/fusiondirectory.po
+++ b/alias/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po
index 59b7d07824..f7ecb9a2ef 100644
--- a/alias/locale/id/fusiondirectory.po
+++ b/alias/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index 2f0fc642c3..1baaf051a8 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/alias/locale/ja/fusiondirectory.po b/alias/locale/ja/fusiondirectory.po
index 855d091070..2e282cde9e 100644
--- a/alias/locale/ja/fusiondirectory.po
+++ b/alias/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ko/fusiondirectory.po b/alias/locale/ko/fusiondirectory.po
index d29f9bf074..e04c2bd618 100644
--- a/alias/locale/ko/fusiondirectory.po
+++ b/alias/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po
index 322e232d8d..b121be6b3c 100644
--- a/alias/locale/lv/fusiondirectory.po
+++ b/alias/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po
index 942acc2aa9..d7eff3d779 100644
--- a/alias/locale/nb/fusiondirectory.po
+++ b/alias/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po
index c39141d71e..1d0c79f9f0 100644
--- a/alias/locale/nl/fusiondirectory.po
+++ b/alias/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po
index 9b41bc2105..d1c4048b45 100644
--- a/alias/locale/pl/fusiondirectory.po
+++ b/alias/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po
index 37c69c2373..2e226bac82 100644
--- a/alias/locale/pt/fusiondirectory.po
+++ b/alias/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po
index 68b33dae4d..ac7f4cf9ca 100644
--- a/alias/locale/pt_BR/fusiondirectory.po
+++ b/alias/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po
index b5ef51287d..107fe90b84 100644
--- a/alias/locale/ru/fusiondirectory.po
+++ b/alias/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po
index 3f8d7b0aae..26330df1c1 100644
--- a/alias/locale/ru@petr1708/fusiondirectory.po
+++ b/alias/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po
index a6bea6f248..6742af1b94 100644
--- a/alias/locale/sv/fusiondirectory.po
+++ b/alias/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/alias/locale/tr_TR/fusiondirectory.po b/alias/locale/tr_TR/fusiondirectory.po
index 05e4eead38..6382a17de3 100644
--- a/alias/locale/tr_TR/fusiondirectory.po
+++ b/alias/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po
index 17ca77a059..fb83d23bac 100644
--- a/alias/locale/ug/fusiondirectory.po
+++ b/alias/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po
index b61ff2d64f..fe2f65cf1d 100644
--- a/alias/locale/vi_VN/fusiondirectory.po
+++ b/alias/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po
index 3ae771e5a0..3a875f2d18 100644
--- a/alias/locale/zh/fusiondirectory.po
+++ b/alias/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/alias/locale/zh_TW/fusiondirectory.po b/alias/locale/zh_TW/fusiondirectory.po
index 9cce41fcb2..3ea094ae94 100644
--- a/alias/locale/zh_TW/fusiondirectory.po
+++ b/alias/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/af_ZA/fusiondirectory.po b/applications/locale/af_ZA/fusiondirectory.po
index 2ec5c7e1bd..f9a853b31c 100644
--- a/applications/locale/af_ZA/fusiondirectory.po
+++ b/applications/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po
index 847522a898..ff56ff21ff 100644
--- a/applications/locale/ar/fusiondirectory.po
+++ b/applications/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po
index 498f518d67..27a2e57a48 100644
--- a/applications/locale/ca/fusiondirectory.po
+++ b/applications/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po
index 16757274f0..3b4ac384c5 100644
--- a/applications/locale/cs_CZ/fusiondirectory.po
+++ b/applications/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po
index cd5adce55b..eb625564e9 100644
--- a/applications/locale/de/fusiondirectory.po
+++ b/applications/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po
index 6b8f5e5d3b..0b60406d55 100644
--- a/applications/locale/el_GR/fusiondirectory.po
+++ b/applications/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/applications/locale/en/fusiondirectory.po b/applications/locale/en/fusiondirectory.po
index aa67fb3010..f400357df1 100644
--- a/applications/locale/en/fusiondirectory.po
+++ b/applications/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po
index aa9289b74e..4e3f314efd 100644
--- a/applications/locale/es/fusiondirectory.po
+++ b/applications/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po
index f77524eaa9..b0fe1d9dab 100644
--- a/applications/locale/es_CO/fusiondirectory.po
+++ b/applications/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po
index 7145f9ea03..31c8c8cadc 100644
--- a/applications/locale/es_VE/fusiondirectory.po
+++ b/applications/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po
index 4210665696..36f467d44e 100644
--- a/applications/locale/fa_IR/fusiondirectory.po
+++ b/applications/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po
index d8dea2408f..cfc7f4a8c5 100644
--- a/applications/locale/fi_FI/fusiondirectory.po
+++ b/applications/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po
index 5a3adf6519..3c67fd698d 100644
--- a/applications/locale/fr/fusiondirectory.po
+++ b/applications/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po
index 8563d4ab92..447ada575e 100644
--- a/applications/locale/hu_HU/fusiondirectory.po
+++ b/applications/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po
index 0bb24f739c..59014c5f9b 100644
--- a/applications/locale/id/fusiondirectory.po
+++ b/applications/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po
index 900e16f552..876fb47644 100644
--- a/applications/locale/it_IT/fusiondirectory.po
+++ b/applications/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/applications/locale/ja/fusiondirectory.po b/applications/locale/ja/fusiondirectory.po
index 989d08adbe..c0b4dc2982 100644
--- a/applications/locale/ja/fusiondirectory.po
+++ b/applications/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ko/fusiondirectory.po b/applications/locale/ko/fusiondirectory.po
index db1fe32cc1..ad78931a67 100644
--- a/applications/locale/ko/fusiondirectory.po
+++ b/applications/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po
index 511430b7d2..17a2f3382d 100644
--- a/applications/locale/lv/fusiondirectory.po
+++ b/applications/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po
index 799b479870..bae8118401 100644
--- a/applications/locale/nb/fusiondirectory.po
+++ b/applications/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po
index 0979647ec5..4445a26bdc 100644
--- a/applications/locale/nl/fusiondirectory.po
+++ b/applications/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po
index 4328284eb2..46bc7bf117 100644
--- a/applications/locale/pl/fusiondirectory.po
+++ b/applications/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po
index 06ff012e1a..d22ca0da45 100644
--- a/applications/locale/pt/fusiondirectory.po
+++ b/applications/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po
index d03a6d613e..850f0c12f8 100644
--- a/applications/locale/pt_BR/fusiondirectory.po
+++ b/applications/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po
index 2596541dd2..7e2f9bf863 100644
--- a/applications/locale/ru/fusiondirectory.po
+++ b/applications/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po
index 0bce2acbfa..1311759879 100644
--- a/applications/locale/ru@petr1708/fusiondirectory.po
+++ b/applications/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po
index 6570b83347..1ea9f5bcfb 100644
--- a/applications/locale/sv/fusiondirectory.po
+++ b/applications/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/applications/locale/tr_TR/fusiondirectory.po b/applications/locale/tr_TR/fusiondirectory.po
index a32e175f75..d4cb743985 100644
--- a/applications/locale/tr_TR/fusiondirectory.po
+++ b/applications/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po
index cea37d81ce..af29b03367 100644
--- a/applications/locale/ug/fusiondirectory.po
+++ b/applications/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po
index 9b47b0b9e4..44384a875a 100644
--- a/applications/locale/vi_VN/fusiondirectory.po
+++ b/applications/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po
index 716493b309..79d8763167 100644
--- a/applications/locale/zh/fusiondirectory.po
+++ b/applications/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/applications/locale/zh_TW/fusiondirectory.po b/applications/locale/zh_TW/fusiondirectory.po
index 5e66c911e5..5dd91720b9 100644
--- a/applications/locale/zh_TW/fusiondirectory.po
+++ b/applications/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/af_ZA/fusiondirectory.po b/argonaut/locale/af_ZA/fusiondirectory.po
index 3dbfd5be3e..63726b715b 100644
--- a/argonaut/locale/af_ZA/fusiondirectory.po
+++ b/argonaut/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po
index 6b0cbd7fcc..6f27ed2e66 100644
--- a/argonaut/locale/ar/fusiondirectory.po
+++ b/argonaut/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po
index 20b8c0152f..f2b542d652 100644
--- a/argonaut/locale/ca/fusiondirectory.po
+++ b/argonaut/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po
index df969dca41..b335b90358 100644
--- a/argonaut/locale/cs_CZ/fusiondirectory.po
+++ b/argonaut/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po
index 27f12c37bf..f8a668919d 100644
--- a/argonaut/locale/de/fusiondirectory.po
+++ b/argonaut/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po
index c387c2a8de..30306124bc 100644
--- a/argonaut/locale/el_GR/fusiondirectory.po
+++ b/argonaut/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/argonaut/locale/en/fusiondirectory.po b/argonaut/locale/en/fusiondirectory.po
index 303b95180c..3e15664c55 100644
--- a/argonaut/locale/en/fusiondirectory.po
+++ b/argonaut/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -25,783 +25,856 @@ msgstr ""
 msgid "There is no argonaut server configured"
 msgstr ""
 
-#: include/class_supportDaemon.inc:616
+#: include/class_supportDaemon.inc:641
 #, php-format
 msgid "Could not read \"%s\"!"
 msgstr ""
 
-#: include/class_supportDaemon.inc:620
+#: include/class_supportDaemon.inc:645
 #, php-format
 msgid "\"%s\" is not a file!"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:41
-#: addons/argonaut/class_argonautQueue.inc:46
-#: addons/argonaut/class_argonautQueue.inc:49
-msgid "Deployment queue"
+#: addons/argonaut/deploy-list.xml:10
+msgid "List of queued jobs"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:42
-msgid "Provide a mechanism to automatically activate systems"
+#: addons/argonaut/deploy-list.xml:14
+#: addons/argonaut/class_argonautImportFile.inc:185
+#: addons/argonaut/import_events.tpl.c:26
+msgid "Event"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:93
-msgid "Permission"
+#: addons/argonaut/deploy-list.xml:27
+msgid "Target"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:123
-#: addons/argonaut/deploy-list.xml:86 addons/argonaut/deploy-list.xml:136
-msgid "Remove"
+#: addons/argonaut/deploy-list.xml:35
+msgid "Task"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:124
-#, php-format
-msgid "The following jobs couldn't be deleted, they have to be aborted: %s"
+#: addons/argonaut/deploy-list.xml:43
+#: addons/argonaut/class_argonautAction.inc:98
+msgid "Period"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:188
-msgid "Info"
+#: addons/argonaut/deploy-list.xml:51
+#: addons/argonaut/class_argonautAction.inc:53
+#: addons/argonaut/class_argonautAction.inc:73
+msgid "Schedule"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:188
-#, php-format
-msgid "%s"
+#: addons/argonaut/deploy-list.xml:59
+msgid "Status"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:214
-msgid "Error detail"
+#: addons/argonaut/deploy-list.xml:67
+msgid "Actions"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:256
-#: addons/argonaut/class_argonautQueue.inc:340
-#: addons/argonaut/class_filterArgonautEvents.inc:39
-#: addons/argonaut/import_events.tpl.c:32
-msgid "Error"
+#: addons/argonaut/deploy-list.xml:79
+#: addons/argonaut/class_argonautImportFile.inc:97
+#: addons/argonaut/class_argonautImportFile.inc:121
+#: addons/argonaut/class_argonautImportFile.inc:145
+#: addons/argonaut/class_argonautImportFile.inc:157
+msgid "Import"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:256
-#, php-format
-msgid "Cannot update queue entries."
+#: addons/argonaut/deploy-list.xml:86 addons/argonaut/deploy-list.xml:136
+#: addons/argonaut/class_argonautQueue.inc:126
+msgid "Remove"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:324
-msgid "immediately"
+#: addons/argonaut/deploy-list.xml:97 addons/argonaut/deploy-list.xml:144
+msgid "Abort"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:336
-msgid "Waiting"
+#: addons/argonaut/deploy-list.xml:108
+msgid "Execute"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:339
-msgid "Show error"
+#: addons/argonaut/deploy-list.xml:120
+msgid "Process now"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:343
-msgid "Processed"
+#: addons/argonaut/deploy-list.xml:128
+msgid "Retry"
 msgstr ""
 
-#: addons/argonaut/class_argonautQueue.inc:352
-msgid "in progress"
+#: addons/argonaut/class_argonautImportFile.inc:33
+#: addons/argonaut/class_argonautImportFile.inc:36
+msgid "Argonaut task import"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:67
-msgid "Switch off"
+#: addons/argonaut/class_argonautImportFile.inc:34
+msgid "Imports argonaut tasks from CSV file"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:80
-msgid "Reboot"
+#: addons/argonaut/class_argonautImportFile.inc:49
+msgid "Import actions from CSV file"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:84
-msgid "Wake up"
+#: addons/argonaut/class_argonautImportFile.inc:53
+msgid "Import a list of task into argonaut"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:88
-msgid "Software update"
+#: addons/argonaut/class_argonautImportFile.inc:63
+msgid "Upload"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:92
-msgid "(Re)Install"
+#: addons/argonaut/class_argonautImportFile.inc:67
+msgid "Import file"
 msgstr ""
 
-#: addons/argonaut/class_argonautEventTypes.inc:105
-msgid "Refresh slave files (ldap2zone)"
+#: addons/argonaut/class_argonautImportFile.inc:72
+msgid "Imported tasks"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:27
-#: addons/argonaut/class_argonautAction.inc:126
-msgid "Hours"
+#: addons/argonaut/class_argonautImportFile.inc:122
+msgid "Fix the errors in your CSV file first"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:32
-#: addons/argonaut/class_argonautAction.inc:126
-msgid "Minutes"
+#: addons/argonaut/class_argonautImportFile.inc:138
+#: addons/argonaut/class_argonautQueue.inc:246
+msgid "Infrastructure service"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:37
-msgid "Seconds"
+#: addons/argonaut/class_argonautImportFile.inc:145
+#, php-format
+msgid "Import complete: %s events successfully send, %s failed"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:53
-msgid "Date"
+#: addons/argonaut/class_argonautImportFile.inc:157
+msgid "file is empty"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:58
-msgid "Time"
+#: addons/argonaut/class_argonautImportFile.inc:182
+#: addons/argonaut/import_events.tpl.c:23
+msgid "MAC"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:81
-#: addons/argonaut/class_argonautAction.inc:84
+#: addons/argonaut/class_argonautAction.inc:36
+#: addons/argonaut/class_argonautAction.inc:39
 msgid "Argonaut task"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:82
+#: addons/argonaut/class_argonautAction.inc:37
 msgid "Schedule an argonaut task"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:97
-#: addons/argonaut/class_argonautAction.inc:107
-#: addons/argonaut/deploy-list.xml:51
-msgid "Schedule"
+#: addons/argonaut/class_argonautAction.inc:56
+msgid "Action"
+msgstr ""
+
+#: addons/argonaut/class_argonautAction.inc:56
+msgid "The action you are about to schedule"
+msgstr ""
+
+#: addons/argonaut/class_argonautAction.inc:68
+msgid "Scheduled"
+msgstr ""
+
+#: addons/argonaut/class_argonautAction.inc:68
+msgid "Wether this job should be scheduled or ran right away"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:111
+#: addons/argonaut/class_argonautAction.inc:77
 msgid "Periodical job"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:111
+#: addons/argonaut/class_argonautAction.inc:77
 msgid "Wether this job should repeat in time"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:115
+#: addons/argonaut/class_argonautAction.inc:81
 msgid "How often this task should be repeated"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:126
+#: addons/argonaut/class_argonautAction.inc:92
+msgid "Minutes"
+msgstr ""
+
+#: addons/argonaut/class_argonautAction.inc:92
+msgid "Hours"
+msgstr ""
+
+#: addons/argonaut/class_argonautAction.inc:92
 msgid "Days"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:126
+#: addons/argonaut/class_argonautAction.inc:92
 msgid "Weeks"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:126
+#: addons/argonaut/class_argonautAction.inc:92
 msgid "Months"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:132
-#: addons/argonaut/deploy-list.xml:43
-msgid "Period"
-msgstr ""
-
-#: addons/argonaut/class_argonautAction.inc:137
+#: addons/argonaut/class_argonautAction.inc:103
 msgid "Targets"
 msgstr ""
 
-#: addons/argonaut/class_argonautAction.inc:140
+#: addons/argonaut/class_argonautAction.inc:106
 msgid "Targets for this task"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:10
-msgid "List of queued jobs"
+#: addons/argonaut/class_argonautEventTypes.inc:67
+msgid "Switch off"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:14
-#: addons/argonaut/class_argonautImportFile.inc:185
-#: addons/argonaut/import_events.tpl.c:26
-msgid "Event"
+#: addons/argonaut/class_argonautEventTypes.inc:80
+msgid "Reboot"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:27
-msgid "Target"
+#: addons/argonaut/class_argonautEventTypes.inc:84
+msgid "Wake up"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:35
-msgid "Task"
+#: addons/argonaut/class_argonautEventTypes.inc:88
+msgid "Software update"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:59
-msgid "Status"
+#: addons/argonaut/class_argonautEventTypes.inc:92
+msgid "(Re)Install"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:67
-msgid "Actions"
+#: addons/argonaut/class_argonautEventTypes.inc:105
+msgid "Refresh slave files (ldap2zone)"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:79
-#: addons/argonaut/class_argonautImportFile.inc:97
-#: addons/argonaut/class_argonautImportFile.inc:121
-#: addons/argonaut/class_argonautImportFile.inc:145
-#: addons/argonaut/class_argonautImportFile.inc:157
-msgid "Import"
+#: addons/argonaut/class_argonautQueue.inc:42
+#: addons/argonaut/class_argonautQueue.inc:47
+#: addons/argonaut/class_argonautQueue.inc:50
+msgid "Deployment queue"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:97 addons/argonaut/deploy-list.xml:144
-msgid "Abort"
+#: addons/argonaut/class_argonautQueue.inc:43
+msgid "Provide a mechanism to automatically activate systems"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:108
-msgid "Execute"
+#: addons/argonaut/class_argonautQueue.inc:127
+#, php-format
+msgid "The following jobs couldn't be deleted, they have to be aborted: %s"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:120
-msgid "Process now"
+#: addons/argonaut/class_argonautQueue.inc:131
+msgid "Permission"
 msgstr ""
 
-#: addons/argonaut/deploy-list.xml:128
-msgid "View logs"
+#: addons/argonaut/class_argonautQueue.inc:194
+msgid "Info"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:33
-#: addons/argonaut/class_argonautImportFile.inc:36
-msgid "Argonaut task import"
+#: addons/argonaut/class_argonautQueue.inc:194
+#, php-format
+msgid "%s"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:34
-msgid "Imports argonaut tasks from CSV file"
+#: addons/argonaut/class_argonautQueue.inc:216
+msgid "Error detail"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:49
-msgid "Import actions from CSV file"
+#: addons/argonaut/class_argonautQueue.inc:280
+#: addons/argonaut/class_argonautQueue.inc:371
+#: addons/argonaut/class_filterArgonautEvents.inc:39
+#: addons/argonaut/import_events.tpl.c:32
+msgid "Error"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:53
-msgid "Import a list of task into argonaut"
+#: addons/argonaut/class_argonautQueue.inc:280
+#, php-format
+msgid "Cannot update queue entries."
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:63
-msgid "Upload"
+#: addons/argonaut/class_argonautQueue.inc:355
+msgid "immediately"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:67
-msgid "Import file"
+#: addons/argonaut/class_argonautQueue.inc:367
+msgid "Waiting"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:72
-msgid "Imported tasks"
+#: addons/argonaut/class_argonautQueue.inc:370
+msgid "Show error"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:122
-msgid "Fix the errors in your CSV file first"
+#: addons/argonaut/class_argonautQueue.inc:374
+msgid "Processed"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:138
-msgid "Infrastructure service"
+#: addons/argonaut/class_argonautQueue.inc:383
+msgid "in progress"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:145
+#: addons/argonaut/class_filterArgonautEvents.inc:39
 #, php-format
-msgid "Import complete: %s events successfully send, %s failed"
+msgid "Cannot load queue entries: %s"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:157
-msgid "file is empty"
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:31
+msgid "Deployment time frame"
 msgstr ""
 
-#: addons/argonaut/class_argonautImportFile.inc:182
-#: addons/argonaut/import_events.tpl.c:23
-msgid "MAC"
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:32
+msgid "Edit deployment time frame"
 msgstr ""
 
-#: addons/argonaut/class_filterArgonautEvents.inc:39
-#, php-format
-msgid "Cannot load queue entries: %s"
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:44
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:62
+msgid "Time frames"
+msgstr ""
+
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:48
+msgid "Time frames in which deployment is authorized"
+msgstr ""
+
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:52
+msgid "Opening time for this frame as HH:MM"
+msgstr ""
+
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:56
+msgid "->"
+msgstr ""
+
+#: admin/systems/argonaut/class_deploymentTimeframe.inc:56
+msgid "Closing time for this frame as HH:MM"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:117
+#: admin/systems/argonaut/class_argonautClient.inc:127
 msgid "Argonaut client"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:118
+#: admin/systems/argonaut/class_argonautClient.inc:128
 msgid "Edit argonaut client settings"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:131
+#: admin/systems/argonaut/class_argonautClient.inc:141
 msgid "Argonaut client settings"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:134
+#: admin/systems/argonaut/class_argonautClient.inc:144
 msgid "Client port"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:134
+#: admin/systems/argonaut/class_argonautClient.inc:144
 msgid "Port used by argonaut client for JSON-RPC"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:139
-#: admin/systems/services/argonaut/class_argonautServer.inc:61
+#: admin/systems/argonaut/class_argonautClient.inc:149
+#: admin/systems/services/argonaut/class_argonautServer.inc:65
 msgid "Protocol"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:139
-#: admin/systems/services/argonaut/class_argonautServer.inc:61
+#: admin/systems/argonaut/class_argonautClient.inc:149
+#: admin/systems/services/argonaut/class_argonautServer.inc:65
 msgid "Protocol to use for argonaut"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:144
+#: admin/systems/argonaut/class_argonautClient.inc:154
 msgid "WakeOnLan interface"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:144
+#: admin/systems/argonaut/class_argonautClient.inc:154
 msgid "Interface used by argonaut for WakeOnLan"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:149
+#: admin/systems/argonaut/class_argonautClient.inc:159
 msgid "TaskId file"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:149
+#: admin/systems/argonaut/class_argonautClient.inc:159
 msgid "File which argonaut will use to store its task id when booting"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:154
+#: admin/systems/argonaut/class_argonautClient.inc:164
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:72
 #: admin/systems/services/argonaut/class_argonautFuseConfig.inc:55
-#: admin/systems/services/argonaut/class_argonautServer.inc:79
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:71
+#: admin/systems/services/argonaut/class_argonautServer.inc:83
 msgid "Log directory"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:154
+#: admin/systems/argonaut/class_argonautClient.inc:164
 msgid "Directory in which argonaut client should write its logs"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:161
-#: admin/systems/services/argonaut/class_argonautServer.inc:103
+#: admin/systems/argonaut/class_argonautClient.inc:171
+#: admin/systems/services/argonaut/class_argonautServer.inc:107
 msgid "SSL paths"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:164
-#: admin/systems/services/argonaut/class_argonautServer.inc:106
+#: admin/systems/argonaut/class_argonautClient.inc:174
+#: admin/systems/services/argonaut/class_argonautServer.inc:110
 msgid "Key"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:164
+#: admin/systems/argonaut/class_argonautClient.inc:174
 msgid "Path to the private key file on Argonaut client"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:169
-#: admin/systems/services/argonaut/class_argonautServer.inc:111
+#: admin/systems/argonaut/class_argonautClient.inc:179
+#: admin/systems/services/argonaut/class_argonautServer.inc:115
 msgid "Certificate"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:169
+#: admin/systems/argonaut/class_argonautClient.inc:179
 msgid "Path to the certificate file on Argonaut client"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:174
-#: admin/systems/services/argonaut/class_argonautServer.inc:116
+#: admin/systems/argonaut/class_argonautClient.inc:184
+#: admin/systems/services/argonaut/class_argonautServer.inc:120
 msgid "CA certificate"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:174
+#: admin/systems/argonaut/class_argonautClient.inc:184
 msgid "Path to the CA certificate file on Argonaut client"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:179
-#: admin/systems/services/argonaut/class_argonautServer.inc:121
+#: admin/systems/argonaut/class_argonautClient.inc:189
+#: admin/systems/services/argonaut/class_argonautServer.inc:125
 msgid "CN of the certificate"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:179
+#: admin/systems/argonaut/class_argonautClient.inc:189
 msgid "The CN in this client certificate"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:185
+#: admin/systems/argonaut/class_argonautClient.inc:195
 msgid "Service names"
 msgstr ""
 
-#: admin/systems/argonaut/class_argonautClient.inc:187
+#: admin/systems/argonaut/class_argonautClient.inc:197
 msgid "Argonaut service names"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:32
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:33
-msgid "Argonaut Fuse OPSI module settings"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:30
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:31
+msgid "Argonaut Mirror settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:33
-#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:33
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:31
-#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:33
-#: admin/systems/services/argonaut/class_argonautServer.inc:32
-msgid "Services"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:42
+msgid "Argonaut mirror settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:47
-msgid "OPSI"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:45
+msgid "Local Debian mirror directory"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:50
-msgid "Opsi admin"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:53
+msgid "Argonaut Debconf Crawler configuration"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:55
-msgid "Opsi password"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:56
+msgid "Local packages folder"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:60
-msgid "Opsi server"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:57
+msgid "Folder in which the crawler will store packages during analysis"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:65
-msgid "Opsi lang"
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:64
+msgid "Argonaut Repository configuration"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:67
+msgid "Proxy"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:68
+msgid "Specifies the http proxy (like Squid) to use for http and hftp method"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:72
+msgid "Directory in which logs should be stored"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:77
+msgid "Ignore errors"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:78
+msgid ""
+"Causes debmirror to ignore missing or broken deb and source files but still "
+"be pedantic about checking meta files"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:83
+msgid "Source"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:83
+msgid "Include source in the mirror"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:88
+msgid "GPG Check"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:88
+msgid "Fail if the Release.gpg file is missing"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:93
+msgid "Contents"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:94
+msgid ""
+"Additionally download Contents.<arch>.gz files (Note that these files can be "
+"relatively big and can change frequently)"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:99
+msgid "Verbose"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:99
+msgid "Wether to activate verbose mode"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:30
+msgid "Argonaut Fuse"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:32
-#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:33
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:31
+msgid "Argonaut Fuse settings"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:45
+msgid "Basic settings"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:48
+msgid "Default mode"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:56
+msgid "Directory in which argonaut-fuse will store its log"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:64
+msgid "TFTP"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:67
+msgid "Pxelinux cfg path"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:68
+msgid "Path where argonaut-fuse should store pxelinux.cfg"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:30
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:31
 msgid "Argonaut Fuse FAI module settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:47
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:42
 msgid "FAI"
 msgstr ""
 
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:45
+msgid "FAI version"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:45
+msgid "Version of FAI installed on the server"
+msgstr ""
+
 #: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:50
-msgid "Fai flags"
+msgid "FAI flags"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:57
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:50
+msgid "Flags to pass to FAI"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:55
 msgid "NFS root"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:30
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:60
+msgid "FAI 4 command line"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:60
+msgid ""
+"Command line for FAI 4 - should be \"ip=dhcp root=/dev/nfs boot=live "
+"union=aufs\""
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:65
+msgid "FAI 5 command line"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:65
+msgid "Command line for FAI 5 - should be \"ip=dhcp rootovl\""
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:70
+msgid "Multiple distro mode"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc:70
+msgid ""
+"This enables a mode for multiple distributions usage which adds the release "
+"as a suffix to kernel, initrd and nfsroot in the PXE file"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:32
+#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:33
+msgid "Argonaut Fuse LTSP module settings"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:33
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:32
+#: admin/systems/services/argonaut/class_argonautServer.inc:36
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:33
+msgid "Services"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:47
+msgid "LTSP"
+msgstr ""
+
+#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:50
+msgid "LTSP server"
+msgstr ""
+
 #: admin/systems/services/argonaut/class_argonautDNSConfig.inc:31
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:32
 msgid "Argonaut DNS settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:50
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:51
 msgid "Ldap2zone global settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:53
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:54
 msgid "Bind directory"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:53
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:54
 msgid "The directory in which conf file must be created"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:58
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:59
 msgid "Bind cache directory"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:58
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:59
 msgid "The directory in which zone files must be created"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:63
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:64
 msgid "TTL"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:64
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:65
 msgid "Time to live"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:72
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:73
 msgid "rndc path"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:73
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:74
 msgid "path to rndc binary"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:79
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:80
 msgid "Search base"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:79
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:80
 msgid ""
 "LDAP base in which ldap2zone should search. Only usefull if you got several "
 "nodes for the same zone."
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:85
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:86
 msgid "Ldap2zone master settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:88
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:89
 msgid "Ignore reverse zone"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:88
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:89
 msgid "Do not write reverse zone"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:92
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:93
 msgid "Notify"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:97
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:98
 msgid "Allow update"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:97
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:98
 msgid "Allow update (semicolon separated and ended)"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:101
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:102
 msgid "Allow transfer"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:101
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:102
 msgid "Allow transfer (semicolon separated and ended)"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:105
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:106
 msgid "Check names"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:105
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:106
 msgid ""
 "Cause any host name for the zone to be checked for compliance with RFC 952 "
 "and RFC 1123 and take the defined action"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:112
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:113
 msgid "Ldap2zone slave settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:117
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:118
 msgid "Manage DNS Slaves"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:121
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:122
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:160
 msgid "zone"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:121
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:122
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:160
 msgid "DNS zone this server should be declared as slave of"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:125
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:126
 msgid "master"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:125
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:126
 msgid "Master IP(s) for this zone"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:129
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:130
 msgid "reverses"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:129
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:130
 msgid "This server should be slave of reverses zones as well"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:136
+#: admin/systems/services/argonaut/class_argonautDNSConfig.inc:137
 msgid "DNS slaves"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:32
-#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:33
-msgid "Argonaut Fuse LTSP module settings"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:47
-msgid "LTSP"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc:50
-msgid "LTSP server"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:30
-msgid "Argonaut Fuse"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:31
-msgid "Argonaut Fuse settings"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:45
-msgid "Basic settings"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:48
-msgid "Default mode"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:56
-msgid "Directory in which argonaut-fuse will store its log"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:64
-msgid "TFTP"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:67
-msgid "Pxelinux cfg path"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautFuseConfig.inc:68
-msgid "Path where argonaut-fuse should store pxelinux.cfg"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautServer.inc:31
-#: admin/systems/services/argonaut/class_argonautServer.inc:32
-#: admin/systems/services/argonaut/class_argonautServer.inc:46
+#: admin/systems/services/argonaut/class_argonautServer.inc:35
+#: admin/systems/services/argonaut/class_argonautServer.inc:36
+#: admin/systems/services/argonaut/class_argonautServer.inc:50
 msgid "Argonaut server"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:49
+#: admin/systems/services/argonaut/class_argonautServer.inc:53
 msgid "Delete finished tasks"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:50
+#: admin/systems/services/argonaut/class_argonautServer.inc:54
 msgid "Wether or not argonaut server should delete successfully finished tasks"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:55
+#: admin/systems/services/argonaut/class_argonautServer.inc:59
 msgid "Get packages information"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:56
+#: admin/systems/services/argonaut/class_argonautServer.inc:60
 msgid ""
 "Wether or not argonaut server should get packages information from "
 "repositories at start and then once a day. Needed for FAI package list "
 "creation."
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:66
+#: admin/systems/services/argonaut/class_argonautServer.inc:70
 msgid "Port"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:67
+#: admin/systems/services/argonaut/class_argonautServer.inc:71
 msgid "Port on which the argonaut server will be listening"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:72
+#: admin/systems/services/argonaut/class_argonautServer.inc:76
 msgid "Timeout"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:73
+#: admin/systems/services/argonaut/class_argonautServer.inc:77
 msgid "Time in seconds before to consider an argonaut client or server as down"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:80
+#: admin/systems/services/argonaut/class_argonautServer.inc:84
 msgid "Directory in which argonaut will store its log"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:87
+#: admin/systems/services/argonaut/class_argonautServer.inc:91
 msgid "Wake on lan"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:90
+#: admin/systems/services/argonaut/class_argonautServer.inc:94
 msgid "Interface"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:91
+#: admin/systems/services/argonaut/class_argonautServer.inc:95
 msgid "Interface to use for sending WakeOnLan requests"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:96
+#: admin/systems/services/argonaut/class_argonautServer.inc:100
 msgid "IP tool"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:96
+#: admin/systems/services/argonaut/class_argonautServer.inc:100
 msgid "IP tool to use"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:106
+#: admin/systems/services/argonaut/class_argonautServer.inc:110
 msgid "Path to the private key file on Argonaut server"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:111
+#: admin/systems/services/argonaut/class_argonautServer.inc:115
 msgid "Path to the certificate file on Argonaut server"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:116
+#: admin/systems/services/argonaut/class_argonautServer.inc:120
 msgid "Path to the CA certificate file on Argonaut server"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautServer.inc:121
+#: admin/systems/services/argonaut/class_argonautServer.inc:125
 msgid "The CN in the server certificate"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:29
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:30
-msgid "Argonaut Mirror settings"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:41
-msgid "Argonaut mirror settings"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:44
-msgid "Local Debian mirror directory"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:52
-msgid "Argonaut Debconf Crawler configuration"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:55
-msgid "Local packages folder"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:56
-msgid "Folder in which the crawler will store packages during analysis"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:63
-msgid "Argonaut Repository configuration"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:66
-msgid "Proxy"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:67
-msgid "Specifies the http proxy (like Squid) to use for http and hftp method"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:71
-msgid "Directory in which logs should be stored"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:76
-msgid "Ignore errors"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:77
-msgid ""
-"Causes debmirror to ignore missing or broken deb and source files but still "
-"be pedantic about checking meta files"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:82
-msgid "Source"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:82
-msgid "Include source in the mirror"
-msgstr ""
-
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:87
-msgid "GPG Check"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:32
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:33
+msgid "Argonaut Fuse OPSI module settings"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:87
-msgid "Fail if the Release.gpg file is missing"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:47
+msgid "OPSI"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:92
-msgid "Contents"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:50
+msgid "Opsi admin"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:93
-msgid ""
-"Additionally download Contents.<arch>.gz files (Note that these files can be "
-"relatively big and can change frequently)"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:55
+msgid "Opsi password"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:98
-msgid "Verbose"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:60
+msgid "Opsi server"
 msgstr ""
 
-#: admin/systems/services/argonaut/class_argonautMirrorConfig.inc:98
-msgid "Wether to activate verbose mode"
+#: admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc:65
+msgid "Opsi lang"
 msgstr ""
 
 #: addons/argonaut/import_events.tpl.c:2
diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po
index 39d262161d..2688f57e1b 100644
--- a/argonaut/locale/es/fusiondirectory.po
+++ b/argonaut/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po
index e68cc58876..ba80deebb3 100644
--- a/argonaut/locale/es_CO/fusiondirectory.po
+++ b/argonaut/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po
index 46b9e0b200..e14f940cb9 100644
--- a/argonaut/locale/es_VE/fusiondirectory.po
+++ b/argonaut/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po
index db891896a3..2b971783e9 100644
--- a/argonaut/locale/fa_IR/fusiondirectory.po
+++ b/argonaut/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po
index 5a3b3e1f54..fa696c730c 100644
--- a/argonaut/locale/fi_FI/fusiondirectory.po
+++ b/argonaut/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po
index acf93cc931..73ca625def 100644
--- a/argonaut/locale/fr/fusiondirectory.po
+++ b/argonaut/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po
index 453f67816a..9ccdd447a1 100644
--- a/argonaut/locale/hu_HU/fusiondirectory.po
+++ b/argonaut/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po
index 5028bacbb0..fb368216b2 100644
--- a/argonaut/locale/id/fusiondirectory.po
+++ b/argonaut/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index 7eb2b555bf..ba24d0f990 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/argonaut/locale/ja/fusiondirectory.po b/argonaut/locale/ja/fusiondirectory.po
index d72802db71..1d5319c945 100644
--- a/argonaut/locale/ja/fusiondirectory.po
+++ b/argonaut/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ko/fusiondirectory.po b/argonaut/locale/ko/fusiondirectory.po
index 3e31d89417..4e643a9825 100644
--- a/argonaut/locale/ko/fusiondirectory.po
+++ b/argonaut/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po
index 080ad18a32..b97a862b2c 100644
--- a/argonaut/locale/lv/fusiondirectory.po
+++ b/argonaut/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po
index 82dba7192a..3c16bb7bbf 100644
--- a/argonaut/locale/nb/fusiondirectory.po
+++ b/argonaut/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po
index a5801021e7..9d1c7a24e8 100644
--- a/argonaut/locale/nl/fusiondirectory.po
+++ b/argonaut/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po
index 5f95595bfc..3d212b1237 100644
--- a/argonaut/locale/pl/fusiondirectory.po
+++ b/argonaut/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po
index bad5dee9ba..cdea530535 100644
--- a/argonaut/locale/pt/fusiondirectory.po
+++ b/argonaut/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po
index f90b0ac07c..68fbc746f0 100644
--- a/argonaut/locale/pt_BR/fusiondirectory.po
+++ b/argonaut/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po
index 228615b940..cd476824ac 100644
--- a/argonaut/locale/ru/fusiondirectory.po
+++ b/argonaut/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po
index 8d23f96d8a..acb63a6d14 100644
--- a/argonaut/locale/ru@petr1708/fusiondirectory.po
+++ b/argonaut/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po
index 1b204e05a4..0ac61fe87c 100644
--- a/argonaut/locale/sv/fusiondirectory.po
+++ b/argonaut/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/argonaut/locale/tr_TR/fusiondirectory.po b/argonaut/locale/tr_TR/fusiondirectory.po
index 76b81126d2..d6bd83ac11 100644
--- a/argonaut/locale/tr_TR/fusiondirectory.po
+++ b/argonaut/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po
index b0a5b119ce..77f7f7e3b4 100644
--- a/argonaut/locale/ug/fusiondirectory.po
+++ b/argonaut/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po
index 4a62ee5353..a387f7cece 100644
--- a/argonaut/locale/vi_VN/fusiondirectory.po
+++ b/argonaut/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po
index 66bfcb80a0..f8e868d72c 100644
--- a/argonaut/locale/zh/fusiondirectory.po
+++ b/argonaut/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/argonaut/locale/zh_TW/fusiondirectory.po b/argonaut/locale/zh_TW/fusiondirectory.po
index 2fb6061aa5..3a5174420b 100644
--- a/argonaut/locale/zh_TW/fusiondirectory.po
+++ b/argonaut/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/af_ZA/fusiondirectory.po b/audit/locale/af_ZA/fusiondirectory.po
index afbf23f669..2ff08b00db 100644
--- a/audit/locale/af_ZA/fusiondirectory.po
+++ b/audit/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po
index eddf29017b..62d453af8d 100644
--- a/audit/locale/ar/fusiondirectory.po
+++ b/audit/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po
index 9648d5262c..1bf5a48d86 100644
--- a/audit/locale/ca/fusiondirectory.po
+++ b/audit/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po
index 9e7121b3b6..316ce62470 100644
--- a/audit/locale/cs_CZ/fusiondirectory.po
+++ b/audit/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po
index b9ded6cf6f..ef8e58a4cb 100644
--- a/audit/locale/de/fusiondirectory.po
+++ b/audit/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po
index dc1087810e..85a4d2b236 100644
--- a/audit/locale/el_GR/fusiondirectory.po
+++ b/audit/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/audit/locale/en/fusiondirectory.po b/audit/locale/en/fusiondirectory.po
index 6e05710de1..cdd53c5fb8 100644
--- a/audit/locale/en/fusiondirectory.po
+++ b/audit/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -26,7 +26,7 @@ msgid "FusionDirectory audit plugin configuration"
 msgstr ""
 
 #: config/audit/class_auditConfig.inc:41
-#: admin/audit/class_auditManagement.inc:40
+#: admin/audit/class_auditManagement.inc:41
 msgid "Audit"
 msgstr ""
 
@@ -54,81 +54,98 @@ msgstr ""
 msgid "Number of days of audit to keep in the LDAP when cleaning"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:53 admin/audit/class_auditEvent.inc:56
+#: admin/audit/class_auditEvent.inc:43
+#, php-format
+msgid "Unknown user: %s"
+msgstr ""
+
+#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:54
+#: admin/audit/class_auditEvent.inc:58
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:72
+#: admin/audit/class_auditEvent.inc:76
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:75
-#: admin/audit/class_auditManagement.inc:69
+#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:75
+#: admin/audit/class_auditEvent.inc:80
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:78
-#: admin/audit/class_auditManagement.inc:83
+#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:78
+#: admin/audit/class_auditEvent.inc:83
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:79
-#: admin/audit/class_auditManagement.inc:76
+#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:79
+#: admin/audit/class_auditEvent.inc:84
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:85
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:81
+#: admin/audit/class_auditEvent.inc:86
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:81
+#: admin/audit/class_auditEvent.inc:86
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:82
+#: admin/audit/class_auditEvent.inc:87
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:82
+#: admin/audit/class_auditEvent.inc:87
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:88
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:88
 msgid "Result or error"
 msgstr ""
 
-#: admin/audit/class_auditManagement.inc:41
+#: admin/audit/class_auditManagement.inc:42
 msgid "Audit events display"
 msgstr ""
 
-#: admin/audit/class_auditManagement.inc:90
+#: admin/audit/class_auditManagement.inc:132
 msgid "Type"
 msgstr ""
 
-#: admin/audit/class_auditManagement.inc:97
+#: admin/audit/class_auditManagement.inc:139
 msgid "Target"
 msgstr ""
+
+#: admin/audit/class_auditManagement.inc:157
+msgid "Newer than"
+msgstr ""
+
+#: admin/audit/class_auditManagement.inc:161
+msgid "Older than"
+msgstr ""
+
+#: admin/audit/audit-filter.tpl.c:2
+msgid "Filter"
+msgstr ""
diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po
index 63e52c143d..6bc0df44b1 100644
--- a/audit/locale/es/fusiondirectory.po
+++ b/audit/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po
index 7728e89c2a..9bc8f25762 100644
--- a/audit/locale/es_CO/fusiondirectory.po
+++ b/audit/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po
index 8f9dbc9dba..04d6163d0a 100644
--- a/audit/locale/es_VE/fusiondirectory.po
+++ b/audit/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po
index 6c7e7088a5..68be370489 100644
--- a/audit/locale/fa_IR/fusiondirectory.po
+++ b/audit/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po
index ebb00a9325..c20db7bab5 100644
--- a/audit/locale/fi_FI/fusiondirectory.po
+++ b/audit/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po
index e203172b1d..551495e303 100644
--- a/audit/locale/fr/fusiondirectory.po
+++ b/audit/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po
index 43c6a6f2b3..876f386fec 100644
--- a/audit/locale/hu_HU/fusiondirectory.po
+++ b/audit/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po
index d1aaba37ff..bab448dc87 100644
--- a/audit/locale/id/fusiondirectory.po
+++ b/audit/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index e0019bcf7a..f6710c8b3f 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/audit/locale/ja/fusiondirectory.po b/audit/locale/ja/fusiondirectory.po
index 7e787669d0..cf564c6abe 100644
--- a/audit/locale/ja/fusiondirectory.po
+++ b/audit/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ko/fusiondirectory.po b/audit/locale/ko/fusiondirectory.po
index 39daab7bae..12df58aab8 100644
--- a/audit/locale/ko/fusiondirectory.po
+++ b/audit/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po
index a9d33a917a..a76c181bfb 100644
--- a/audit/locale/lv/fusiondirectory.po
+++ b/audit/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po
index 3f860fd8a5..881e661be0 100644
--- a/audit/locale/nb/fusiondirectory.po
+++ b/audit/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po
index ad6b9ec0b7..794c963ee0 100644
--- a/audit/locale/nl/fusiondirectory.po
+++ b/audit/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po
index fc6884b82c..5512db0bbd 100644
--- a/audit/locale/pl/fusiondirectory.po
+++ b/audit/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po
index 8eb14595fe..675188ba1e 100644
--- a/audit/locale/pt/fusiondirectory.po
+++ b/audit/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po
index 3c7f05a053..7fac2d23ba 100644
--- a/audit/locale/pt_BR/fusiondirectory.po
+++ b/audit/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po
index 07a1ccd649..48f6bf2a1f 100644
--- a/audit/locale/ru/fusiondirectory.po
+++ b/audit/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po
index b58d0efbd6..a494897a8b 100644
--- a/audit/locale/ru@petr1708/fusiondirectory.po
+++ b/audit/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po
index 2472834446..0e64646f32 100644
--- a/audit/locale/sv/fusiondirectory.po
+++ b/audit/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/audit/locale/tr_TR/fusiondirectory.po b/audit/locale/tr_TR/fusiondirectory.po
index e5daf09b06..2b95edd353 100644
--- a/audit/locale/tr_TR/fusiondirectory.po
+++ b/audit/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po
index aa9923232f..b5d5f73ef8 100644
--- a/audit/locale/ug/fusiondirectory.po
+++ b/audit/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po
index e8b3b178b0..bd72a8f677 100644
--- a/audit/locale/vi_VN/fusiondirectory.po
+++ b/audit/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po
index b37d3e5bc8..0e197b8ece 100644
--- a/audit/locale/zh/fusiondirectory.po
+++ b/audit/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/audit/locale/zh_TW/fusiondirectory.po b/audit/locale/zh_TW/fusiondirectory.po
index fb570fac6f..8055b5f48b 100644
--- a/audit/locale/zh_TW/fusiondirectory.po
+++ b/audit/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/af_ZA/fusiondirectory.po b/autofs/locale/af_ZA/fusiondirectory.po
index dc097be20f..b67cc47110 100644
--- a/autofs/locale/af_ZA/fusiondirectory.po
+++ b/autofs/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po
index 1a637d2c86..89eef72714 100644
--- a/autofs/locale/ar/fusiondirectory.po
+++ b/autofs/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po
index c764f7d4d6..0a422321e4 100644
--- a/autofs/locale/ca/fusiondirectory.po
+++ b/autofs/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po
index 9dc76a9e54..1812154088 100644
--- a/autofs/locale/cs_CZ/fusiondirectory.po
+++ b/autofs/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po
index 0d005ef109..72a2a2dd98 100644
--- a/autofs/locale/de/fusiondirectory.po
+++ b/autofs/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po
index 448f1903f7..41a3a6722e 100644
--- a/autofs/locale/el_GR/fusiondirectory.po
+++ b/autofs/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/autofs/locale/en/fusiondirectory.po b/autofs/locale/en/fusiondirectory.po
index a7157485f6..cfedc3fa74 100644
--- a/autofs/locale/en/fusiondirectory.po
+++ b/autofs/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -37,15 +37,36 @@ msgstr ""
 msgid "Branch in which automount info will be stored"
 msgstr ""
 
-#: admin/autofs/class_nisObject.inc:31 admin/autofs/class_nisObject.inc:32
-#: admin/autofs/class_nisObject.inc:34 admin/autofs/class_nisObject.inc:54
-msgid "Directory"
+#: admin/autofs/class_autofsManagement.inc:31
+msgid "Auto fs"
+msgstr ""
+
+#: admin/autofs/class_autofsManagement.inc:32
+msgid "Auto fs management"
+msgstr ""
+
+#: admin/autofs/class_nisMap.inc:31 admin/autofs/class_nisMap.inc:34
+#: admin/autofs/class_nisMap.inc:49 admin/autofs/class_nisObject.inc:68
+msgid "Mount point"
+msgstr ""
+
+#: admin/autofs/class_nisMap.inc:32
+msgid "Autofs mount point"
 msgstr ""
 
-#: admin/autofs/class_nisObject.inc:58 admin/autofs/class_nisMap.inc:53
+#: admin/autofs/class_nisMap.inc:53 admin/autofs/class_nisObject.inc:58
 msgid "Name"
 msgstr ""
 
+#: admin/autofs/class_nisMap.inc:53
+msgid "Name of the mount point"
+msgstr ""
+
+#: admin/autofs/class_nisObject.inc:31 admin/autofs/class_nisObject.inc:32
+#: admin/autofs/class_nisObject.inc:34 admin/autofs/class_nisObject.inc:54
+msgid "Directory"
+msgstr ""
+
 #: admin/autofs/class_nisObject.inc:58
 msgid "Name of this directory"
 msgstr ""
@@ -60,27 +81,6 @@ msgid ""
 " For instance 'auto.u' or '-fstype=nfs domaine.tld:/mount/directory'"
 msgstr ""
 
-#: admin/autofs/class_nisObject.inc:68 admin/autofs/class_nisMap.inc:31
-#: admin/autofs/class_nisMap.inc:34 admin/autofs/class_nisMap.inc:49
-msgid "Mount point"
-msgstr ""
-
 #: admin/autofs/class_nisObject.inc:68
 msgid "The mount point this directory will be placed in"
 msgstr ""
-
-#: admin/autofs/class_autofsManagement.inc:31
-msgid "Auto fs"
-msgstr ""
-
-#: admin/autofs/class_autofsManagement.inc:32
-msgid "Auto fs management"
-msgstr ""
-
-#: admin/autofs/class_nisMap.inc:32
-msgid "Autofs mount point"
-msgstr ""
-
-#: admin/autofs/class_nisMap.inc:53
-msgid "Name of the mount point"
-msgstr ""
diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po
index d3502cc889..c51ab0602f 100644
--- a/autofs/locale/es/fusiondirectory.po
+++ b/autofs/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po
index a45f275a3a..421b6eb24a 100644
--- a/autofs/locale/es_CO/fusiondirectory.po
+++ b/autofs/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po
index d8a2dcb19c..39f55b2fa2 100644
--- a/autofs/locale/es_VE/fusiondirectory.po
+++ b/autofs/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po
index 174bdf1365..7aae7104be 100644
--- a/autofs/locale/fa_IR/fusiondirectory.po
+++ b/autofs/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po
index 936338596f..187cf2ae3e 100644
--- a/autofs/locale/fi_FI/fusiondirectory.po
+++ b/autofs/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po
index 4a10409447..71e5739b02 100644
--- a/autofs/locale/fr/fusiondirectory.po
+++ b/autofs/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po
index 9689b03a61..6ad363602c 100644
--- a/autofs/locale/hu_HU/fusiondirectory.po
+++ b/autofs/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po
index 643cb7962d..66cd06503c 100644
--- a/autofs/locale/id/fusiondirectory.po
+++ b/autofs/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po
index 218878ede3..f763a697e0 100644
--- a/autofs/locale/it_IT/fusiondirectory.po
+++ b/autofs/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/autofs/locale/ja/fusiondirectory.po b/autofs/locale/ja/fusiondirectory.po
index d5213f5775..42d55b569c 100644
--- a/autofs/locale/ja/fusiondirectory.po
+++ b/autofs/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ko/fusiondirectory.po b/autofs/locale/ko/fusiondirectory.po
index 828d9f4a11..00a782ee01 100644
--- a/autofs/locale/ko/fusiondirectory.po
+++ b/autofs/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po
index 32e8ab4afc..8d10710561 100644
--- a/autofs/locale/lv/fusiondirectory.po
+++ b/autofs/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po
index 01a13bd802..04850e5dfd 100644
--- a/autofs/locale/nb/fusiondirectory.po
+++ b/autofs/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po
index d971204643..223d2cdb95 100644
--- a/autofs/locale/nl/fusiondirectory.po
+++ b/autofs/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po
index debc728739..aad1a73bfb 100644
--- a/autofs/locale/pl/fusiondirectory.po
+++ b/autofs/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po
index 996e626400..ecc2220e9f 100644
--- a/autofs/locale/pt/fusiondirectory.po
+++ b/autofs/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po
index bcf4c0d929..416ea8fa6a 100644
--- a/autofs/locale/pt_BR/fusiondirectory.po
+++ b/autofs/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po
index 03417f304b..ae01bfdaec 100644
--- a/autofs/locale/ru/fusiondirectory.po
+++ b/autofs/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po
index 20749feca5..96b719fd73 100644
--- a/autofs/locale/ru@petr1708/fusiondirectory.po
+++ b/autofs/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po
index df3b4d6d21..90a1333210 100644
--- a/autofs/locale/sv/fusiondirectory.po
+++ b/autofs/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/autofs/locale/tr_TR/fusiondirectory.po b/autofs/locale/tr_TR/fusiondirectory.po
index 714e790c15..b805063ab8 100644
--- a/autofs/locale/tr_TR/fusiondirectory.po
+++ b/autofs/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po
index 1e6a099a1a..93d4e1957d 100644
--- a/autofs/locale/ug/fusiondirectory.po
+++ b/autofs/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po
index 3f40a50de2..edd27318ad 100644
--- a/autofs/locale/vi_VN/fusiondirectory.po
+++ b/autofs/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po
index fc54bca972..0ddefdc33c 100644
--- a/autofs/locale/zh/fusiondirectory.po
+++ b/autofs/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/autofs/locale/zh_TW/fusiondirectory.po b/autofs/locale/zh_TW/fusiondirectory.po
index 7c9cd880cd..3e0fb562ba 100644
--- a/autofs/locale/zh_TW/fusiondirectory.po
+++ b/autofs/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/af_ZA/fusiondirectory.po b/certificates/locale/af_ZA/fusiondirectory.po
index a3429e3c67..443642521f 100644
--- a/certificates/locale/af_ZA/fusiondirectory.po
+++ b/certificates/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po
index 89a0be4462..6bef3a0e22 100644
--- a/certificates/locale/ar/fusiondirectory.po
+++ b/certificates/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po
index 45011dc7e1..b3c4278480 100644
--- a/certificates/locale/ca/fusiondirectory.po
+++ b/certificates/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po
index 6de8b11c9e..97ade65d5f 100644
--- a/certificates/locale/cs_CZ/fusiondirectory.po
+++ b/certificates/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po
index 7d4f3d1ba6..d73f6975e6 100644
--- a/certificates/locale/de/fusiondirectory.po
+++ b/certificates/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po
index 16ce741201..36dbecc2a3 100644
--- a/certificates/locale/el_GR/fusiondirectory.po
+++ b/certificates/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/certificates/locale/en/fusiondirectory.po b/certificates/locale/en/fusiondirectory.po
index 2a496bb17a..dcb5738c8c 100644
--- a/certificates/locale/en/fusiondirectory.po
+++ b/certificates/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po
index 43d16c2dc0..4fe74a4532 100644
--- a/certificates/locale/es/fusiondirectory.po
+++ b/certificates/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po
index 7c39eec9fc..dc1a934f8d 100644
--- a/certificates/locale/es_CO/fusiondirectory.po
+++ b/certificates/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po
index 4e4f25c518..e6b72824ad 100644
--- a/certificates/locale/es_VE/fusiondirectory.po
+++ b/certificates/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po
index a292216355..525039ec79 100644
--- a/certificates/locale/fa_IR/fusiondirectory.po
+++ b/certificates/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po
index fa35c59681..5c876c5d10 100644
--- a/certificates/locale/fi_FI/fusiondirectory.po
+++ b/certificates/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po
index b49b2dbbe5..f62eb54140 100644
--- a/certificates/locale/fr/fusiondirectory.po
+++ b/certificates/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po
index 3ee72cb01b..95f6db1a7c 100644
--- a/certificates/locale/hu_HU/fusiondirectory.po
+++ b/certificates/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po
index b043be2b46..f75586bcf2 100644
--- a/certificates/locale/id/fusiondirectory.po
+++ b/certificates/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po
index 1c24ad2f63..2d27a09611 100644
--- a/certificates/locale/it_IT/fusiondirectory.po
+++ b/certificates/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/certificates/locale/ja/fusiondirectory.po b/certificates/locale/ja/fusiondirectory.po
index 5eaebecfcd..c7a21205cf 100644
--- a/certificates/locale/ja/fusiondirectory.po
+++ b/certificates/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ko/fusiondirectory.po b/certificates/locale/ko/fusiondirectory.po
index 36f1c22ee0..8de3a6d4e3 100644
--- a/certificates/locale/ko/fusiondirectory.po
+++ b/certificates/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po
index d0509c9679..b8b64f2cca 100644
--- a/certificates/locale/lv/fusiondirectory.po
+++ b/certificates/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po
index bdc0062433..22e379b00b 100644
--- a/certificates/locale/nb/fusiondirectory.po
+++ b/certificates/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po
index 36e6cf15a8..0c68ab8f02 100644
--- a/certificates/locale/nl/fusiondirectory.po
+++ b/certificates/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po
index c3fe7874bd..d7615cee67 100644
--- a/certificates/locale/pl/fusiondirectory.po
+++ b/certificates/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po
index 8a3ae02a1f..7163571c74 100644
--- a/certificates/locale/pt/fusiondirectory.po
+++ b/certificates/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po
index 45046b7144..b39351991a 100644
--- a/certificates/locale/pt_BR/fusiondirectory.po
+++ b/certificates/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po
index aa0bd28674..ee8878634d 100644
--- a/certificates/locale/ru/fusiondirectory.po
+++ b/certificates/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po
index eb4b31496b..0dcc76d927 100644
--- a/certificates/locale/ru@petr1708/fusiondirectory.po
+++ b/certificates/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po
index b8cbefd570..bfc8b9b472 100644
--- a/certificates/locale/sv/fusiondirectory.po
+++ b/certificates/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/certificates/locale/tr_TR/fusiondirectory.po b/certificates/locale/tr_TR/fusiondirectory.po
index 3267401804..cbf8e73faa 100644
--- a/certificates/locale/tr_TR/fusiondirectory.po
+++ b/certificates/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po
index daa28d1a79..fa2bb8154f 100644
--- a/certificates/locale/ug/fusiondirectory.po
+++ b/certificates/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po
index 611255463a..79507d9679 100644
--- a/certificates/locale/vi_VN/fusiondirectory.po
+++ b/certificates/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po
index bd7c5f0ca9..c546e77ab5 100644
--- a/certificates/locale/zh/fusiondirectory.po
+++ b/certificates/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/certificates/locale/zh_TW/fusiondirectory.po b/certificates/locale/zh_TW/fusiondirectory.po
index ece7094ea0..d2da0fa845 100644
--- a/certificates/locale/zh_TW/fusiondirectory.po
+++ b/certificates/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/af_ZA/fusiondirectory.po b/community/locale/af_ZA/fusiondirectory.po
index b7f0443553..69d35b1bde 100644
--- a/community/locale/af_ZA/fusiondirectory.po
+++ b/community/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po
index 3698bfae6a..0545de92af 100644
--- a/community/locale/ar/fusiondirectory.po
+++ b/community/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po
index 29d3d6cab1..e1273ac90f 100644
--- a/community/locale/ca/fusiondirectory.po
+++ b/community/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po
index 440f922cf3..4ce1797bee 100644
--- a/community/locale/cs_CZ/fusiondirectory.po
+++ b/community/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po
index 6e03d27557..f06b2addd5 100644
--- a/community/locale/de/fusiondirectory.po
+++ b/community/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po
index a7d5bb51f8..379b968c5e 100644
--- a/community/locale/el_GR/fusiondirectory.po
+++ b/community/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/community/locale/en/fusiondirectory.po b/community/locale/en/fusiondirectory.po
index 8c1011ae66..802855dcfe 100644
--- a/community/locale/en/fusiondirectory.po
+++ b/community/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -86,69 +86,77 @@ msgid "Membership type of this organization"
 msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:50
-msgid "Active"
+msgid "Agreement signed"
 msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:50
-msgid "Is the membership of this organization active"
+msgid "Did this member returned the agreement signed"
 msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:54
-msgid "Hidden"
+msgid "Active"
 msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:54
+msgid "Is the membership of this organization active"
+msgstr ""
+
+#: admin/departments/community/class_communityOrganization.inc:58
+msgid "Hidden"
+msgstr ""
+
+#: admin/departments/community/class_communityOrganization.inc:58
 msgid "Should this membership be hidden from listings"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:60
+#: admin/departments/community/class_communityOrganization.inc:64
 msgid "Dates"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:63
+#: admin/departments/community/class_communityOrganization.inc:67
 msgid "Start date"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:63
+#: admin/departments/community/class_communityOrganization.inc:67
 msgid "Date of the beginning"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:67
+#: admin/departments/community/class_communityOrganization.inc:71
 msgid "End date"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:67
+#: admin/departments/community/class_communityOrganization.inc:71
 msgid "Date of the end"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:74
+#: admin/departments/community/class_communityOrganization.inc:78
 msgid "Contact"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:77
+#: admin/departments/community/class_communityOrganization.inc:81
 msgid "First name"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:81
+#: admin/departments/community/class_communityOrganization.inc:85
 msgid "Last name"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:85
+#: admin/departments/community/class_communityOrganization.inc:89
 msgid "Address"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:85
+#: admin/departments/community/class_communityOrganization.inc:89
 msgid "A postal address"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:89
+#: admin/departments/community/class_communityOrganization.inc:93
 msgid "City"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:93
+#: admin/departments/community/class_communityOrganization.inc:97
 msgid "State"
 msgstr ""
 
-#: admin/departments/community/class_communityOrganization.inc:97
+#: admin/departments/community/class_communityOrganization.inc:101
 msgid "Country"
 msgstr ""
diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po
index a70077fb73..a70303016f 100644
--- a/community/locale/es/fusiondirectory.po
+++ b/community/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po
index 40e0674592..228aed05eb 100644
--- a/community/locale/es_CO/fusiondirectory.po
+++ b/community/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po
index f3205bea98..5caa9cc0ba 100644
--- a/community/locale/es_VE/fusiondirectory.po
+++ b/community/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po
index f2736ca221..fbd27ee37a 100644
--- a/community/locale/fa_IR/fusiondirectory.po
+++ b/community/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po
index 9c44c7093d..fccd650cd7 100644
--- a/community/locale/fi_FI/fusiondirectory.po
+++ b/community/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po
index 2fd63763b1..94485cbb5a 100644
--- a/community/locale/fr/fusiondirectory.po
+++ b/community/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po
index b6fd55b573..ee1b408cf3 100644
--- a/community/locale/hu_HU/fusiondirectory.po
+++ b/community/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po
index 9fb76da07a..88af6f58ec 100644
--- a/community/locale/id/fusiondirectory.po
+++ b/community/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index e41f988693..fb4c28f47a 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/community/locale/ja/fusiondirectory.po b/community/locale/ja/fusiondirectory.po
index ed91bb7c5c..6b7bbfeb20 100644
--- a/community/locale/ja/fusiondirectory.po
+++ b/community/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ko/fusiondirectory.po b/community/locale/ko/fusiondirectory.po
index 3ed3e4063e..068d5798c4 100644
--- a/community/locale/ko/fusiondirectory.po
+++ b/community/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po
index 73243d2d30..14747e1866 100644
--- a/community/locale/lv/fusiondirectory.po
+++ b/community/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po
index 6d41ebb1b2..0b024bd4f4 100644
--- a/community/locale/nb/fusiondirectory.po
+++ b/community/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po
index 09453bd2bb..64511f5c63 100644
--- a/community/locale/nl/fusiondirectory.po
+++ b/community/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po
index 1fe6a9728f..85d906c4f2 100644
--- a/community/locale/pl/fusiondirectory.po
+++ b/community/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po
index bc105d7459..e2e363a422 100644
--- a/community/locale/pt/fusiondirectory.po
+++ b/community/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po
index 96bdc79658..660ce5161f 100644
--- a/community/locale/pt_BR/fusiondirectory.po
+++ b/community/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po
index fa2f1eebdc..b5c883bb26 100644
--- a/community/locale/ru/fusiondirectory.po
+++ b/community/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po
index 696891ff49..3147a50ee0 100644
--- a/community/locale/ru@petr1708/fusiondirectory.po
+++ b/community/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po
index 980dc414a9..34581ac92b 100644
--- a/community/locale/sv/fusiondirectory.po
+++ b/community/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/community/locale/tr_TR/fusiondirectory.po b/community/locale/tr_TR/fusiondirectory.po
index 6de4cdb004..6dd7c531b8 100644
--- a/community/locale/tr_TR/fusiondirectory.po
+++ b/community/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po
index 1dfc3294b1..d785efea4b 100644
--- a/community/locale/ug/fusiondirectory.po
+++ b/community/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po
index f82d833ac5..b56b84a1d9 100644
--- a/community/locale/vi_VN/fusiondirectory.po
+++ b/community/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po
index 31d457deb6..f4022e2fe3 100644
--- a/community/locale/zh/fusiondirectory.po
+++ b/community/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/community/locale/zh_TW/fusiondirectory.po b/community/locale/zh_TW/fusiondirectory.po
index d5f61b9205..71e6ef192b 100644
--- a/community/locale/zh_TW/fusiondirectory.po
+++ b/community/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/af_ZA/fusiondirectory.po b/cyrus/locale/af_ZA/fusiondirectory.po
index 74ad2e0bc6..9edad4c119 100644
--- a/cyrus/locale/af_ZA/fusiondirectory.po
+++ b/cyrus/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po
index dbdfe8a6d9..1e4dba01d8 100644
--- a/cyrus/locale/ar/fusiondirectory.po
+++ b/cyrus/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po
index a23a201298..61201e2830 100644
--- a/cyrus/locale/ca/fusiondirectory.po
+++ b/cyrus/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po
index 55fa27859d..d3d74cd0f5 100644
--- a/cyrus/locale/cs_CZ/fusiondirectory.po
+++ b/cyrus/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po
index a2f54ca7e7..754247638a 100644
--- a/cyrus/locale/de/fusiondirectory.po
+++ b/cyrus/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po
index 4d9ef444c2..8a2ec28dce 100644
--- a/cyrus/locale/el_GR/fusiondirectory.po
+++ b/cyrus/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/cyrus/locale/en/fusiondirectory.po b/cyrus/locale/en/fusiondirectory.po
index b639fb3278..2190670def 100644
--- a/cyrus/locale/en/fusiondirectory.po
+++ b/cyrus/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,54 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:50
-msgid "There are no IMAP compatible mail servers defined!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:55
-msgid "Mail server for this account is invalid!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:241
-msgid "IMAP error"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:241
-#, php-format
-msgid "Cannot modify IMAP mailbox quota: %s"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:315
-msgid "Mail info"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:316
-#, php-format
-msgid ""
-"LDAP entry has been removed but cyrus mailbox (%s) is kept.\n"
-"Please delete it manually!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:404
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:442
-msgid "The module imap_getacl is not implemented!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:510
-#, php-format
-msgid "Cannot retrieve SIEVE script: %s"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:578
-#, php-format
-msgid "Cannot store SIEVE script: %s"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:585
-#, php-format
-msgid "Cannot activate SIEVE script: %s"
-msgstr ""
-
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
 msgid "Cyrus (IMAP/POP3)"
@@ -152,3 +104,51 @@ msgstr ""
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:102
 msgid "Options for contacting Cyrus sieve server"
 msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:50
+msgid "There are no IMAP compatible mail servers defined!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:55
+msgid "Mail server for this account is invalid!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:241
+msgid "IMAP error"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:241
+#, php-format
+msgid "Cannot modify IMAP mailbox quota: %s"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:315
+msgid "Mail info"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:316
+#, php-format
+msgid ""
+"LDAP entry has been removed but cyrus mailbox (%s) is kept.\n"
+"Please delete it manually!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:404
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:442
+msgid "The module imap_getacl is not implemented!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:510
+#, php-format
+msgid "Cannot retrieve SIEVE script: %s"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:578
+#, php-format
+msgid "Cannot store SIEVE script: %s"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-cyrus.inc:585
+#, php-format
+msgid "Cannot activate SIEVE script: %s"
+msgstr ""
diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po
index 10fb59ea62..2317f13263 100644
--- a/cyrus/locale/es/fusiondirectory.po
+++ b/cyrus/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po
index 0e87f3644c..d240304d67 100644
--- a/cyrus/locale/es_CO/fusiondirectory.po
+++ b/cyrus/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po
index 71cf367d03..423d0587a1 100644
--- a/cyrus/locale/es_VE/fusiondirectory.po
+++ b/cyrus/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po
index 9717fd5baf..1a7df67c1b 100644
--- a/cyrus/locale/fa_IR/fusiondirectory.po
+++ b/cyrus/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po
index 56cd455b4f..7035f07b9a 100644
--- a/cyrus/locale/fi_FI/fusiondirectory.po
+++ b/cyrus/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po
index 2f154150d6..8d7b394a76 100644
--- a/cyrus/locale/fr/fusiondirectory.po
+++ b/cyrus/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po
index a602e6ba75..a88e712c6f 100644
--- a/cyrus/locale/hu_HU/fusiondirectory.po
+++ b/cyrus/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po
index aec707f3d4..38c13e2cb2 100644
--- a/cyrus/locale/id/fusiondirectory.po
+++ b/cyrus/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po
index e3a88de83f..cb6ef1c798 100644
--- a/cyrus/locale/it_IT/fusiondirectory.po
+++ b/cyrus/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/cyrus/locale/ja/fusiondirectory.po b/cyrus/locale/ja/fusiondirectory.po
index 02ec34be30..e41cdb2c8e 100644
--- a/cyrus/locale/ja/fusiondirectory.po
+++ b/cyrus/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ko/fusiondirectory.po b/cyrus/locale/ko/fusiondirectory.po
index 44f63a5232..e9a478c25e 100644
--- a/cyrus/locale/ko/fusiondirectory.po
+++ b/cyrus/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po
index ced0f0a6ba..bfd10af523 100644
--- a/cyrus/locale/lv/fusiondirectory.po
+++ b/cyrus/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po
index ed03f227b0..17ad2c5148 100644
--- a/cyrus/locale/nb/fusiondirectory.po
+++ b/cyrus/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po
index 33d74e7add..bb888e1d2c 100644
--- a/cyrus/locale/nl/fusiondirectory.po
+++ b/cyrus/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po
index 4072f62623..e7de1e419c 100644
--- a/cyrus/locale/pl/fusiondirectory.po
+++ b/cyrus/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po
index c016eb97c6..c1273d2e33 100644
--- a/cyrus/locale/pt/fusiondirectory.po
+++ b/cyrus/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po
index 2683d6a70a..4f347c2014 100644
--- a/cyrus/locale/pt_BR/fusiondirectory.po
+++ b/cyrus/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po
index a499351d4a..df8683745a 100644
--- a/cyrus/locale/ru/fusiondirectory.po
+++ b/cyrus/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po
index a1449cbc93..b03ba4389b 100644
--- a/cyrus/locale/ru@petr1708/fusiondirectory.po
+++ b/cyrus/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po
index b12b4a0455..0604a2eee9 100644
--- a/cyrus/locale/sv/fusiondirectory.po
+++ b/cyrus/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/cyrus/locale/tr_TR/fusiondirectory.po b/cyrus/locale/tr_TR/fusiondirectory.po
index 1a0a808ca6..4bf4b999ed 100644
--- a/cyrus/locale/tr_TR/fusiondirectory.po
+++ b/cyrus/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po
index 4baa57f447..75a48a15cd 100644
--- a/cyrus/locale/ug/fusiondirectory.po
+++ b/cyrus/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po
index 77ef3c5581..3241fc5f6e 100644
--- a/cyrus/locale/vi_VN/fusiondirectory.po
+++ b/cyrus/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po
index 9294c69c6e..88c05b784c 100644
--- a/cyrus/locale/zh/fusiondirectory.po
+++ b/cyrus/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/cyrus/locale/zh_TW/fusiondirectory.po b/cyrus/locale/zh_TW/fusiondirectory.po
index afd96b1d26..f5171755ed 100644
--- a/cyrus/locale/zh_TW/fusiondirectory.po
+++ b/cyrus/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/af_ZA/fusiondirectory.po b/debconf/locale/af_ZA/fusiondirectory.po
index c14b827044..5cddbfbd54 100644
--- a/debconf/locale/af_ZA/fusiondirectory.po
+++ b/debconf/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po
index 0072196d98..247ebd2c57 100644
--- a/debconf/locale/ar/fusiondirectory.po
+++ b/debconf/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po
index 1962e0679e..ff475a4b6d 100644
--- a/debconf/locale/ca/fusiondirectory.po
+++ b/debconf/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po
index f2ddd419cd..c17c053ebe 100644
--- a/debconf/locale/cs_CZ/fusiondirectory.po
+++ b/debconf/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po
index f688028162..43ba90cc00 100644
--- a/debconf/locale/de/fusiondirectory.po
+++ b/debconf/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po
index 511fe6684e..49fdbdd2d8 100644
--- a/debconf/locale/el_GR/fusiondirectory.po
+++ b/debconf/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/debconf/locale/en/fusiondirectory.po b/debconf/locale/en/fusiondirectory.po
index 207e20b3ad..dba7aa82dd 100644
--- a/debconf/locale/en/fusiondirectory.po
+++ b/debconf/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,6 +17,39 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#: admin/systems/debconf/class_debconfStartup.inc:33
+#: admin/debconfProfile/class_debconfProfileManagement.inc:32
+msgid "Debconf"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:34
+msgid "Debconf preseed startup"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:46
+msgid "Debconf settings"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:49
+msgid "Profile"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:49
+msgid "Debconf preseed profile to be used for installation"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:53
+msgid "Release"
+msgstr ""
+
+#: admin/systems/debconf/class_debconfStartup.inc:53
+msgid "Debian release to install"
+msgstr ""
+
+#: admin/debconfProfile/class_debconfProfileManagement.inc:33
+msgid "Debconf profile management"
+msgstr ""
+
 #: admin/debconfProfile/class_debconfProfileGeneric.inc:71
 #: admin/debconfProfile/class_debconfProfileGeneric.inc:85
 msgid "Error"
@@ -31,15 +64,15 @@ msgstr ""
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:139
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:142
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:152
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : <br/"
@@ -48,74 +81,41 @@ msgid ""
 "name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:172
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:169
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:187
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:194
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:196
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:211
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
 msgid "Import"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileManagement.inc:32
-#: admin/systems/debconf/class_debconfStartup.inc:33
-msgid "Debconf"
-msgstr ""
-
-#: admin/debconfProfile/class_debconfProfileManagement.inc:33
-msgid "Debconf profile management"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:34
-msgid "Debconf preseed startup"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:46
-msgid "Debconf settings"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:49
-msgid "Profile"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:49
-msgid "Debconf preseed profile to be used for installation"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:53
-msgid "Release"
-msgstr ""
-
-#: admin/systems/debconf/class_debconfStartup.inc:53
-msgid "Debian release to install"
-msgstr ""
-
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:2
 msgid "Filter"
 msgstr ""
diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po
index c7f1e2de29..bd381da5ae 100644
--- a/debconf/locale/es/fusiondirectory.po
+++ b/debconf/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po
index 697aa35e99..5d6bd53bc6 100644
--- a/debconf/locale/es_CO/fusiondirectory.po
+++ b/debconf/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po
index 2458170121..3aafc0a488 100644
--- a/debconf/locale/es_VE/fusiondirectory.po
+++ b/debconf/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po
index 33b37a30a2..df02f2f1e3 100644
--- a/debconf/locale/fa_IR/fusiondirectory.po
+++ b/debconf/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po
index 95d6765ee8..44b31c9993 100644
--- a/debconf/locale/fi_FI/fusiondirectory.po
+++ b/debconf/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po
index 406976a1cd..ec9faadc65 100644
--- a/debconf/locale/fr/fusiondirectory.po
+++ b/debconf/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po
index 69b26f8fb9..e5aa203d7d 100644
--- a/debconf/locale/hu_HU/fusiondirectory.po
+++ b/debconf/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po
index b96826c3ba..8b8ce6da85 100644
--- a/debconf/locale/id/fusiondirectory.po
+++ b/debconf/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po
index 894b0fc36a..8ece750c5b 100644
--- a/debconf/locale/it_IT/fusiondirectory.po
+++ b/debconf/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/debconf/locale/ja/fusiondirectory.po b/debconf/locale/ja/fusiondirectory.po
index f55f79a84d..26629adea1 100644
--- a/debconf/locale/ja/fusiondirectory.po
+++ b/debconf/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ko/fusiondirectory.po b/debconf/locale/ko/fusiondirectory.po
index 787521246d..0885081a89 100644
--- a/debconf/locale/ko/fusiondirectory.po
+++ b/debconf/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po
index 90ac4c1637..742b0501d8 100644
--- a/debconf/locale/lv/fusiondirectory.po
+++ b/debconf/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po
index f59affa717..cb6b847edb 100644
--- a/debconf/locale/nb/fusiondirectory.po
+++ b/debconf/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po
index 89a69d2bd4..4182189629 100644
--- a/debconf/locale/nl/fusiondirectory.po
+++ b/debconf/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po
index 8db0acf8c5..0f1a91e05a 100644
--- a/debconf/locale/pl/fusiondirectory.po
+++ b/debconf/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po
index 694b9e8c37..2430ceb19c 100644
--- a/debconf/locale/pt/fusiondirectory.po
+++ b/debconf/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po
index afaa4c420b..fc35f86c5e 100644
--- a/debconf/locale/pt_BR/fusiondirectory.po
+++ b/debconf/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po
index ea01fb6a02..612877271f 100644
--- a/debconf/locale/ru/fusiondirectory.po
+++ b/debconf/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po
index fd223b7806..44aece3927 100644
--- a/debconf/locale/ru@petr1708/fusiondirectory.po
+++ b/debconf/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po
index 0becef17f0..16c6901827 100644
--- a/debconf/locale/sv/fusiondirectory.po
+++ b/debconf/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/debconf/locale/tr_TR/fusiondirectory.po b/debconf/locale/tr_TR/fusiondirectory.po
index aef3adfa22..dddd033c7b 100644
--- a/debconf/locale/tr_TR/fusiondirectory.po
+++ b/debconf/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po
index 5c4e0203de..75f5e9bb38 100644
--- a/debconf/locale/ug/fusiondirectory.po
+++ b/debconf/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po
index f428c4ce12..b671550c7a 100644
--- a/debconf/locale/vi_VN/fusiondirectory.po
+++ b/debconf/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po
index 589a5b0056..e5c902f6dd 100644
--- a/debconf/locale/zh/fusiondirectory.po
+++ b/debconf/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/debconf/locale/zh_TW/fusiondirectory.po b/debconf/locale/zh_TW/fusiondirectory.po
index 7ebd33fe7f..4e570dd295 100644
--- a/debconf/locale/zh_TW/fusiondirectory.po
+++ b/debconf/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/af_ZA/fusiondirectory.po b/developers/locale/af_ZA/fusiondirectory.po
index 05d0dee949..24da5f09e8 100644
--- a/developers/locale/af_ZA/fusiondirectory.po
+++ b/developers/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po
index 3a7661e63f..7fd0181c9f 100644
--- a/developers/locale/ar/fusiondirectory.po
+++ b/developers/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po
index 542e226642..30c69ac561 100644
--- a/developers/locale/ca/fusiondirectory.po
+++ b/developers/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po
index 5bcc8e5540..53438a2d29 100644
--- a/developers/locale/cs_CZ/fusiondirectory.po
+++ b/developers/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po
index e1d4b7dce8..a624d358ac 100644
--- a/developers/locale/de/fusiondirectory.po
+++ b/developers/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po
index ea18cd61d0..e5ea7ef602 100644
--- a/developers/locale/el_GR/fusiondirectory.po
+++ b/developers/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/developers/locale/en/fusiondirectory.po b/developers/locale/en/fusiondirectory.po
index 49333cecef..1ba8ef0775 100644
--- a/developers/locale/en/fusiondirectory.po
+++ b/developers/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-10-15 17:15+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,31 +17,31 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:26
-#: debug-help/addons/debug-help/class_debugHelp.inc:32
+#: addons/debugHelp/class_debugHelp.inc:26
+#: addons/debugHelp/class_debugHelp.inc:32
 msgid "Debug help"
 msgstr ""
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:27
+#: addons/debugHelp/class_debugHelp.inc:27
 msgid "Debug help tools"
 msgstr ""
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:44
+#: addons/debugHelp/class_debugHelp.inc:44
 msgid "Diagrams"
 msgstr ""
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:48
+#: addons/debugHelp/class_debugHelp.inc:48
 msgid "Object types diagram"
 msgstr ""
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:50
+#: addons/debugHelp/class_debugHelp.inc:50
 msgid "Get"
 msgstr ""
 
-#: debug-help/addons/debug-help/class_debugHelp.inc:55
+#: addons/debugHelp/class_debugHelp.inc:55
 msgid "Object Types"
 msgstr ""
 
-#: debug-help/addons/debug-help/debughelp.tpl.c:2
+#: addons/debugHelp/debughelp.tpl.c:2
 msgid "Insufficient rights"
 msgstr ""
diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po
index a3d573598a..0625b8673c 100644
--- a/developers/locale/es/fusiondirectory.po
+++ b/developers/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po
index e58924327c..79f9f93a08 100644
--- a/developers/locale/es_CO/fusiondirectory.po
+++ b/developers/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po
index 3076a93b7e..346fcb4a06 100644
--- a/developers/locale/es_VE/fusiondirectory.po
+++ b/developers/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po
index deaecc29ca..93308428a8 100644
--- a/developers/locale/fa_IR/fusiondirectory.po
+++ b/developers/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po
index ac6e523a0b..c35a38169b 100644
--- a/developers/locale/fi_FI/fusiondirectory.po
+++ b/developers/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po
index 38f4fa6e88..43c78b4606 100644
--- a/developers/locale/fr/fusiondirectory.po
+++ b/developers/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po
index f409189ef2..cf015e84da 100644
--- a/developers/locale/hu_HU/fusiondirectory.po
+++ b/developers/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po
index 9c0ae0c78f..2cff1e3df9 100644
--- a/developers/locale/id/fusiondirectory.po
+++ b/developers/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po
index 2c31916388..d257dcce25 100644
--- a/developers/locale/it_IT/fusiondirectory.po
+++ b/developers/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/developers/locale/ja/fusiondirectory.po b/developers/locale/ja/fusiondirectory.po
index 8c9418d43f..f65eef2ccc 100644
--- a/developers/locale/ja/fusiondirectory.po
+++ b/developers/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ko/fusiondirectory.po b/developers/locale/ko/fusiondirectory.po
index 325abcd8f0..b0fd820c72 100644
--- a/developers/locale/ko/fusiondirectory.po
+++ b/developers/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po
index 8e8db80dd8..3907d6f081 100644
--- a/developers/locale/lv/fusiondirectory.po
+++ b/developers/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po
index bbd3e05d74..31c40f377d 100644
--- a/developers/locale/nb/fusiondirectory.po
+++ b/developers/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po
index 35899d38de..59e89526ac 100644
--- a/developers/locale/nl/fusiondirectory.po
+++ b/developers/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po
index ca247769e4..ebb48722b4 100644
--- a/developers/locale/pl/fusiondirectory.po
+++ b/developers/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po
index 385f915dcf..4a8e036cd8 100644
--- a/developers/locale/pt/fusiondirectory.po
+++ b/developers/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po
index 6361d00cfb..304ff88212 100644
--- a/developers/locale/pt_BR/fusiondirectory.po
+++ b/developers/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po
index 21d7bd5c68..d7925c5e69 100644
--- a/developers/locale/ru/fusiondirectory.po
+++ b/developers/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po
index 01f5450775..e0882b0441 100644
--- a/developers/locale/ru@petr1708/fusiondirectory.po
+++ b/developers/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po
index d5cdfe7402..6df14ef0b2 100644
--- a/developers/locale/sv/fusiondirectory.po
+++ b/developers/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/developers/locale/tr_TR/fusiondirectory.po b/developers/locale/tr_TR/fusiondirectory.po
index 7a9bc9b320..577760c9e5 100644
--- a/developers/locale/tr_TR/fusiondirectory.po
+++ b/developers/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po
index 88b07f2ad7..b893bdecf8 100644
--- a/developers/locale/ug/fusiondirectory.po
+++ b/developers/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po
index 5f9a34410e..63e45e6892 100644
--- a/developers/locale/vi_VN/fusiondirectory.po
+++ b/developers/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po
index a14f2d7566..e613cd9bbc 100644
--- a/developers/locale/zh/fusiondirectory.po
+++ b/developers/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh_TW/fusiondirectory.po b/developers/locale/zh_TW/fusiondirectory.po
index d04d35781b..b855d0713f 100644
--- a/developers/locale/zh_TW/fusiondirectory.po
+++ b/developers/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/af_ZA/fusiondirectory.po b/dhcp/locale/af_ZA/fusiondirectory.po
index e52fcf1ae7..5987e0edde 100644
--- a/dhcp/locale/af_ZA/fusiondirectory.po
+++ b/dhcp/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po
index 5dd0dd4395..52c8918b3f 100644
--- a/dhcp/locale/ar/fusiondirectory.po
+++ b/dhcp/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po
index bb0b654a3e..cf4fcbfb96 100644
--- a/dhcp/locale/ca/fusiondirectory.po
+++ b/dhcp/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po
index 6fc9031af5..3f22b0ebab 100644
--- a/dhcp/locale/cs_CZ/fusiondirectory.po
+++ b/dhcp/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po
index 432b6934bb..3ecf2566c8 100644
--- a/dhcp/locale/de/fusiondirectory.po
+++ b/dhcp/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Jonah Bohlmann <jokabo66@gmail.com>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po
index 737d01b48b..e178339000 100644
--- a/dhcp/locale/el_GR/fusiondirectory.po
+++ b/dhcp/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dhcp/locale/en/fusiondirectory.po b/dhcp/locale/en/fusiondirectory.po
index aed6520e8a..53db2b9e60 100644
--- a/dhcp/locale/en/fusiondirectory.po
+++ b/dhcp/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -18,9 +18,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #: config/dhcp/class_dhcpConfig.inc:28
-#: admin/dhcp/class_dhcpConfiguration.inc:532
+#: admin/dhcp/class_dhcpConfiguration.inc:530
+#: admin/dhcp/class_dhcpConfiguration.inc:531
 #: admin/dhcp/class_dhcpConfiguration.inc:533
-#: admin/dhcp/class_dhcpConfiguration.inc:535
 msgid "DHCP configuration"
 msgstr ""
 
@@ -40,169 +40,208 @@ msgstr ""
 msgid "Branch in which DHCP configurations will be stored"
 msgstr ""
 
-#: admin/dhcp/class_dhcpManagement.inc:34 admin/dhcp/class_dhcpPlugin.inc:31
-#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/dhcp/sections/class_dhcpTSigKey.inc:39
-#: admin/systems/class_dhcpSystem.inc:280
-msgid "DHCP"
+#: admin/systems/class_dhcpSystem.inc:32
+msgid "The DHCP configuration or subsection in which this host should be added"
 msgstr ""
 
-#: admin/dhcp/class_dhcpManagement.inc:35
-msgid "DHCP Management"
+#: admin/systems/class_dhcpSystem.inc:36 admin/systems/class_dhcpSystem.inc:115
+msgid "The Mac address to use in the DHCP host record"
 msgstr ""
 
-#: admin/dhcp/class_dhcpManagement.inc:37
-msgid "Systems"
+#: admin/systems/class_dhcpSystem.inc:40 admin/systems/class_dhcpSystem.inc:120
+msgid "The IP address to use in the DHCP host record"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:36
-msgid "Expand DHCP subnet"
+#: admin/systems/class_dhcpSystem.inc:54
+msgid "Parent"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:37
-msgid "Expand"
+#: admin/systems/class_dhcpSystem.inc:55
+msgid "Mac"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:46
-msgid "Fold DHCP subnet"
+#: admin/systems/class_dhcpSystem.inc:56
+msgid "IP"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:47
-msgid "Fold"
+#: admin/systems/class_dhcpSystem.inc:233
+#, php-format
+msgid ""
+"\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
+"DHCP configuration"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:111
-#: admin/dhcp/class_dhcpConfiguration.inc:112
-msgid "Insert new DHCP section"
+#: admin/systems/class_dhcpSystem.inc:256
+#, php-format
+msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:246
-#: admin/dhcp/class_dhcpPlugin.inc:34
-#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:42
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:42
-#: admin/dhcp/sections/class_dhcpTSigKey.inc:42
-msgid "Name"
+#: admin/systems/class_dhcpSystem.inc:291
+#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
+#: admin/dhcp/sections/class_dhcpTSigKey.inc:39
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:39
+#: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
+msgid "DHCP"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:366
-#: admin/dhcp/class_dhcpConfiguration.inc:407
-#: admin/dhcp/class_dhcpConfiguration.inc:576
-msgid "Global options"
+#: admin/systems/class_dhcpSystem.inc:292
+msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:422
-msgid "Error"
+#: admin/systems/class_dhcpSystem.inc:306
+msgid "DHCP zones"
+msgstr ""
+
+#: admin/systems/class_dhcpSystem.inc:310
+msgid "DHCP hosts declared for this system"
+msgstr ""
+
+#: admin/systems/class_dhcpSystem.inc:374
+#, php-format
+msgid "The ip %s is not in the network %s/%d"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:422
+#: admin/systems/services/dhcp/class_serviceDHCP.inc:28
+#: admin/systems/services/dhcp/class_serviceDHCP.inc:29
+#: admin/dhcp/sections/class_dhcpService.inc:28
+#: admin/dhcp/sections/class_dhcpService.inc:29
+msgid "DHCP service"
+msgstr ""
+
+#: admin/systems/services/dhcp/class_serviceDHCP.inc:43
+msgid "DHCP configurations"
+msgstr ""
+
+#: admin/systems/services/dhcp/class_serviceDHCP.inc:48
 msgid ""
-"The DHCP configuration set is unkown. Please contact your system "
-"administrator."
+"The DN of dhcpService object(s) which contain the configuration information"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:554
-msgid "DHCP Objects"
+#: admin/dhcp/sections/class_dhcpGroup.inc:28
+#: admin/dhcp/sections/class_dhcpGroup.inc:29
+msgid "DHCP group"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:564
-msgid "The DHCP sections handled by this server"
+#: admin/dhcp/sections/class_dhcpService.inc:46
+msgid "DHCP Primary"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:575
-msgid "Logging"
+#: admin/dhcp/sections/class_dhcpService.inc:46
+msgid "Primary DHCP server"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:577
-msgid "Class"
+#: admin/dhcp/sections/class_dhcpService.inc:47
+msgid "DHCP Secondary"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:578
-msgid "Subclass"
+#: admin/dhcp/sections/class_dhcpService.inc:47
+msgid "Secondary DHCP server"
+msgstr ""
+
+#: admin/dhcp/sections/class_dhcpHost.inc:29
+#: admin/dhcp/sections/class_dhcpHost.inc:30
+msgid "DHCP host"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:579
 #: admin/dhcp/sections/class_dhcpHost.inc:40
+#: admin/dhcp/class_dhcpConfiguration.inc:573
 msgid "Host"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:580
-msgid "Group"
+#: admin/dhcp/sections/class_dhcpHost.inc:43
+#: admin/dhcp/sections/class_dhcpHost.inc:52
+msgid "The client hardware address"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:581
-#: admin/dhcp/sections/class_dhcpPool.inc:39
-msgid "Pool"
+#: admin/dhcp/sections/class_dhcpHost.inc:46
+msgid "The hardware address type"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:582
-#: admin/dhcp/sections/class_dhcpSubnet.inc:39
-msgid "Subnet"
+#: admin/dhcp/sections/class_dhcpHost.inc:49
+msgid "Ethernet"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:583
-msgid "Failover peer"
+#: admin/dhcp/sections/class_dhcpHost.inc:49
+msgid "FDDI"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:584
-msgid "Shared network"
+#: admin/dhcp/sections/class_dhcpHost.inc:49
+msgid "Token Ring"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:585
-msgid "DNS update key"
+#: admin/dhcp/sections/class_dhcpHost.inc:59
+msgid "Hardware address"
 msgstr ""
 
-#: admin/dhcp/class_dhcpConfiguration.inc:586
-msgid "DNS update zones"
+#: admin/dhcp/sections/class_dhcpHost.inc:90
+#, php-format
+msgid "\"%s\" is not a valid IP address."
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:34
-#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:42
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:42
-#: admin/dhcp/sections/class_dhcpTSigKey.inc:42
-msgid "Name of this DHCP configuration"
+#: admin/dhcp/sections/class_dhcpSharedNetwork.inc:28
+#: admin/dhcp/sections/class_dhcpSharedNetwork.inc:29
+msgid "DHCP shared network"
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:39
-msgid "Options"
+#: admin/dhcp/sections/class_dhcpPool.inc:28
+#: admin/dhcp/sections/class_dhcpPool.inc:29
+msgid "DHCP pool"
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:39
-msgid "The DHCP options"
+#: admin/dhcp/sections/class_dhcpPool.inc:39
+#: admin/dhcp/class_dhcpConfiguration.inc:575
+msgid "Pool"
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:47
-msgid "Statements"
+#: admin/dhcp/sections/class_dhcpPool.inc:43
+#: admin/dhcp/sections/class_dhcpSubnet.inc:48
+msgid "Range"
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:47
-msgid "The DHCP statements"
+#: admin/dhcp/sections/class_dhcpPool.inc:43
+#: admin/dhcp/sections/class_dhcpSubnet.inc:48
+msgid ""
+"The starting & ending IP Addresses in the range (inclusive), separated by a "
+"space; if the range only contains one address, then just the address can be "
+"specified. Each range is defined as a separate value."
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:53
-#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:93
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:54
-#: admin/dhcp/sections/class_dhcpTSigKey.inc:55
-msgid "Comments"
+#: admin/dhcp/sections/class_dhcpPool.inc:51
+msgid "Permit list"
 msgstr ""
 
-#: admin/dhcp/class_dhcpPlugin.inc:53
-#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:93
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:54
-#: admin/dhcp/sections/class_dhcpTSigKey.inc:55
-msgid "Comments about this DHCP object"
+#: admin/dhcp/sections/class_dhcpPool.inc:51
+msgid ""
+"This attribute contains the permit lists associated with a pool. Each permit "
+"list is defined as a separate value."
 msgstr ""
 
-#: admin/dhcp/class_dhcpSectionCreationDialog.inc:52
-msgid "Section"
+#: admin/dhcp/sections/class_dhcpSubnet.inc:28
+#: admin/dhcp/sections/class_dhcpSubnet.inc:29
+msgid "DHCP subnet"
 msgstr ""
 
-#: admin/dhcp/class_dhcpSectionCreationDialog.inc:52
-msgid "Choose section type to create"
+#: admin/dhcp/sections/class_dhcpSubnet.inc:39
+#: admin/dhcp/class_dhcpConfiguration.inc:576
+msgid "Subnet"
 msgstr ""
 
-#: admin/dhcp/class_dhcpSectionCreationDialog.inc:88
-msgid "Create new DHCP section"
+#: admin/dhcp/sections/class_dhcpSubnet.inc:42
+msgid "Mask length"
+msgstr ""
+
+#: admin/dhcp/sections/class_dhcpSubnet.inc:42
+msgid ""
+"The subnet mask length for the subnet. The mask can be easily computed from "
+"this length."
+msgstr ""
+
+#: admin/dhcp/sections/class_dhcpSubnet.inc:57
+msgid "Network address"
+msgstr ""
+
+#: admin/dhcp/sections/class_dhcpSubnet.inc:57
+msgid "Network address of this subnet"
 msgstr ""
 
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:28
@@ -210,6 +249,21 @@ msgstr ""
 msgid "DHCP failover peer"
 msgstr ""
 
+#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:42
+#: admin/dhcp/sections/class_dhcpTSigKey.inc:42
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:42
+#: admin/dhcp/class_dhcpConfiguration.inc:245
+#: admin/dhcp/class_dhcpPlugin.inc:34
+msgid "Name"
+msgstr ""
+
+#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:42
+#: admin/dhcp/sections/class_dhcpTSigKey.inc:42
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:42
+#: admin/dhcp/class_dhcpPlugin.inc:34
+msgid "Name of this DHCP configuration"
+msgstr ""
+
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:46
 msgid "Primary server"
 msgstr ""
@@ -306,35 +360,23 @@ msgstr ""
 msgid "Cutoff time in seconds, after which load balance is disabled"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:28
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:29
-msgid "DHCP DNS update zone"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:46
-msgid "DNS Zone Server"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:46
-msgid "Master server of the DNS Zone"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:50
-msgid "Tsig key"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpDnsZone.inc:50
-msgid "The TSig key DN"
+#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:93
+#: admin/dhcp/sections/class_dhcpTSigKey.inc:55
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:54
+#: admin/dhcp/class_dhcpPlugin.inc:53
+msgid "Comments"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSharedNetwork.inc:28
-#: admin/dhcp/sections/class_dhcpSharedNetwork.inc:29
-msgid "DHCP shared network"
+#: admin/dhcp/sections/class_dhcpFailOverPeer.inc:93
+#: admin/dhcp/sections/class_dhcpTSigKey.inc:55
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:54
+#: admin/dhcp/class_dhcpPlugin.inc:53
+msgid "Comments about this DHCP object"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpClass.inc:28
-#: admin/dhcp/sections/class_dhcpClass.inc:29
-msgid "DHCP class"
+#: admin/dhcp/sections/class_dhcpSubClass.inc:28
+#: admin/dhcp/sections/class_dhcpSubClass.inc:29
+msgid "DHCP subclass"
 msgstr ""
 
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:28
@@ -358,185 +400,141 @@ msgstr ""
 msgid "Secret to generate TSIG Key"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpGroup.inc:28
-#: admin/dhcp/sections/class_dhcpGroup.inc:29
-msgid "DHCP group"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpSubnet.inc:28
-#: admin/dhcp/sections/class_dhcpSubnet.inc:29
-msgid "DHCP subnet"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpSubnet.inc:42
-msgid "Mask length"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpSubnet.inc:42
-msgid ""
-"The subnet mask length for the subnet. The mask can be easily computed from "
-"this length."
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:28
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:29
+msgid "DHCP DNS update zone"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSubnet.inc:48
-#: admin/dhcp/sections/class_dhcpPool.inc:43
-msgid "Range"
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:46
+msgid "DNS Zone Server"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSubnet.inc:48
-#: admin/dhcp/sections/class_dhcpPool.inc:43
-msgid ""
-"The starting & ending IP Addresses in the range (inclusive), separated by a "
-"space; if the range only contains one address, then just the address can be "
-"specified. Each range is defined as a separate value."
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:46
+msgid "Master server of the DNS Zone"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSubnet.inc:57
-msgid "Network address"
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:50
+msgid "Tsig key"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSubnet.inc:57
-msgid "Network address of this subnet"
+#: admin/dhcp/sections/class_dhcpDnsZone.inc:50
+msgid "The TSig key DN"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpService.inc:28
-#: admin/dhcp/sections/class_dhcpService.inc:29
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:46
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:47
-msgid "DHCP service"
+#: admin/dhcp/sections/class_dhcpClass.inc:28
+#: admin/dhcp/sections/class_dhcpClass.inc:29
+msgid "DHCP class"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpService.inc:46
-msgid "DHCP Primary"
+#: admin/dhcp/class_dhcpConfiguration.inc:36
+msgid "Expand DHCP subnet"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpService.inc:46
-msgid "Primary DHCP server"
+#: admin/dhcp/class_dhcpConfiguration.inc:37
+msgid "Expand"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpService.inc:47
-msgid "DHCP Secondary"
+#: admin/dhcp/class_dhcpConfiguration.inc:46
+msgid "Fold DHCP subnet"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpService.inc:47
-msgid "Secondary DHCP server"
+#: admin/dhcp/class_dhcpConfiguration.inc:47
+msgid "Fold"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpSubClass.inc:28
-#: admin/dhcp/sections/class_dhcpSubClass.inc:29
-msgid "DHCP subclass"
+#: admin/dhcp/class_dhcpConfiguration.inc:110
+#: admin/dhcp/class_dhcpConfiguration.inc:111
+msgid "Insert new DHCP section"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpPool.inc:28
-#: admin/dhcp/sections/class_dhcpPool.inc:29
-msgid "DHCP pool"
+#: admin/dhcp/class_dhcpConfiguration.inc:365
+#: admin/dhcp/class_dhcpConfiguration.inc:405
+#: admin/dhcp/class_dhcpConfiguration.inc:570
+msgid "Global options"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpPool.inc:51
-msgid "Permit list"
+#: admin/dhcp/class_dhcpConfiguration.inc:420
+msgid "Error"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpPool.inc:51
+#: admin/dhcp/class_dhcpConfiguration.inc:420
 msgid ""
-"This attribute contains the permit lists associated with a pool. Each permit "
-"list is defined as a separate value."
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpHost.inc:29
-#: admin/dhcp/sections/class_dhcpHost.inc:30
-msgid "DHCP host"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpHost.inc:43
-#: admin/dhcp/sections/class_dhcpHost.inc:52
-msgid "The client hardware address"
-msgstr ""
-
-#: admin/dhcp/sections/class_dhcpHost.inc:46
-msgid "The hardware address type"
+"The DHCP configuration set is unkown. Please contact your system "
+"administrator."
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpHost.inc:49
-msgid "Ethernet"
+#: admin/dhcp/class_dhcpConfiguration.inc:552
+msgid "DHCP Objects"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpHost.inc:49
-msgid "FDDI"
+#: admin/dhcp/class_dhcpConfiguration.inc:558
+msgid "The DHCP sections handled by this server"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpHost.inc:49
-msgid "Token Ring"
+#: admin/dhcp/class_dhcpConfiguration.inc:569
+msgid "Logging"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpHost.inc:59
-msgid "Hardware address"
+#: admin/dhcp/class_dhcpConfiguration.inc:571
+msgid "Class"
 msgstr ""
 
-#: admin/dhcp/sections/class_dhcpHost.inc:90
-#, php-format
-msgid "\"%s\" is not a valid IP address."
+#: admin/dhcp/class_dhcpConfiguration.inc:572
+msgid "Subclass"
 msgstr ""
 
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:29
-msgid "DHCP configurations"
+#: admin/dhcp/class_dhcpConfiguration.inc:574
+msgid "Group"
 msgstr ""
 
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:34
-msgid ""
-"The DN of dhcpService object(s) which contain the configuration information"
+#: admin/dhcp/class_dhcpConfiguration.inc:577
+msgid "Failover peer"
 msgstr ""
 
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:55
-msgid "Start service"
+#: admin/dhcp/class_dhcpConfiguration.inc:578
+msgid "Shared network"
 msgstr ""
 
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:57
-msgid "Stop service"
+#: admin/dhcp/class_dhcpConfiguration.inc:579
+msgid "DNS update key"
 msgstr ""
 
-#: admin/systems/services/dhcp/class_serviceDHCP.inc:59
-msgid "Restart service"
+#: admin/dhcp/class_dhcpConfiguration.inc:580
+msgid "DNS update zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:32
-msgid "The DHCP configuration or subsection in which this host should be added"
+#: admin/dhcp/class_dhcpPlugin.inc:39
+msgid "Options"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:36
-#: admin/systems/class_dhcpSystem.inc:109
-msgid "The Mac address to use in the DHCP host record"
+#: admin/dhcp/class_dhcpPlugin.inc:39
+msgid "The DHCP options"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:40
-#: admin/systems/class_dhcpSystem.inc:114
-msgid "The IP address to use in the DHCP host record"
+#: admin/dhcp/class_dhcpPlugin.inc:47
+msgid "Statements"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:228
-#, php-format
-msgid ""
-"\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
-"DHCP configuration"
+#: admin/dhcp/class_dhcpPlugin.inc:47
+msgid "The DHCP statements"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:251
-#, php-format
-msgid "The value for multivaluated field \"%s\" is not an array"
+#: admin/dhcp/class_dhcpManagement.inc:35
+msgid "DHCP Management"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:281
-msgid "Edit the DHCP zones of a system"
+#: admin/dhcp/class_dhcpManagement.inc:37
+msgid "Systems"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:295
-msgid "DHCP zones"
+#: admin/dhcp/class_dhcpSectionCreationDialog.inc:52
+msgid "Section"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:299
-msgid "DHCP hosts declared for this system"
+#: admin/dhcp/class_dhcpSectionCreationDialog.inc:52
+msgid "Choose section type to create"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:363
-#, php-format
-msgid "The ip %s is not in the network %s/%d"
+#: admin/dhcp/class_dhcpSectionCreationDialog.inc:88
+msgid "Create new DHCP section"
 msgstr ""
diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po
index f1b3a0c475..e0f87ba188 100644
--- a/dhcp/locale/es/fusiondirectory.po
+++ b/dhcp/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po
index 192736bd7d..aea7b1ec62 100644
--- a/dhcp/locale/es_CO/fusiondirectory.po
+++ b/dhcp/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po
index 7e2cddad42..9fbff767fe 100644
--- a/dhcp/locale/es_VE/fusiondirectory.po
+++ b/dhcp/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po
index faff492871..7337dc7866 100644
--- a/dhcp/locale/fa_IR/fusiondirectory.po
+++ b/dhcp/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po
index b8cecbf24a..b2f104459f 100644
--- a/dhcp/locale/fi_FI/fusiondirectory.po
+++ b/dhcp/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po
index f7c691cd03..0a958c3678 100644
--- a/dhcp/locale/fr/fusiondirectory.po
+++ b/dhcp/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po
index 8f3b99a166..70ac857e83 100644
--- a/dhcp/locale/hu_HU/fusiondirectory.po
+++ b/dhcp/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po
index 1a616f5772..a26f05aed3 100644
--- a/dhcp/locale/id/fusiondirectory.po
+++ b/dhcp/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index 896cc55a38..d52dc7a905 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dhcp/locale/ja/fusiondirectory.po b/dhcp/locale/ja/fusiondirectory.po
index 535d465a4a..a6a142fa68 100644
--- a/dhcp/locale/ja/fusiondirectory.po
+++ b/dhcp/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ko/fusiondirectory.po b/dhcp/locale/ko/fusiondirectory.po
index ca51254150..8435bc5eda 100644
--- a/dhcp/locale/ko/fusiondirectory.po
+++ b/dhcp/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po
index 0e066dea26..e24058cb3f 100644
--- a/dhcp/locale/lv/fusiondirectory.po
+++ b/dhcp/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po
index 70d3740b4e..147d15b0e3 100644
--- a/dhcp/locale/nb/fusiondirectory.po
+++ b/dhcp/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po
index ba42d1c73a..668e8eb8dd 100644
--- a/dhcp/locale/nl/fusiondirectory.po
+++ b/dhcp/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po
index b9712360c2..760779a30b 100644
--- a/dhcp/locale/pl/fusiondirectory.po
+++ b/dhcp/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po
index 29f7fd910d..33c56ffbef 100644
--- a/dhcp/locale/pt/fusiondirectory.po
+++ b/dhcp/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po
index 2ecb58929b..4494137830 100644
--- a/dhcp/locale/pt_BR/fusiondirectory.po
+++ b/dhcp/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po
index 04b382403e..43a975c037 100644
--- a/dhcp/locale/ru/fusiondirectory.po
+++ b/dhcp/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po
index e00a511183..3ed2fd1ede 100644
--- a/dhcp/locale/ru@petr1708/fusiondirectory.po
+++ b/dhcp/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po
index db53fbe04f..537c1d627f 100644
--- a/dhcp/locale/sv/fusiondirectory.po
+++ b/dhcp/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dhcp/locale/tr_TR/fusiondirectory.po b/dhcp/locale/tr_TR/fusiondirectory.po
index eefbee4973..8ae9a0d978 100644
--- a/dhcp/locale/tr_TR/fusiondirectory.po
+++ b/dhcp/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po
index 821e77c48a..39aad946f6 100644
--- a/dhcp/locale/ug/fusiondirectory.po
+++ b/dhcp/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po
index 3d6ca0a808..04a34666e4 100644
--- a/dhcp/locale/vi_VN/fusiondirectory.po
+++ b/dhcp/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po
index ba33f56807..96c50bdb60 100644
--- a/dhcp/locale/zh/fusiondirectory.po
+++ b/dhcp/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dhcp/locale/zh_TW/fusiondirectory.po b/dhcp/locale/zh_TW/fusiondirectory.po
index f9fbbc3564..89f1263c14 100644
--- a/dhcp/locale/zh_TW/fusiondirectory.po
+++ b/dhcp/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/af_ZA/fusiondirectory.po b/dns/locale/af_ZA/fusiondirectory.po
index ba812eaf7b..91dc7365be 100644
--- a/dns/locale/af_ZA/fusiondirectory.po
+++ b/dns/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po
index 3105299f00..19ca392ab7 100644
--- a/dns/locale/ar/fusiondirectory.po
+++ b/dns/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po
index 08e5f9a44d..90900a0482 100644
--- a/dns/locale/ca/fusiondirectory.po
+++ b/dns/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po
index e41b7a1414..222438d022 100644
--- a/dns/locale/cs_CZ/fusiondirectory.po
+++ b/dns/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po
index 5c9434b6ee..f019f33427 100644
--- a/dns/locale/de/fusiondirectory.po
+++ b/dns/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po
index cc901c6a61..5a86ffabfe 100644
--- a/dns/locale/el_GR/fusiondirectory.po
+++ b/dns/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dns/locale/en/fusiondirectory.po b/dns/locale/en/fusiondirectory.po
index 28e389582b..3e0ee9f327 100644
--- a/dns/locale/en/fusiondirectory.po
+++ b/dns/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -45,258 +45,202 @@ msgstr ""
 msgid "Should FD store a final dot at the end of domains?"
 msgstr ""
 
-#: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
-#: admin/dns/class_dnsAcl.inc:33
-msgid "DNS acl"
-msgstr ""
-
-#: admin/dns/class_dnsAcl.inc:47
-msgid "Acl"
-msgstr ""
-
-#: admin/dns/class_dnsAcl.inc:51
-msgid "ACL name"
-msgstr ""
-
-#: admin/dns/class_dnsAcl.inc:51
-msgid "Name of this acl"
-msgstr ""
-
-#: admin/dns/class_dnsAcl.inc:56
-msgid "Address match list"
-msgstr ""
-
-#: admin/dns/class_dnsAcl.inc:56
-msgid "The ip address match list for this acl"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:28 admin/dns/class_dnsView.inc:29
-#: admin/dns/class_dnsView.inc:31
-msgid "DNS view"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:45
-msgid "View"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:49
-msgid "View name"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:49
-msgid "Name of this view"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:53
-msgid "Match clients ACL"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:53
-msgid ""
-"Name of the ACL to use for the source IP address of the incoming requests"
-msgstr ""
-
-#: admin/dns/class_dnsView.inc:57
-msgid "Match destinations ACL"
+#: admin/systems/class_dnsHost.inc:139 admin/dns/class_dnsManagement.inc:34
+msgid "DNS"
 msgstr ""
 
-#: admin/dns/class_dnsView.inc:57
-msgid ""
-"Name of the ACL to use for the destination IP address of the incoming "
-"requests"
+#: admin/systems/class_dnsHost.inc:140
+msgid "Edit the DNS zones of a system"
 msgstr ""
 
-#: admin/dns/class_dnsView.inc:61
-msgid "Match recursive only"
+#: admin/systems/class_dnsHost.inc:157 admin/dns/class_dnsView.inc:66
+msgid "DNS zones"
 msgstr ""
 
-#: admin/dns/class_dnsView.inc:61
-msgid "Match only recursive queries in this view"
+#: admin/systems/class_dnsHost.inc:161
+msgid "DNS zones for this host"
 msgstr ""
 
-#: admin/dns/class_dnsView.inc:66 admin/systems/class_dnsHost.inc:141
-msgid "DNS zones"
+#: admin/systems/class_dnsHost.inc:168
+msgid "SOA records"
 msgstr ""
 
-#: admin/dns/class_dnsView.inc:66
-msgid "DNS zones in this view"
+#: admin/systems/class_dnsHost.inc:172 admin/systems/class_dnsHost.inc:246
+msgid "DNS Records"
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:34 admin/systems/class_dnsHost.inc:123
-msgid "DNS"
+#: admin/systems/class_dnsHost.inc:242
+msgid "Primary servers"
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:35
-msgid "DNS Management"
+#: admin/systems/class_dnsHost.inc:261
+#, php-format
+msgid "The DNS records for zone \"%s\""
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:37
-msgid "Systems"
+#: admin/systems/class_dnsHost.inc:283
+#, php-format
+msgid "The primary server for zone \"%s\""
 msgstr ""
 
+#: admin/systems/class_dnsHost.inc:323 admin/systems/class_dnsHost.inc:332
 #: admin/dns/class_dnsManagement.inc:91 admin/dns/class_dnsManagement.inc:93
-#: admin/dns/class_dnsManagement.inc:99 admin/systems/class_dnsHost.inc:307
-#: admin/systems/class_dnsHost.inc:313
+#: admin/dns/class_dnsManagement.inc:99
 msgid "Could not run ldap2zone"
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:91
-msgid "More than one server matches the SOA"
-msgstr ""
-
-#: admin/dns/class_dnsManagement.inc:93
-msgid "Could not find the primary server"
-msgstr ""
-
-#: admin/dns/class_dnsManagement.inc:106
-msgid "Could not get run ldap2zone"
-msgstr ""
-
-#: admin/dns/class_dnsManagement.inc:108 admin/systems/class_dnsHost.inc:315
+#: admin/systems/class_dnsHost.inc:334 admin/dns/class_dnsManagement.inc:111
 msgid "Ldap2zone"
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:108 admin/systems/class_dnsHost.inc:315
+#: admin/systems/class_dnsHost.inc:334 admin/dns/class_dnsManagement.inc:111
 #, php-format
 msgid "Ldap2Zone called for zone \"%s\""
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:112 admin/dns/class_dnsZone.inc:363
-#: admin/systems/class_dnsHost.inc:319
+#: admin/systems/class_dnsHost.inc:338 admin/dns/class_dnsZone.inc:381
+#: admin/dns/class_dnsManagement.inc:115
 msgid "Error"
 msgstr ""
 
-#: admin/dns/class_dnsManagement.inc:112 admin/systems/class_dnsHost.inc:319
+#: admin/systems/class_dnsHost.inc:338 admin/dns/class_dnsManagement.inc:115
 msgid "Argonaut client needs to be activated to use ldap2zone remotely"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:27
+#: admin/systems/class_dnsHost.inc:383 admin/systems/class_dnsHost.inc:402
 #, php-format
-msgid ""
-"\"%s\" must contain a fully qualified domain name in lowercase and end with "
-"a final dot.<br/><br/>Example: dns1.example.com."
+msgid "%d records were updated from %s to %s in zone %s"
+msgstr ""
+
+#: admin/systems/class_dnsHost.inc:415 admin/systems/class_dnsHost.inc:444
+msgid "DNS update"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:130
+#: admin/systems/class_dnsHost.inc:489 admin/systems/class_dnsHost.inc:510
+#, php-format
+msgid "%d records were removed in zone %s"
+msgstr ""
+
+#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:133
+#: admin/dns/class_DnsRecordAttribute.inc:120
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:133
+#: admin/dns/class_DnsRecordAttribute.inc:120
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
+#: admin/dns/class_DnsRecordAttribute.inc:153
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:170
+#: admin/dns/class_DnsRecordAttribute.inc:157
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:174
-#: admin/dns/class_DnsRecordAttribute.inc:201
+#: admin/dns/class_DnsRecordAttribute.inc:161
+#: admin/dns/class_DnsRecordAttribute.inc:188
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:166
+#: admin/dns/class_DnsRecordAttribute.inc:193
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:171
+#: admin/dns/class_DnsRecordAttribute.inc:198
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:189
+#: admin/dns/class_DnsRecordAttribute.inc:176
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:192
+#: admin/dns/class_DnsRecordAttribute.inc:179
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:192
+#: admin/dns/class_DnsRecordAttribute.inc:179
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:197
+#: admin/dns/class_DnsRecordAttribute.inc:184
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:203
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:219
+#: admin/dns/class_DnsRecordAttribute.inc:206
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:219
+#: admin/dns/class_DnsRecordAttribute.inc:206
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:224
+#: admin/dns/class_DnsRecordAttribute.inc:211
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:229
+#: admin/dns/class_DnsRecordAttribute.inc:216
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:234
+#: admin/dns/class_DnsRecordAttribute.inc:221
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:239
+#: admin/dns/class_DnsRecordAttribute.inc:226
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:250
+#: admin/dns/class_DnsRecordAttribute.inc:237
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:254
+#: admin/dns/class_DnsRecordAttribute.inc:241
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:254
+#: admin/dns/class_DnsRecordAttribute.inc:241
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to "
 "ensure the correct ordering of rules.  Low numbers are processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:246
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:246
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\" "
 "values SHOULD be processed, low numbers being processed before high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:264
+#: admin/dns/class_DnsRecordAttribute.inc:251
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:264
+#: admin/dns/class_DnsRecordAttribute.inc:251
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:268
+#: admin/dns/class_DnsRecordAttribute.inc:255
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:268
+#: admin/dns/class_DnsRecordAttribute.inc:255
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -304,129 +248,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:259
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:259
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:276
+#: admin/dns/class_DnsRecordAttribute.inc:263
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:276
+#: admin/dns/class_DnsRecordAttribute.inc:263
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:274
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:291
-#: admin/dns/class_DnsRecordAttribute.inc:343
+#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:330
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:291
+#: admin/dns/class_DnsRecordAttribute.inc:278
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:296
+#: admin/dns/class_DnsRecordAttribute.inc:283
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:296
+#: admin/dns/class_DnsRecordAttribute.inc:283
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:301
+#: admin/dns/class_DnsRecordAttribute.inc:288
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:301
+#: admin/dns/class_DnsRecordAttribute.inc:288
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:306
-#: admin/dns/class_DnsRecordAttribute.inc:322
-#: admin/dns/class_DnsRecordAttribute.inc:329
-#: admin/dns/class_DnsRecordAttribute.inc:348
-#: admin/dns/class_DnsRecordAttribute.inc:360
+#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:347
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:306
+#: admin/dns/class_DnsRecordAttribute.inc:293
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:322
+#: admin/dns/class_DnsRecordAttribute.inc:309
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:316
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:339
+#: admin/dns/class_DnsRecordAttribute.inc:326
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:343
+#: admin/dns/class_DnsRecordAttribute.inc:330
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:348
+#: admin/dns/class_DnsRecordAttribute.inc:335
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the "
 "owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:360
+#: admin/dns/class_DnsRecordAttribute.inc:347
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:369 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:369
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\", "
 "or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:375
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:375
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:381
+#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:381
+#: admin/dns/class_DnsRecordAttribute.inc:368
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:431
+#: admin/dns/class_DnsRecordAttribute.inc:418
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
@@ -443,7 +387,7 @@ msgstr ""
 msgid "DNS record"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:49
+#: admin/dns/class_dnsZone.inc:49 admin/dns/class_dnsZone.inc:186
 msgid "Subdomain"
 msgstr ""
 
@@ -455,175 +399,229 @@ msgstr ""
 msgid "DNS Record"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:364
+#: admin/dns/class_dnsZone.inc:189
+msgid "Reverse"
+msgstr ""
+
+#: admin/dns/class_dnsZone.inc:382
 #, php-format
 msgid "The IP %s does not match the selected reverse %s, it has been ignored"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:424 admin/dns/class_dnsZone.inc:437
-#: admin/dns/class_dnsZone.inc:446 admin/dns/class_dnsZone.inc:464
-#: admin/dns/class_dnsZone.inc:509 admin/dns/class_dnsZone.inc:516
+#: admin/dns/class_dnsZone.inc:484 admin/dns/class_dnsZone.inc:493
+#: admin/dns/class_dnsZone.inc:501 admin/dns/class_dnsZone.inc:509
+#: admin/dns/class_dnsZone.inc:530 admin/dns/class_dnsZone.inc:563
+#: admin/dns/class_dnsZone.inc:569 admin/dns/class_dnsZone.inc:581
 msgid "LDAP error"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:610
+#: admin/dns/class_dnsZone.inc:676
 #, php-format
 msgid ""
 "\"%s\" must contain a domain name in lowercase and end with a final dot.<br/"
 "><br/>Example: example.com."
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:613
+#: admin/dns/class_dnsZone.inc:679
 #, php-format
 msgid ""
 "\"%s\" must contain a domain name in lowercase.<br/><br/>Example: example.com"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:634 admin/dns/class_dnsZone.inc:635
-#: admin/dns/class_dnsZone.inc:637
+#: admin/dns/class_dnsZone.inc:700 admin/dns/class_dnsZone.inc:701
+#: admin/dns/class_dnsZone.inc:703
 msgid "DNS zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:652
+#: admin/dns/class_dnsZone.inc:718
 msgid "Zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:656
+#: admin/dns/class_dnsZone.inc:722
 msgid "Zone name"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:666
+#: admin/dns/class_dnsZone.inc:732
 msgid "Reverse zones"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:666
+#: admin/dns/class_dnsZone.inc:732
 #, php-format
 msgid ""
 "Reverse zones for this zone in the form xx.xx.in-addr.arpa%1$s or x.x.ip6."
 "arpa%1$s"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:679
+#: admin/dns/class_dnsZone.inc:745
 msgid "SOA record"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:682
+#: admin/dns/class_dnsZone.inc:748
 msgid "SOA Record"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:686
+#: admin/dns/class_dnsZone.inc:752
 msgid "Primary DNS server"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:686
+#: admin/dns/class_dnsZone.inc:752
 msgid ""
 "Domain name of the name server that was the original or primary source of "
 "data for this zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:690
+#: admin/dns/class_dnsZone.inc:756
 msgid "Mail address"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:690
+#: admin/dns/class_dnsZone.inc:756
 msgid ""
 "Domain name which specifies the mailbox of the person responsible for this "
 "zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:694
+#: admin/dns/class_dnsZone.inc:760
 msgid "Serial number"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:694
+#: admin/dns/class_dnsZone.inc:760
 msgid "Version number of the original copy of the zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:699
+#: admin/dns/class_dnsZone.inc:765
 msgid "Refresh"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:699
+#: admin/dns/class_dnsZone.inc:765
 msgid "Time interval before the zone should be refreshed"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:704
+#: admin/dns/class_dnsZone.inc:770
 msgid "Retry"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:704
+#: admin/dns/class_dnsZone.inc:770
 msgid ""
 "Time interval that should elapse before a failed refresh should be retried"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:709
+#: admin/dns/class_dnsZone.inc:775
 msgid "Expire"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:709
+#: admin/dns/class_dnsZone.inc:775
 msgid ""
 "Time value that specifies the upper limit on the time interval that can "
 "elapse before the zone is no longer authoritative"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:714
+#: admin/dns/class_dnsZone.inc:780
 msgid "TTL"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:714
+#: admin/dns/class_dnsZone.inc:780
 msgid "Minimum TTL field that should be exported with any RR from this zone"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:725
+#: admin/dns/class_dnsZone.inc:791
 msgid "Records"
 msgstr ""
 
-#: admin/dns/class_dnsZone.inc:729
+#: admin/dns/class_dnsZone.inc:795
 msgid "The DNS records for this zone"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:124
-msgid "Edit the DNS zones of a system"
+#: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
+#: admin/dns/class_dnsAcl.inc:33
+msgid "DNS acl"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:145
-msgid "DNS zones for this host"
+#: admin/dns/class_dnsAcl.inc:47
+msgid "Acl"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:152
-msgid "SOA records"
+#: admin/dns/class_dnsAcl.inc:51
+msgid "ACL name"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:156 admin/systems/class_dnsHost.inc:230
-msgid "DNS Records"
+#: admin/dns/class_dnsAcl.inc:51
+msgid "Name of this acl"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:226
-msgid "Primary servers"
+#: admin/dns/class_dnsAcl.inc:56
+msgid "Address match list"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:245
-#, php-format
-msgid "The DNS records for zone \"%s\""
+#: admin/dns/class_dnsAcl.inc:56
+msgid "The ip address match list for this acl"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:267
-#, php-format
-msgid "The primary server for zone \"%s\""
+#: admin/dns/class_dnsView.inc:28 admin/dns/class_dnsView.inc:29
+#: admin/dns/class_dnsView.inc:31
+msgid "DNS view"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:364 admin/systems/class_dnsHost.inc:383
-#, php-format
-msgid "%d records were updated from %s to %s in zone %s"
+#: admin/dns/class_dnsView.inc:45
+msgid "View"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:396 admin/systems/class_dnsHost.inc:425
-msgid "DNS update"
+#: admin/dns/class_dnsView.inc:49
+msgid "View name"
 msgstr ""
 
-#: admin/systems/class_dnsHost.inc:465 admin/systems/class_dnsHost.inc:482
-#, php-format
-msgid "%d records were removed in zone %s"
+#: admin/dns/class_dnsView.inc:49
+msgid "Name of this view"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:53
+msgid "Match clients ACL"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:53
+msgid ""
+"Name of the ACL to use for the source IP address of the incoming requests"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:57
+msgid "Match destinations ACL"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:57
+msgid ""
+"Name of the ACL to use for the destination IP address of the incoming "
+"requests"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:61
+msgid "Match recursive only"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:61
+msgid "Match only recursive queries in this view"
+msgstr ""
+
+#: admin/dns/class_dnsView.inc:66
+msgid "DNS zones in this view"
+msgstr ""
+
+#: admin/dns/class_dnsManagement.inc:35
+msgid "DNS Management"
+msgstr ""
+
+#: admin/dns/class_dnsManagement.inc:37
+msgid "Systems"
+msgstr ""
+
+#: admin/dns/class_dnsManagement.inc:91
+msgid "More than one server matches the SOA"
+msgstr ""
+
+#: admin/dns/class_dnsManagement.inc:93
+msgid "Could not find the primary server"
+msgstr ""
+
+#: admin/dns/class_dnsManagement.inc:109
+msgid "Could not get run ldap2zone"
 msgstr ""
 
 #: admin/systems/dnsrecords.tpl.c:2
diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po
index bf3608c2df..dbee15abe8 100644
--- a/dns/locale/es/fusiondirectory.po
+++ b/dns/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po
index 6c3b1066d2..b6d360aa04 100644
--- a/dns/locale/es_CO/fusiondirectory.po
+++ b/dns/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po
index 07b5b374c3..03a0d7fb8d 100644
--- a/dns/locale/es_VE/fusiondirectory.po
+++ b/dns/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po
index dcf21f2d50..a56e07bc8a 100644
--- a/dns/locale/fa_IR/fusiondirectory.po
+++ b/dns/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po
index 66658d4a1c..29ff4f6213 100644
--- a/dns/locale/fi_FI/fusiondirectory.po
+++ b/dns/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po
index 4a3ee3b5f8..945a730557 100644
--- a/dns/locale/fr/fusiondirectory.po
+++ b/dns/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po
index 80a8b9f932..9e9b1f6458 100644
--- a/dns/locale/hu_HU/fusiondirectory.po
+++ b/dns/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po
index e4048d85a8..829eb4428f 100644
--- a/dns/locale/id/fusiondirectory.po
+++ b/dns/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index eb469312a7..52e4cce8cc 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dns/locale/ja/fusiondirectory.po b/dns/locale/ja/fusiondirectory.po
index 244ff25331..bb297bd5e8 100644
--- a/dns/locale/ja/fusiondirectory.po
+++ b/dns/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ko/fusiondirectory.po b/dns/locale/ko/fusiondirectory.po
index 6a35c80b71..bbd79ffb6a 100644
--- a/dns/locale/ko/fusiondirectory.po
+++ b/dns/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2019
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -517,7 +517,7 @@ msgstr ""
 
 #: admin/dns/class_dnsZone.inc:765
 msgid "Refresh"
-msgstr ""
+msgstr "리프레시"
 
 #: admin/dns/class_dnsZone.inc:765
 msgid "Time interval before the zone should be refreshed"
diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po
index 5cec696ba1..66e8290c74 100644
--- a/dns/locale/lv/fusiondirectory.po
+++ b/dns/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po
index 17ab9f9b4b..cd8bf8d9d6 100644
--- a/dns/locale/nb/fusiondirectory.po
+++ b/dns/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po
index eccd0b9dfe..1e839b48f8 100644
--- a/dns/locale/nl/fusiondirectory.po
+++ b/dns/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po
index 14ecb88d8e..2e160b176a 100644
--- a/dns/locale/pl/fusiondirectory.po
+++ b/dns/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po
index e05252de5f..139d111cdc 100644
--- a/dns/locale/pt/fusiondirectory.po
+++ b/dns/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po
index d46276d860..47a82c2675 100644
--- a/dns/locale/pt_BR/fusiondirectory.po
+++ b/dns/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po
index 09c2097ccf..a746fae20c 100644
--- a/dns/locale/ru/fusiondirectory.po
+++ b/dns/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po
index 129aa015df..cd18e0d11e 100644
--- a/dns/locale/ru@petr1708/fusiondirectory.po
+++ b/dns/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po
index 2089166a84..d61aafd9b6 100644
--- a/dns/locale/sv/fusiondirectory.po
+++ b/dns/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dns/locale/tr_TR/fusiondirectory.po b/dns/locale/tr_TR/fusiondirectory.po
index 8bdbab717d..3fb67401d5 100644
--- a/dns/locale/tr_TR/fusiondirectory.po
+++ b/dns/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po
index e606c3e3b3..2d2c1d13c0 100644
--- a/dns/locale/ug/fusiondirectory.po
+++ b/dns/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po
index 272de1a142..36afe29f42 100644
--- a/dns/locale/vi_VN/fusiondirectory.po
+++ b/dns/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po
index 2a76ba92cb..fd5f325523 100644
--- a/dns/locale/zh/fusiondirectory.po
+++ b/dns/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dns/locale/zh_TW/fusiondirectory.po b/dns/locale/zh_TW/fusiondirectory.po
index e88eb77098..7b432f1d79 100644
--- a/dns/locale/zh_TW/fusiondirectory.po
+++ b/dns/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/af_ZA/fusiondirectory.po b/dovecot/locale/af_ZA/fusiondirectory.po
index bbd808f84d..eb443d3e75 100644
--- a/dovecot/locale/af_ZA/fusiondirectory.po
+++ b/dovecot/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po
index 8f6ae72350..be726ef48d 100644
--- a/dovecot/locale/ar/fusiondirectory.po
+++ b/dovecot/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po
index 757905f14d..43bc926e79 100644
--- a/dovecot/locale/ca/fusiondirectory.po
+++ b/dovecot/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po
index 077dcb70e9..a220a55e70 100644
--- a/dovecot/locale/cs_CZ/fusiondirectory.po
+++ b/dovecot/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po
index 22bff343ff..522a5bcbdb 100644
--- a/dovecot/locale/de/fusiondirectory.po
+++ b/dovecot/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po
index a233fc5464..fb86d0a976 100644
--- a/dovecot/locale/el_GR/fusiondirectory.po
+++ b/dovecot/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dovecot/locale/en/fusiondirectory.po b/dovecot/locale/en/fusiondirectory.po
index 75c2769da4..d28c4edad3 100644
--- a/dovecot/locale/en/fusiondirectory.po
+++ b/dovecot/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,19 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:50
-msgid "There are no IMAP compatible mail servers defined!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:55
-msgid "Mail server for this account is invalid!"
-msgstr ""
-
-#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:194
-#, php-format
-msgid "Error while trying to contact Dovecot server through Argonaut: %s"
-msgstr ""
-
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
 msgid "Dovecot (IMAP/POP3)"
@@ -118,3 +105,16 @@ msgstr ""
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:97
 msgid "Use argonaut to create the user mailbox on the Dovecot server"
 msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:50
+msgid "There are no IMAP compatible mail servers defined!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:55
+msgid "Mail server for this account is invalid!"
+msgstr ""
+
+#: personal/mail/mail-methods/class_mail-methods-dovecot.inc:204
+#, php-format
+msgid "Error while trying to contact Dovecot server through Argonaut: %s"
+msgstr ""
diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po
index 3c93e278fa..edf13d6fc3 100644
--- a/dovecot/locale/es/fusiondirectory.po
+++ b/dovecot/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po
index dd02b34d23..75ba4dba1a 100644
--- a/dovecot/locale/es_CO/fusiondirectory.po
+++ b/dovecot/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po
index 7435d2211b..231e9d9fb7 100644
--- a/dovecot/locale/es_VE/fusiondirectory.po
+++ b/dovecot/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po
index 04304bb01a..87e27061bc 100644
--- a/dovecot/locale/fa_IR/fusiondirectory.po
+++ b/dovecot/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po
index f82cda225b..94eed3457d 100644
--- a/dovecot/locale/fi_FI/fusiondirectory.po
+++ b/dovecot/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po
index f78328a5d2..8bab661475 100644
--- a/dovecot/locale/fr/fusiondirectory.po
+++ b/dovecot/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po
index c3569d7731..2eb757e55f 100644
--- a/dovecot/locale/hu_HU/fusiondirectory.po
+++ b/dovecot/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po
index cef886fa7d..c7fc9fc2e1 100644
--- a/dovecot/locale/id/fusiondirectory.po
+++ b/dovecot/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po
index b4192b6285..4be1c05533 100644
--- a/dovecot/locale/it_IT/fusiondirectory.po
+++ b/dovecot/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dovecot/locale/ja/fusiondirectory.po b/dovecot/locale/ja/fusiondirectory.po
index b1f6aa3785..84b5bd2af9 100644
--- a/dovecot/locale/ja/fusiondirectory.po
+++ b/dovecot/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ko/fusiondirectory.po b/dovecot/locale/ko/fusiondirectory.po
index eaa0367f08..932d678699 100644
--- a/dovecot/locale/ko/fusiondirectory.po
+++ b/dovecot/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po
index b4d882de3c..95491946a9 100644
--- a/dovecot/locale/lv/fusiondirectory.po
+++ b/dovecot/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po
index 7ea7849f1e..14b7ac36ca 100644
--- a/dovecot/locale/nb/fusiondirectory.po
+++ b/dovecot/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po
index e8f5aca9eb..ce71e5ddae 100644
--- a/dovecot/locale/nl/fusiondirectory.po
+++ b/dovecot/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po
index b6cd3416bb..6ff4d64757 100644
--- a/dovecot/locale/pl/fusiondirectory.po
+++ b/dovecot/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po
index 9881c15569..c36a41fd97 100644
--- a/dovecot/locale/pt/fusiondirectory.po
+++ b/dovecot/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po
index 4f824e2061..7b99e603d7 100644
--- a/dovecot/locale/pt_BR/fusiondirectory.po
+++ b/dovecot/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po
index 433f851d88..5c3594d29b 100644
--- a/dovecot/locale/ru/fusiondirectory.po
+++ b/dovecot/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po
index 569ff78a4b..8d5ccc426e 100644
--- a/dovecot/locale/ru@petr1708/fusiondirectory.po
+++ b/dovecot/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po
index 0551b5b141..5b7e4021fa 100644
--- a/dovecot/locale/sv/fusiondirectory.po
+++ b/dovecot/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dovecot/locale/tr_TR/fusiondirectory.po b/dovecot/locale/tr_TR/fusiondirectory.po
index 89d0312f30..dee4e1a0a0 100644
--- a/dovecot/locale/tr_TR/fusiondirectory.po
+++ b/dovecot/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po
index c9ee30b582..1a4199a857 100644
--- a/dovecot/locale/ug/fusiondirectory.po
+++ b/dovecot/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po
index c0059038b9..498a53471b 100644
--- a/dovecot/locale/vi_VN/fusiondirectory.po
+++ b/dovecot/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po
index 63f2f0284e..8f20753125 100644
--- a/dovecot/locale/zh/fusiondirectory.po
+++ b/dovecot/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dovecot/locale/zh_TW/fusiondirectory.po b/dovecot/locale/zh_TW/fusiondirectory.po
index feaeda3682..af7f9a67f9 100644
--- a/dovecot/locale/zh_TW/fusiondirectory.po
+++ b/dovecot/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/af_ZA/fusiondirectory.po b/dsa/locale/af_ZA/fusiondirectory.po
index f95a6b1a3b..1b958e413a 100644
--- a/dsa/locale/af_ZA/fusiondirectory.po
+++ b/dsa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po
index c1225fb9c0..cbb3acd749 100644
--- a/dsa/locale/ar/fusiondirectory.po
+++ b/dsa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po
index ba5e7b14ad..050a9b1c5a 100644
--- a/dsa/locale/ca/fusiondirectory.po
+++ b/dsa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po
index b2c6eec319..a3792d6131 100644
--- a/dsa/locale/cs_CZ/fusiondirectory.po
+++ b/dsa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po
index 78eb05bbf9..cab5d5ef77 100644
--- a/dsa/locale/de/fusiondirectory.po
+++ b/dsa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po
index cce5ba68ff..17772244c1 100644
--- a/dsa/locale/el_GR/fusiondirectory.po
+++ b/dsa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dsa/locale/en/fusiondirectory.po b/dsa/locale/en/fusiondirectory.po
index 235a668578..7065645729 100644
--- a/dsa/locale/en/fusiondirectory.po
+++ b/dsa/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po
index bf194aff66..ed5525b895 100644
--- a/dsa/locale/es/fusiondirectory.po
+++ b/dsa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po
index e0fe379491..ad05321d07 100644
--- a/dsa/locale/es_CO/fusiondirectory.po
+++ b/dsa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po
index a3dfc57627..e7cdade503 100644
--- a/dsa/locale/es_VE/fusiondirectory.po
+++ b/dsa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po
index ab859a99c7..cd109924cb 100644
--- a/dsa/locale/fa_IR/fusiondirectory.po
+++ b/dsa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po
index cfe637c9a6..e60dac2ea0 100644
--- a/dsa/locale/fi_FI/fusiondirectory.po
+++ b/dsa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po
index 8591d10170..cd704e352a 100644
--- a/dsa/locale/fr/fusiondirectory.po
+++ b/dsa/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po
index 90f2b4c75e..6480a9776e 100644
--- a/dsa/locale/hu_HU/fusiondirectory.po
+++ b/dsa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po
index 3ab548642c..aa72613f38 100644
--- a/dsa/locale/id/fusiondirectory.po
+++ b/dsa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po
index 32f830e03a..e71a97f09c 100644
--- a/dsa/locale/it_IT/fusiondirectory.po
+++ b/dsa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dsa/locale/ja/fusiondirectory.po b/dsa/locale/ja/fusiondirectory.po
index 9a17102fb6..6d35df0e14 100644
--- a/dsa/locale/ja/fusiondirectory.po
+++ b/dsa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ko/fusiondirectory.po b/dsa/locale/ko/fusiondirectory.po
index 64cbed36e6..5267718162 100644
--- a/dsa/locale/ko/fusiondirectory.po
+++ b/dsa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po
index 8c7ba396b7..e5e99bdd6b 100644
--- a/dsa/locale/lv/fusiondirectory.po
+++ b/dsa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po
index fdb79c246d..ba93a00828 100644
--- a/dsa/locale/nb/fusiondirectory.po
+++ b/dsa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po
index 2b74c38b4c..9788065a71 100644
--- a/dsa/locale/nl/fusiondirectory.po
+++ b/dsa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po
index 96f8b4fc3a..095e12034f 100644
--- a/dsa/locale/pl/fusiondirectory.po
+++ b/dsa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po
index 51fa213a71..190125f134 100644
--- a/dsa/locale/pt/fusiondirectory.po
+++ b/dsa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po
index 4c50b9c836..64acf840f4 100644
--- a/dsa/locale/pt_BR/fusiondirectory.po
+++ b/dsa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po
index edc705fd88..51007717a2 100644
--- a/dsa/locale/ru/fusiondirectory.po
+++ b/dsa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po
index 1cec9ca644..c0a8e794c7 100644
--- a/dsa/locale/ru@petr1708/fusiondirectory.po
+++ b/dsa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po
index 04659994fc..2db6d3bbb3 100644
--- a/dsa/locale/sv/fusiondirectory.po
+++ b/dsa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dsa/locale/tr_TR/fusiondirectory.po b/dsa/locale/tr_TR/fusiondirectory.po
index bcd61bda59..fdcb72f5cc 100644
--- a/dsa/locale/tr_TR/fusiondirectory.po
+++ b/dsa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po
index d8ddbb5c84..876efb6c3e 100644
--- a/dsa/locale/ug/fusiondirectory.po
+++ b/dsa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po
index 696d32c0e8..6143cd0e19 100644
--- a/dsa/locale/vi_VN/fusiondirectory.po
+++ b/dsa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po
index c0939facfe..1bac5d5f56 100644
--- a/dsa/locale/zh/fusiondirectory.po
+++ b/dsa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dsa/locale/zh_TW/fusiondirectory.po b/dsa/locale/zh_TW/fusiondirectory.po
index 4b268c2e80..91c3d7b68b 100644
--- a/dsa/locale/zh_TW/fusiondirectory.po
+++ b/dsa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/af_ZA/fusiondirectory.po b/ejbca/locale/af_ZA/fusiondirectory.po
index ce7b731356..915155fbe0 100644
--- a/ejbca/locale/af_ZA/fusiondirectory.po
+++ b/ejbca/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po
index 90c6ba6f7c..6cb41941c1 100644
--- a/ejbca/locale/ar/fusiondirectory.po
+++ b/ejbca/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po
index 4da87a2d40..8b6f26822f 100644
--- a/ejbca/locale/ca/fusiondirectory.po
+++ b/ejbca/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po
index 75f90dcfa7..f8bd42d54e 100644
--- a/ejbca/locale/cs_CZ/fusiondirectory.po
+++ b/ejbca/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po
index 523cd7bb13..1adfa5c823 100644
--- a/ejbca/locale/de/fusiondirectory.po
+++ b/ejbca/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po
index bf2d362675..f16b71d367 100644
--- a/ejbca/locale/el_GR/fusiondirectory.po
+++ b/ejbca/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ejbca/locale/en/fusiondirectory.po b/ejbca/locale/en/fusiondirectory.po
index 20cdb9a65f..ec245f59ae 100644
--- a/ejbca/locale/en/fusiondirectory.po
+++ b/ejbca/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -38,7 +38,7 @@ msgid "Branch in which ejbca certificates are stored"
 msgstr ""
 
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
-#: admin/ejbca/class_ejbcaManagement.inc:32
+#: admin/ejbca/class_ejbcaManagement.inc:33
 msgid "EJBCA"
 msgstr ""
 
@@ -54,11 +54,11 @@ msgstr ""
 msgid "Certificates associated to this object"
 msgstr ""
 
-#: admin/ejbca/class_ejbcaManagement.inc:33
+#: admin/ejbca/class_ejbcaManagement.inc:34
 msgid "EJBCA certificates management"
 msgstr ""
 
-#: admin/ejbca/class_ejbcaManagement.inc:52
+#: admin/ejbca/class_ejbcaManagement.inc:53
 msgid "Download"
 msgstr ""
 
diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po
index 70955a9638..8d8e0534b6 100644
--- a/ejbca/locale/es/fusiondirectory.po
+++ b/ejbca/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po
index 881463be3b..55bd572522 100644
--- a/ejbca/locale/es_CO/fusiondirectory.po
+++ b/ejbca/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po
index 5d0645a0b0..640b76ff51 100644
--- a/ejbca/locale/es_VE/fusiondirectory.po
+++ b/ejbca/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po
index 85a245a1ac..686614979a 100644
--- a/ejbca/locale/fa_IR/fusiondirectory.po
+++ b/ejbca/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po
index 77d0f321f6..de5c9f4d1c 100644
--- a/ejbca/locale/fi_FI/fusiondirectory.po
+++ b/ejbca/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po
index bb8fa333d1..a4ff06c4e8 100644
--- a/ejbca/locale/fr/fusiondirectory.po
+++ b/ejbca/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po
index 5f2bce703b..af11d6846d 100644
--- a/ejbca/locale/hu_HU/fusiondirectory.po
+++ b/ejbca/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po
index 47c665ad6e..24893ef52a 100644
--- a/ejbca/locale/id/fusiondirectory.po
+++ b/ejbca/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po
index aee701a1f4..bab94339a1 100644
--- a/ejbca/locale/it_IT/fusiondirectory.po
+++ b/ejbca/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ejbca/locale/ja/fusiondirectory.po b/ejbca/locale/ja/fusiondirectory.po
index 056fd17ad9..c3606be039 100644
--- a/ejbca/locale/ja/fusiondirectory.po
+++ b/ejbca/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ko/fusiondirectory.po b/ejbca/locale/ko/fusiondirectory.po
index a8d3367a18..a8398b16ed 100644
--- a/ejbca/locale/ko/fusiondirectory.po
+++ b/ejbca/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po
index 436fe60739..f7bf0f0b38 100644
--- a/ejbca/locale/lv/fusiondirectory.po
+++ b/ejbca/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po
index c5142b3a17..10223e676d 100644
--- a/ejbca/locale/nb/fusiondirectory.po
+++ b/ejbca/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po
index 653c0e60fc..3cc81b73bb 100644
--- a/ejbca/locale/nl/fusiondirectory.po
+++ b/ejbca/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po
index e2c9d2ca9c..4c20639266 100644
--- a/ejbca/locale/pl/fusiondirectory.po
+++ b/ejbca/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po
index ee2fa1f553..caab195cba 100644
--- a/ejbca/locale/pt/fusiondirectory.po
+++ b/ejbca/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po
index 863bc6b9bd..518573b555 100644
--- a/ejbca/locale/pt_BR/fusiondirectory.po
+++ b/ejbca/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po
index 790694966f..a8724bffe2 100644
--- a/ejbca/locale/ru/fusiondirectory.po
+++ b/ejbca/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po
index f961521466..d8f1a58c7f 100644
--- a/ejbca/locale/ru@petr1708/fusiondirectory.po
+++ b/ejbca/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po
index b7aaf048b7..4f4e8d1374 100644
--- a/ejbca/locale/sv/fusiondirectory.po
+++ b/ejbca/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ejbca/locale/tr_TR/fusiondirectory.po b/ejbca/locale/tr_TR/fusiondirectory.po
index 254214427f..81e2953bdf 100644
--- a/ejbca/locale/tr_TR/fusiondirectory.po
+++ b/ejbca/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po
index 46854b1c61..fb04ccdf19 100644
--- a/ejbca/locale/ug/fusiondirectory.po
+++ b/ejbca/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po
index a6865e53e7..23828ad181 100644
--- a/ejbca/locale/vi_VN/fusiondirectory.po
+++ b/ejbca/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po
index 5e0781252b..481d563140 100644
--- a/ejbca/locale/zh/fusiondirectory.po
+++ b/ejbca/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ejbca/locale/zh_TW/fusiondirectory.po b/ejbca/locale/zh_TW/fusiondirectory.po
index 19efeaa209..7b0d45d6f7 100644
--- a/ejbca/locale/zh_TW/fusiondirectory.po
+++ b/ejbca/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/af_ZA/fusiondirectory.po b/fai/locale/af_ZA/fusiondirectory.po
index 9134733e0b..0448dc1d52 100644
--- a/fai/locale/af_ZA/fusiondirectory.po
+++ b/fai/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po
index d2ed8cd0e1..38883bf354 100644
--- a/fai/locale/ar/fusiondirectory.po
+++ b/fai/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po
index f9410b702c..03b7088914 100644
--- a/fai/locale/ca/fusiondirectory.po
+++ b/fai/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po
index 7b4e9a3212..09c7ddcd4a 100644
--- a/fai/locale/cs_CZ/fusiondirectory.po
+++ b/fai/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po
index cdf3a0b6b9..fef50cf433 100644
--- a/fai/locale/de/fusiondirectory.po
+++ b/fai/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po
index 355d17c9db..a405255775 100644
--- a/fai/locale/el_GR/fusiondirectory.po
+++ b/fai/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fai/locale/en/fusiondirectory.po b/fai/locale/en/fusiondirectory.po
index 9297d27b18..c8a408a381 100644
--- a/fai/locale/en/fusiondirectory.po
+++ b/fai/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -52,6 +52,57 @@ msgstr ""
 msgid "s"
 msgstr ""
 
+#: admin/systems/class_faiLogView.inc:57
+msgid "Sort down"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:59
+msgid "Sort up"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:71
+msgid "File"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:72
+msgid "Date"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:149
+#: admin/systems/class_faiLogView.inc:152
+msgid "Available logs"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:157
+msgid "Selected log"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:161
+msgid "Content of the selected log"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:173
+msgid "FAI Logs"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:174
+msgid "FAI Logs Viewer"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:201
+#: admin/systems/class_faiLogView.inc:243 admin/fai/class_faiDiskEntry.inc:146
+msgid "Error"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:223
+msgid "Selected file"
+msgstr ""
+
+#: admin/systems/class_faiLogView.inc:231
+#, php-format
+msgid "Selected file: %s"
+msgstr ""
+
 #: admin/systems/class_faiStartup.inc:65
 msgid "Full automated installation"
 msgstr ""
@@ -159,28 +210,28 @@ msgstr ""
 msgid "How this repository is organized (only for RPM repositories)"
 msgstr ""
 
-#: admin/systems/services/repository/class_serviceRepository.inc:160
+#: admin/systems/services/repository/class_serviceRepository.inc:161
 msgid "Package repository"
 msgstr ""
 
-#: admin/systems/services/repository/class_serviceRepository.inc:161
+#: admin/systems/services/repository/class_serviceRepository.inc:162
 msgid "Package repository information"
 msgstr ""
 
-#: admin/systems/services/repository/class_serviceRepository.inc:173
+#: admin/systems/services/repository/class_serviceRepository.inc:174
 msgid "Repositories"
 msgstr ""
 
-#: admin/systems/services/repository/class_serviceRepository.inc:178
+#: admin/systems/services/repository/class_serviceRepository.inc:179
 msgid "Repositories this server hosts"
 msgstr ""
 
-#: admin/systems/services/repository/class_serviceRepository.inc:240
-#: admin/systems/services/repository/class_serviceRepository.inc:257
-#: admin/systems/services/repository/class_serviceRepository.inc:261
-#: admin/fai/class_faiPartitionTable.inc:215
-#: admin/fai/class_faiPartitionTable.inc:256
-#: admin/fai/class_faiPackage.inc:251 admin/fai/class_faiTemplate.inc:109
+#: admin/systems/services/repository/class_serviceRepository.inc:241
+#: admin/systems/services/repository/class_serviceRepository.inc:258
+#: admin/systems/services/repository/class_serviceRepository.inc:262
+#: admin/fai/class_faiPackage.inc:251 admin/fai/class_faiPartitionTable.inc:239
+#: admin/fai/class_faiPartitionTable.inc:280
+#: admin/fai/class_faiTemplate.inc:109
 msgid "LDAP error"
 msgstr ""
 
@@ -225,171 +276,6 @@ msgstr ""
 msgid "Directory in which argonaut-fai-monitor will store its log"
 msgstr ""
 
-#: admin/systems/class_faiLogView.inc:57
-msgid "Sort down"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:59
-msgid "Sort up"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:71
-msgid "File"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:72
-msgid "Date"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:151
-#: admin/systems/class_faiLogView.inc:154
-msgid "Available logs"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:159
-msgid "Selected log"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:163
-msgid "Content of the selected log"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:175
-msgid "FAI Logs"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:176
-msgid "FAI Logs Viewer"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:204
-#: admin/systems/class_faiLogView.inc:239 admin/fai/class_faiDiskEntry.inc:145
-msgid "Error"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:219
-msgid "Selected file"
-msgstr ""
-
-#: admin/systems/class_faiLogView.inc:227
-#, php-format
-msgid "Selected file: %s"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:111
-msgid "Add RAID"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:115
-msgid "Add LVM"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:289
-msgid "Partition table"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:290
-#: admin/fai/class_faiPartitionTable.inc:293
-msgid "FAI partition table"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:309
-#: admin/fai/class_faiTemplateEntry.inc:139 admin/fai/class_faiPackage.inc:396
-#: admin/fai/class_faiHook.inc:48 admin/fai/class_faiTemplate.inc:166
-#: admin/fai/class_faiProfile.inc:49 admin/fai/class_faiVariable.inc:48
-#: admin/fai/class_faiScript.inc:50
-msgid "Properties"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:312
-#: admin/fai/class_faiPackage.inc:399 admin/fai/class_faiHook.inc:51
-#: admin/fai/class_faiTemplate.inc:169 admin/fai/class_faiProfile.inc:52
-#: admin/fai/class_faiVariable.inc:51 admin/fai/class_faiScript.inc:53
-msgid "Class name"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:312 admin/fai/class_faiProfile.inc:52
-msgid "Partition table class name"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:316
-#: admin/fai/class_faiTemplateEntry.inc:146 admin/fai/class_faiPackage.inc:403
-#: admin/fai/class_faiDiskEntry.inc:239 admin/fai/class_faiHook.inc:55
-#: admin/fai/class_faiHook.inc:73 admin/fai/class_faiTemplate.inc:173
-#: admin/fai/class_faiPartition.inc:246 admin/fai/class_faiProfile.inc:56
-#: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
-msgid "Description"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:316
-#: admin/fai/class_faiPackage.inc:403 admin/fai/class_faiHook.inc:55
-#: admin/fai/class_faiTemplate.inc:173 admin/fai/class_faiProfile.inc:56
-#: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiScript.inc:57
-msgid "Short description of the class"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:322
-msgid "Discs"
-msgstr ""
-
-#: admin/fai/class_faiPartitionTable.inc:329
-#: admin/fai/class_faiDiskEntry.inc:269
-msgid "Partitions in this class"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:142
-msgid "File path"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:142
-msgid "Complete absolute template file path and name"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:146
-msgid "Short description of the file"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:155
-msgid "Template attributes"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:159
-msgid "Template file content"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:159
-msgid "Content of the template file"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:163
-msgid "Owner and group of the file"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:166
-msgid "Owner"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:166
-msgid "File owner"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:171
-msgid "Group"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:171
-msgid "File group"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:180
-msgid "Access"
-msgstr ""
-
-#: admin/fai/class_faiTemplateEntry.inc:180
-msgid "Access rights"
-msgstr ""
-
 #: admin/fai/class_faiPackage.inc:163
 msgid "Mark for installation"
 msgstr ""
@@ -426,11 +312,42 @@ msgstr ""
 msgid "FAI Package"
 msgstr ""
 
-#: admin/fai/class_faiPackage.inc:399 admin/fai/class_faiHook.inc:51
-#: admin/fai/class_faiVariable.inc:51 admin/fai/class_faiScript.inc:53
+#: admin/fai/class_faiPackage.inc:396 admin/fai/class_faiPartitionTable.inc:331
+#: admin/fai/class_faiProfile.inc:49 admin/fai/class_faiScript.inc:50
+#: admin/fai/class_faiTemplate.inc:166 admin/fai/class_faiVariable.inc:48
+#: admin/fai/class_faiHook.inc:48 admin/fai/class_faiTemplateEntry.inc:139
+msgid "Properties"
+msgstr ""
+
+#: admin/fai/class_faiPackage.inc:399 admin/fai/class_faiPartitionTable.inc:334
+#: admin/fai/class_faiProfile.inc:52 admin/fai/class_faiScript.inc:53
+#: admin/fai/class_faiTemplate.inc:169 admin/fai/class_faiVariable.inc:51
+#: admin/fai/class_faiHook.inc:51
+msgid "Class name"
+msgstr ""
+
+#: admin/fai/class_faiPackage.inc:399 admin/fai/class_faiScript.inc:53
+#: admin/fai/class_faiVariable.inc:51 admin/fai/class_faiHook.inc:51
 msgid "Variables class name"
 msgstr ""
 
+#: admin/fai/class_faiPackage.inc:403 admin/fai/class_faiDiskEntry.inc:247
+#: admin/fai/class_faiPartitionTable.inc:338 admin/fai/class_faiProfile.inc:56
+#: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
+#: admin/fai/class_faiTemplate.inc:173 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
+#: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
+#: admin/fai/class_faiTemplateEntry.inc:146
+msgid "Description"
+msgstr ""
+
+#: admin/fai/class_faiPackage.inc:403 admin/fai/class_faiPartitionTable.inc:338
+#: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiScript.inc:57
+#: admin/fai/class_faiTemplate.inc:173 admin/fai/class_faiVariable.inc:55
+#: admin/fai/class_faiHook.inc:55
+msgid "Short description of the class"
+msgstr ""
+
 #: admin/fai/class_faiPackage.inc:412
 msgid "Debian release concerned"
 msgstr ""
@@ -456,133 +373,222 @@ msgid "Packages in this class"
 msgstr ""
 
 #: admin/fai/class_faiDiskEntry.inc:101
-msgid "encrypted"
-msgstr ""
-
-#: admin/fai/class_faiDiskEntry.inc:104
 msgid "bootable"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:107
+#: admin/fai/class_faiDiskEntry.inc:104
 msgid "preserve"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:146
+#: admin/fai/class_faiDiskEntry.inc:147
 #, php-format
 msgid ""
 "The partition cannot be deleted while it is used in the \"%s\" disk "
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:218
+#: admin/fai/class_faiDiskEntry.inc:226
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:219
+#: admin/fai/class_faiDiskEntry.inc:227
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:230 admin/fai/class_faiDiskEntry.inc:246
+#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:233 admin/fai/class_faiHook.inc:69
-#: admin/fai/class_faiSimplePluginClass.inc:51
+#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiSimplePluginClass.inc:51 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiVariable.inc:69
-#: admin/fai/class_faiScript.inc:71
 #: admin/fai/packageSelect/selectPackage-list.xml:40
+#: admin/fai/class_faiHook.inc:69
 msgid "Name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:233
+#: admin/fai/class_faiDiskEntry.inc:241
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:239 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:243
+#: admin/fai/class_faiDiskEntry.inc:251
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:243
+#: admin/fai/class_faiDiskEntry.inc:251
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:246
+#: admin/fai/class_faiDiskEntry.inc:254
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:246
+#: admin/fai/class_faiDiskEntry.inc:254
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:249
+#: admin/fai/class_faiDiskEntry.inc:257
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:258
+#: admin/fai/class_faiDiskEntry.inc:263
+msgid "Random init"
+msgstr ""
+
+#: admin/fai/class_faiDiskEntry.inc:263
+msgid "Initialise all encrypted partitions with random data"
+msgstr ""
+
+#: admin/fai/class_faiDiskEntry.inc:270
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263 admin/fai/class_faiPartition.inc:422
+#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:275
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:538
+#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiPartitionTable.inc:351
+msgid "Partitions in this class"
+msgstr ""
+
+#: admin/fai/class_faiDiskEntry.inc:579
 msgid ""
 "You have more than four primary partition table entries in your configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:542
+#: admin/fai/class_faiDiskEntry.inc:583
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:28
-msgid "Hook"
+#: admin/fai/class_faiPackageConfiguration.inc:33
+#: admin/fai/class_faiPackageConfiguration.inc:36
+msgid "FAI package configuration"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:29 admin/fai/class_faiHook.inc:32
-msgid "FAI hook"
+#: admin/fai/class_faiPackageConfiguration.inc:34
+msgid "Configure debconf options of a package"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:61
-msgid "Hooks"
+#: admin/fai/class_faiPackageConfiguration.inc:80
+#, php-format
+msgid "Debconf information for package \"%s\""
+msgstr ""
+
+#: admin/fai/class_faiPackageConfiguration.inc:172
+msgid "Warning"
+msgstr ""
+
+#: admin/fai/class_faiPackageConfiguration.inc:173
+#, php-format
+msgid ""
+"The debconf questions \"%s\" are dynamically generated during package "
+"installation and requires choosing between specific options which cannot be "
+"presented here. The entered text needs to be one of the valid choices in "
+"order to take effect."
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:108
+msgid "Add disk"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:115
+msgid "Add RAID"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:123
+msgid "Add LVM"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:131
+msgid "Add cryptsetup"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:311
+msgid "Partition table"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:312
+#: admin/fai/class_faiPartitionTable.inc:315
+msgid "FAI partition table"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:334 admin/fai/class_faiProfile.inc:52
+msgid "Partition table class name"
+msgstr ""
+
+#: admin/fai/class_faiPartitionTable.inc:344
+msgid "Discs"
+msgstr ""
+
+#: admin/fai/class_faiProfile.inc:30
+msgid "Profile"
+msgstr ""
+
+#: admin/fai/class_faiProfile.inc:31
+msgid "FAI profile"
+msgstr ""
+
+#: admin/fai/class_faiProfile.inc:34
+msgid "FAI Profile"
+msgstr ""
+
+#: admin/fai/class_faiProfile.inc:63
+msgid "FAI classes"
+msgstr ""
+
+#: admin/fai/class_faiProfile.inc:63
+msgid "FAI classes which are part of this profile"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:65 admin/fai/class_faiVariable.inc:65
-#: admin/fai/class_faiScript.inc:67
+#: admin/fai/class_faiScript.inc:30 admin/fai/class_faiScript.inc:84
+#: admin/fai/class_faiHook.inc:85
+msgid "Script"
+msgstr ""
+
+#: admin/fai/class_faiScript.inc:31 admin/fai/class_faiScript.inc:34
+msgid "FAI script"
+msgstr ""
+
+#: admin/fai/class_faiScript.inc:63
+msgid "Scripts"
+msgstr ""
+
+#: admin/fai/class_faiScript.inc:67 admin/fai/class_faiVariable.inc:65
+#: admin/fai/class_faiHook.inc:65
 msgid "Variables in this class"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:69 admin/fai/class_faiVariable.inc:69
-#: admin/fai/class_faiScript.inc:71
+#: admin/fai/class_faiScript.inc:71 admin/fai/class_faiVariable.inc:69
+#: admin/fai/class_faiHook.inc:69
 msgid "The name of the variable"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:73 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiScript.inc:75
+#: admin/fai/class_faiScript.inc:75 admin/fai/class_faiVariable.inc:73
+#: admin/fai/class_faiHook.inc:73
 msgid "A short description of the variable"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:77
-msgid "Task"
+#: admin/fai/class_faiScript.inc:79
+msgid "Priority"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:85 admin/fai/class_faiScript.inc:30
-#: admin/fai/class_faiScript.inc:84
-msgid "Script"
+#: admin/fai/class_faiScript.inc:79
+msgid "Priority of this script (smaller is done first)"
 msgstr ""
 
-#: admin/fai/class_faiHook.inc:85
-msgid "The script of this hook"
+#: admin/fai/class_faiScript.inc:84
+msgid "The script itself"
 msgstr ""
 
 #: admin/fai/class_faiTemplate.inc:131
@@ -610,33 +616,6 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiPackageConfiguration.inc:33
-#: admin/fai/class_faiPackageConfiguration.inc:36
-msgid "FAI package configuration"
-msgstr ""
-
-#: admin/fai/class_faiPackageConfiguration.inc:34
-msgid "Configure debconf options of a package"
-msgstr ""
-
-#: admin/fai/class_faiPackageConfiguration.inc:80
-#, php-format
-msgid "Debconf information for package \"%s\""
-msgstr ""
-
-#: admin/fai/class_faiPackageConfiguration.inc:172
-msgid "Warning"
-msgstr ""
-
-#: admin/fai/class_faiPackageConfiguration.inc:173
-#, php-format
-msgid ""
-"The debconf questions \"%s\" are dynamically generated during package "
-"installation and requires choosing between specific options which cannot be "
-"presented here. The entered text needs to be one of the valid choices in "
-"order to take effect."
-msgstr ""
-
 #: admin/fai/class_faiPartition.inc:30
 msgid "Type of sizing - fixed, dynamic or all remaining space"
 msgstr ""
@@ -689,7 +668,7 @@ msgstr ""
 msgid "FAI partition entry"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:229
+#: admin/fai/class_faiPartition.inc:229 admin/fai/class_faiPartition.inc:292
 msgid "Partition"
 msgstr ""
 
@@ -701,12 +680,12 @@ msgstr ""
 msgid "Partition type"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:237 admin/fai/class_faiPartition.inc:374
+#: admin/fai/class_faiPartition.inc:237 admin/fai/class_faiPartition.inc:379
 msgid "Primary"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:237 admin/fai/class_faiPartition.inc:371
-#: admin/fai/class_faiPartition.inc:375
+#: admin/fai/class_faiPartition.inc:237 admin/fai/class_faiPartition.inc:376
+#: admin/fai/class_faiPartition.inc:380
 msgid "Logical"
 msgstr ""
 
@@ -734,169 +713,239 @@ msgstr ""
 msgid "Spare"
 msgstr ""
 
+#: admin/fai/class_faiPartition.inc:269
+msgid "Spare Raid device"
+msgstr ""
+
 #: admin/fai/class_faiPartition.inc:275
 msgid "Missing"
 msgstr ""
 
+#: admin/fai/class_faiPartition.inc:275
+msgid "Missing Raid device"
+msgstr ""
+
 #: admin/fai/class_faiPartition.inc:292
+msgid "Partition to encrypt"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:296
+msgid "Password"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:296
+msgid ""
+"Password to use for encryption. Leave empty to use a encryption key file "
+"instead."
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:300
 msgid "Resize"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:292
+#: admin/fai/class_faiPartition.inc:300
 msgid "Resize existing partition"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:296
+#: admin/fai/class_faiPartition.inc:304
 msgid "Bootable"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:296
+#: admin/fai/class_faiPartition.inc:304
 msgid "Wether or not this partition can be booted"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:300
+#: admin/fai/class_faiPartition.inc:308
 msgid "Preserve"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:303
+#: admin/fai/class_faiPartition.inc:308
+msgid "Does the partition need to be preserved"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:311
 msgid "Never"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:303
+#: admin/fai/class_faiPartition.inc:311
 msgid "Always"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:303
+#: admin/fai/class_faiPartition.inc:311
 msgid "Reinstall"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:308 admin/fai/class_faiPartition.inc:311
+#: admin/fai/class_faiPartition.inc:316 admin/fai/class_faiPartition.inc:319
 msgid "Filesystem"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:311
+#: admin/fai/class_faiPartition.inc:319
 msgid "The filesystem this partition should be formatted with"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
-msgid "swap space"
+#: admin/fai/class_faiPartition.inc:322
+msgid "swap"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
+msgid "fat32"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:322
 msgid "ext2"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "ext3"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "ext4"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "reiser fs"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "xfs"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "btrfs"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:314
+#: admin/fai/class_faiPartition.inc:322
 msgid "LVM/RAID"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:317
-msgid "Encrypted"
+#: admin/fai/class_faiPartition.inc:325
+msgid "Mount point"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:317
-msgid "Wether or not this partition is encrypted"
+#: admin/fai/class_faiPartition.inc:325
+msgid "Mount point for this partition"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:321
-msgid "Mount point"
+#: admin/fai/class_faiPartition.inc:331
+msgid "Options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:321
-msgid "Mount point for this partition"
+#: admin/fai/class_faiPartition.inc:334
+msgid "Mount options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:327
-msgid "Options"
+#: admin/fai/class_faiPartition.inc:334
+msgid "Filesystem mount options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:330
+#: admin/fai/class_faiPartition.inc:339
 msgid "Create options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:330
+#: admin/fai/class_faiPartition.inc:339
 msgid "Filesystem create options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:334
+#: admin/fai/class_faiPartition.inc:343
 msgid "Tune options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:334
+#: admin/fai/class_faiPartition.inc:343
 msgid "Filesystem tune options"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:338
-msgid "Mount options"
-msgstr ""
-
-#: admin/fai/class_faiPartition.inc:338
-msgid "Filesystem mount options"
-msgstr ""
-
-#: admin/fai/class_faiPartition.inc:380
+#: admin/fai/class_faiPartition.inc:385
 msgid "RAID 0"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:381
+#: admin/fai/class_faiPartition.inc:386
 msgid "RAID 1"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:382
+#: admin/fai/class_faiPartition.inc:387
 msgid "RAID 5"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:383
+#: admin/fai/class_faiPartition.inc:388
 msgid "RAID 6"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:478
+#: admin/fai/class_faiPartition.inc:392
+msgid "LUKS"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:393
+msgid "Swap"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:394
+msgid "tmp"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:434
+msgid "Encryption settings"
+msgstr ""
+
+#: admin/fai/class_faiPartition.inc:507
 msgid "Raid arrays must contain at least two partitions!"
 msgstr ""
 
-#: admin/fai/class_faiPartition.inc:480
+#: admin/fai/class_faiPartition.inc:509
 msgid ""
 "Raid 0 arrays can only be realized with a combination of two partitions!"
 msgstr ""
 
-#: admin/fai/class_faiProfile.inc:30
-msgid "Profile"
+#: admin/fai/class_faiVariable.inc:28
+msgid "Variable"
 msgstr ""
 
-#: admin/fai/class_faiProfile.inc:31
-msgid "FAI profile"
+#: admin/fai/class_faiVariable.inc:29 admin/fai/class_faiVariable.inc:32
+msgid "FAI variable"
 msgstr ""
 
-#: admin/fai/class_faiProfile.inc:34
-msgid "FAI Profile"
+#: admin/fai/class_faiVariable.inc:61
+msgid "Variables"
 msgstr ""
 
-#: admin/fai/class_faiProfile.inc:63
-msgid "FAI classes"
+#: admin/fai/class_faiVariable.inc:77
+msgid "Content"
 msgstr ""
 
-#: admin/fai/class_faiProfile.inc:63
-msgid "FAI classes which are part of this profile"
+#: admin/fai/class_faiVariable.inc:77
+msgid "The content of the variable"
+msgstr ""
+
+#: admin/fai/packageSelect/selectPackage-list.xml:11
+msgid "Please select the desired entries"
+msgstr ""
+
+#: admin/fai/packageSelect/selectPackage-list.xml:48
+msgid "Version"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:28
+msgid "Hook"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:29 admin/fai/class_faiHook.inc:32
+msgid "FAI hook"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:61
+msgid "Hooks"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:77
+msgid "Task"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:77
+msgid "Task to run"
+msgstr ""
+
+#: admin/fai/class_faiHook.inc:85
+msgid "The script of this hook"
 msgstr ""
 
 #: admin/fai/class_faiManagement.inc:118
@@ -911,52 +960,56 @@ msgstr ""
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
-#: admin/fai/class_faiVariable.inc:28
-msgid "Variable"
+#: admin/fai/class_faiTemplateEntry.inc:142
+msgid "File path"
 msgstr ""
 
-#: admin/fai/class_faiVariable.inc:29 admin/fai/class_faiVariable.inc:32
-msgid "FAI variable"
+#: admin/fai/class_faiTemplateEntry.inc:142
+msgid "Complete absolute template file path and name"
 msgstr ""
 
-#: admin/fai/class_faiVariable.inc:61
-msgid "Variables"
+#: admin/fai/class_faiTemplateEntry.inc:146
+msgid "Short description of the file"
 msgstr ""
 
-#: admin/fai/class_faiVariable.inc:77
-msgid "Content"
+#: admin/fai/class_faiTemplateEntry.inc:155
+msgid "Template attributes"
 msgstr ""
 
-#: admin/fai/class_faiVariable.inc:77
-msgid "The content of the variable"
+#: admin/fai/class_faiTemplateEntry.inc:159
+msgid "Template file content"
 msgstr ""
 
-#: admin/fai/class_faiScript.inc:31 admin/fai/class_faiScript.inc:34
-msgid "FAI script"
+#: admin/fai/class_faiTemplateEntry.inc:159
+msgid "Content of the template file"
 msgstr ""
 
-#: admin/fai/class_faiScript.inc:63
-msgid "Scripts"
+#: admin/fai/class_faiTemplateEntry.inc:163
+msgid "Owner and group of the file"
 msgstr ""
 
-#: admin/fai/class_faiScript.inc:79
-msgid "Priority"
+#: admin/fai/class_faiTemplateEntry.inc:166
+msgid "Owner"
 msgstr ""
 
-#: admin/fai/class_faiScript.inc:79
-msgid "Priority of this script (smaller is done first)"
+#: admin/fai/class_faiTemplateEntry.inc:166
+msgid "File owner"
 msgstr ""
 
-#: admin/fai/class_faiScript.inc:84
-msgid "The script itself"
+#: admin/fai/class_faiTemplateEntry.inc:171
+msgid "Group"
 msgstr ""
 
-#: admin/fai/packageSelect/selectPackage-list.xml:11
-msgid "Please select the desired entries"
+#: admin/fai/class_faiTemplateEntry.inc:171
+msgid "File group"
 msgstr ""
 
-#: admin/fai/packageSelect/selectPackage-list.xml:48
-msgid "Version"
+#: admin/fai/class_faiTemplateEntry.inc:180
+msgid "Access"
+msgstr ""
+
+#: admin/fai/class_faiTemplateEntry.inc:180
+msgid "Access rights"
 msgstr ""
 
 #: admin/fai/packageSelect/selectPackage-filter.tpl.c:2
diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po
index e8ef04c427..52515bf3cd 100644
--- a/fai/locale/es/fusiondirectory.po
+++ b/fai/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po
index 5dd044673a..39c23f1890 100644
--- a/fai/locale/es_CO/fusiondirectory.po
+++ b/fai/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po
index 8a2644342a..36d65fda03 100644
--- a/fai/locale/es_VE/fusiondirectory.po
+++ b/fai/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po
index 258853553e..e8391d465d 100644
--- a/fai/locale/fa_IR/fusiondirectory.po
+++ b/fai/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po
index fe1deec7c1..f2f6b32175 100644
--- a/fai/locale/fi_FI/fusiondirectory.po
+++ b/fai/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po
index dea07e36ce..43f6b344dd 100644
--- a/fai/locale/fr/fusiondirectory.po
+++ b/fai/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po
index 471d83d936..9e08444d03 100644
--- a/fai/locale/hu_HU/fusiondirectory.po
+++ b/fai/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po
index 1e28762e85..52793f0dff 100644
--- a/fai/locale/id/fusiondirectory.po
+++ b/fai/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index b05c25bfa0..c996f6a575 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fai/locale/ja/fusiondirectory.po b/fai/locale/ja/fusiondirectory.po
index 35d4aa0250..5579fdc277 100644
--- a/fai/locale/ja/fusiondirectory.po
+++ b/fai/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ko/fusiondirectory.po b/fai/locale/ko/fusiondirectory.po
index 9c38dbab74..1a249172b3 100644
--- a/fai/locale/ko/fusiondirectory.po
+++ b/fai/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2019
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -611,7 +611,7 @@ msgstr ""
 
 #: admin/fai/class_faiPackage.inc:409 admin/systems/class_faiStartup.inc:103
 msgid "Repository"
-msgstr ""
+msgstr "리포지토리"
 
 #: admin/fai/class_faiPackage.inc:412 admin/systems/class_faiStartup.inc:91
 #: admin/systems/services/repository/class_serviceRepository.inc:40
@@ -649,15 +649,15 @@ msgstr ""
 
 #: admin/fai/class_faiHook.inc:28
 msgid "Hook"
-msgstr ""
+msgstr "Hook"
 
 #: admin/fai/class_faiHook.inc:29 admin/fai/class_faiHook.inc:32
 msgid "FAI hook"
-msgstr ""
+msgstr "FAI hook"
 
 #: admin/fai/class_faiHook.inc:61
 msgid "Hooks"
-msgstr ""
+msgstr "Hooks"
 
 #: admin/fai/class_faiHook.inc:77
 msgid "Task"
@@ -669,7 +669,7 @@ msgstr ""
 
 #: admin/fai/class_faiHook.inc:85
 msgid "The script of this hook"
-msgstr ""
+msgstr "이 hook의 스크립트"
 
 #: admin/fai/class_faiTemplate.inc:131
 #, php-format
diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po
index a5eb58ac4f..b832eab5ac 100644
--- a/fai/locale/lv/fusiondirectory.po
+++ b/fai/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po
index 067ece3575..e839483dd9 100644
--- a/fai/locale/nb/fusiondirectory.po
+++ b/fai/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po
index 8f5f3342f0..e337d32fa6 100644
--- a/fai/locale/nl/fusiondirectory.po
+++ b/fai/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po
index 64378fc1d1..6fb00fbae7 100644
--- a/fai/locale/pl/fusiondirectory.po
+++ b/fai/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po
index 17ee0e72f7..cab065e4cf 100644
--- a/fai/locale/pt/fusiondirectory.po
+++ b/fai/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po
index 88b73667cc..297733fb68 100644
--- a/fai/locale/pt_BR/fusiondirectory.po
+++ b/fai/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po
index 7dd4862be5..ef0990ad93 100644
--- a/fai/locale/ru/fusiondirectory.po
+++ b/fai/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po
index cdd40bfa0c..5386e53a5d 100644
--- a/fai/locale/ru@petr1708/fusiondirectory.po
+++ b/fai/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po
index 5b908514d6..cb5da1669c 100644
--- a/fai/locale/sv/fusiondirectory.po
+++ b/fai/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fai/locale/tr_TR/fusiondirectory.po b/fai/locale/tr_TR/fusiondirectory.po
index 798d171fbb..1af9065272 100644
--- a/fai/locale/tr_TR/fusiondirectory.po
+++ b/fai/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po
index 2b74c6068c..212e3d6382 100644
--- a/fai/locale/ug/fusiondirectory.po
+++ b/fai/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po
index 9183515173..4d71303f60 100644
--- a/fai/locale/vi_VN/fusiondirectory.po
+++ b/fai/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po
index 43033f547c..afed600996 100644
--- a/fai/locale/zh/fusiondirectory.po
+++ b/fai/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fai/locale/zh_TW/fusiondirectory.po b/fai/locale/zh_TW/fusiondirectory.po
index 4e5ba13a66..8db993b8c1 100644
--- a/fai/locale/zh_TW/fusiondirectory.po
+++ b/fai/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/af_ZA/fusiondirectory.po b/freeradius/locale/af_ZA/fusiondirectory.po
index 552e044389..1c515800c9 100644
--- a/freeradius/locale/af_ZA/fusiondirectory.po
+++ b/freeradius/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po
index b768153922..a8baf0ebe1 100644
--- a/freeradius/locale/ar/fusiondirectory.po
+++ b/freeradius/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po
index d3a0d7266d..2262dfe461 100644
--- a/freeradius/locale/ca/fusiondirectory.po
+++ b/freeradius/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po
index 2fcd4da459..c41533a482 100644
--- a/freeradius/locale/cs_CZ/fusiondirectory.po
+++ b/freeradius/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po
index 631361ee05..786e8b805e 100644
--- a/freeradius/locale/de/fusiondirectory.po
+++ b/freeradius/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po
index d5a913ac90..fe51f7820d 100644
--- a/freeradius/locale/el_GR/fusiondirectory.po
+++ b/freeradius/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/freeradius/locale/en/fusiondirectory.po b/freeradius/locale/en/fusiondirectory.po
index 1623b3fd21..8293be5490 100644
--- a/freeradius/locale/en/fusiondirectory.po
+++ b/freeradius/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,48 +17,48 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/freeradius/class_freeradiusAccount.inc:35
 #: admin/freeradius/class_freeradiusGroup.inc:34
+#: personal/freeradius/class_freeradiusAccount.inc:35
 msgid "Freeradius"
 msgstr ""
 
-#: personal/freeradius/class_freeradiusAccount.inc:36
 #: admin/freeradius/class_freeradiusGroup.inc:35
+#: personal/freeradius/class_freeradiusAccount.inc:36
 msgid "This Plugin is for Radius accounting based in FreeRadius"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:51
 #: personal/freeradius/class_freeradiusAccount.inc:55
-#: admin/freeradius/class_freeradiusGroup.inc:49
 msgid "Support 802.1x"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:54
 #: personal/freeradius/class_freeradiusAccount.inc:58
-#: admin/freeradius/class_freeradiusGroup.inc:52
 msgid "Tunnel medium type"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:55
 #: personal/freeradius/class_freeradiusAccount.inc:58
-#: admin/freeradius/class_freeradiusGroup.inc:53
 msgid "Name of the tunnel medium type"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:61
 #: personal/freeradius/class_freeradiusAccount.inc:63
-#: admin/freeradius/class_freeradiusGroup.inc:59
 msgid "Tunnel type"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:62
 #: personal/freeradius/class_freeradiusAccount.inc:63
-#: admin/freeradius/class_freeradiusGroup.inc:60
 msgid "Name of the tunnel type"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:68
 #: personal/freeradius/class_freeradiusAccount.inc:68
-#: admin/freeradius/class_freeradiusGroup.inc:66
 msgid "VLAN id"
 msgstr ""
 
+#: admin/freeradius/class_freeradiusGroup.inc:69
 #: personal/freeradius/class_freeradiusAccount.inc:68
-#: admin/freeradius/class_freeradiusGroup.inc:67
 msgid "VLAN identifier"
 msgstr ""
 
diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po
index 6d0a0f50d5..5796bcfe54 100644
--- a/freeradius/locale/es/fusiondirectory.po
+++ b/freeradius/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po
index a5bf17cc7b..a9e8357a15 100644
--- a/freeradius/locale/es_CO/fusiondirectory.po
+++ b/freeradius/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po
index 7fc5f57aa5..f3cf0c5097 100644
--- a/freeradius/locale/es_VE/fusiondirectory.po
+++ b/freeradius/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po
index ca7a21dcc4..a18b8d96b0 100644
--- a/freeradius/locale/fa_IR/fusiondirectory.po
+++ b/freeradius/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po
index e5800f6728..eef55965cc 100644
--- a/freeradius/locale/fi_FI/fusiondirectory.po
+++ b/freeradius/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po
index 1056b545cd..a071268b5a 100644
--- a/freeradius/locale/fr/fusiondirectory.po
+++ b/freeradius/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po
index beb9e0dd0e..5743596208 100644
--- a/freeradius/locale/hu_HU/fusiondirectory.po
+++ b/freeradius/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po
index 826c296705..d52f722134 100644
--- a/freeradius/locale/id/fusiondirectory.po
+++ b/freeradius/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po
index fda47274d4..810f4551b9 100644
--- a/freeradius/locale/it_IT/fusiondirectory.po
+++ b/freeradius/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/freeradius/locale/ja/fusiondirectory.po b/freeradius/locale/ja/fusiondirectory.po
index ee9f3f5910..623994a549 100644
--- a/freeradius/locale/ja/fusiondirectory.po
+++ b/freeradius/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ko/fusiondirectory.po b/freeradius/locale/ko/fusiondirectory.po
index 43d6b43829..63b89c1b12 100644
--- a/freeradius/locale/ko/fusiondirectory.po
+++ b/freeradius/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po
index 732f92f3aa..0ae51d53ae 100644
--- a/freeradius/locale/lv/fusiondirectory.po
+++ b/freeradius/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po
index 631d156b51..12533e5f3f 100644
--- a/freeradius/locale/nb/fusiondirectory.po
+++ b/freeradius/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po
index 77c2a9e32f..2f8f6ae1d2 100644
--- a/freeradius/locale/nl/fusiondirectory.po
+++ b/freeradius/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po
index fe58c9a8de..ef51971403 100644
--- a/freeradius/locale/pl/fusiondirectory.po
+++ b/freeradius/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po
index ff36f1e7ec..c6ecdf1405 100644
--- a/freeradius/locale/pt/fusiondirectory.po
+++ b/freeradius/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po
index b93c05f9d8..fe643f6028 100644
--- a/freeradius/locale/pt_BR/fusiondirectory.po
+++ b/freeradius/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po
index ebacd5f8bc..8db018dd86 100644
--- a/freeradius/locale/ru/fusiondirectory.po
+++ b/freeradius/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po
index 0dca6eb1fe..633de3f6c6 100644
--- a/freeradius/locale/ru@petr1708/fusiondirectory.po
+++ b/freeradius/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po
index b8672d4eb8..e031fe6fb1 100644
--- a/freeradius/locale/sv/fusiondirectory.po
+++ b/freeradius/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/freeradius/locale/tr_TR/fusiondirectory.po b/freeradius/locale/tr_TR/fusiondirectory.po
index 2367017425..c40be8c540 100644
--- a/freeradius/locale/tr_TR/fusiondirectory.po
+++ b/freeradius/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po
index e174806d80..9eb06d1468 100644
--- a/freeradius/locale/ug/fusiondirectory.po
+++ b/freeradius/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po
index 0fa320a6eb..e89fb4b2e3 100644
--- a/freeradius/locale/vi_VN/fusiondirectory.po
+++ b/freeradius/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po
index 5fe8469d9f..a2362c2c8b 100644
--- a/freeradius/locale/zh/fusiondirectory.po
+++ b/freeradius/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/freeradius/locale/zh_TW/fusiondirectory.po b/freeradius/locale/zh_TW/fusiondirectory.po
index 9db86d9854..085618daf9 100644
--- a/freeradius/locale/zh_TW/fusiondirectory.po
+++ b/freeradius/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/af_ZA/fusiondirectory.po b/fusioninventory/locale/af_ZA/fusiondirectory.po
index ef037b8087..76f520808c 100644
--- a/fusioninventory/locale/af_ZA/fusiondirectory.po
+++ b/fusioninventory/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po
index 60c8862067..14a50508ef 100644
--- a/fusioninventory/locale/ar/fusiondirectory.po
+++ b/fusioninventory/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po
index 2478e0a3e1..d352986c2c 100644
--- a/fusioninventory/locale/ca/fusiondirectory.po
+++ b/fusioninventory/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po
index 14469ee8e6..f514a8d15e 100644
--- a/fusioninventory/locale/cs_CZ/fusiondirectory.po
+++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po
index a4a85f6a56..f3291ea5ff 100644
--- a/fusioninventory/locale/de/fusiondirectory.po
+++ b/fusioninventory/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po
index b20fd13a99..30738183e4 100644
--- a/fusioninventory/locale/el_GR/fusiondirectory.po
+++ b/fusioninventory/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fusioninventory/locale/en/fusiondirectory.po b/fusioninventory/locale/en/fusiondirectory.po
index 9deb4857c2..d128e354f9 100644
--- a/fusioninventory/locale/en/fusiondirectory.po
+++ b/fusioninventory/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -62,48 +62,11 @@ msgstr ""
 msgid "IP or Mac address"
 msgstr ""
 
-#: html/collect.php:75
+#: html/collect.php:83
 #, php-format
 msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: admin/inventory/inventory-list.xml:7
-msgid "NO LABEL"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:28
-#: admin/systems/fusioninventory/class_fiInventoryAgent.inc:56
-msgid "IP"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:36
-msgid "Macs"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:44
-msgid "Operating Systems"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:50
-msgid "Actions"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:61 admin/inventory/inventory-list.xml:85
-msgid "Edit"
-msgstr ""
-
-#: admin/inventory/inventory-list.xml:68 admin/inventory/inventory-list.xml:92
-msgid "Remove"
-msgstr ""
-
-#: admin/inventory/class_inventoryManagement.inc:36
-msgid "Inventory objects"
-msgstr ""
-
-#: admin/inventory/class_inventoryManagement.inc:37
-msgid "Browse inventory objects"
-msgstr ""
-
 #: admin/systems/fusioninventory/class_fiInventoryAgent.inc:30
 msgid "Configuration"
 msgstr ""
@@ -145,6 +108,11 @@ msgstr ""
 msgid "Do not use web interface"
 msgstr ""
 
+#: admin/systems/fusioninventory/class_fiInventoryAgent.inc:56
+#: admin/inventory/inventory-list.xml:28
+msgid "IP"
+msgstr ""
+
 #: admin/systems/fusioninventory/class_fiInventoryAgent.inc:56
 msgid "Network interface to listen to"
 msgstr ""
@@ -183,12 +151,12 @@ msgid "Matching system"
 msgstr ""
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:96
-#: admin/systems/fusioninventory/class_fiInventory.inc:372
+#: admin/systems/fusioninventory/class_fiInventory.inc:378
 msgid "System"
 msgstr ""
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:96
-#: admin/systems/fusioninventory/class_fiInventory.inc:372
+#: admin/systems/fusioninventory/class_fiInventory.inc:378
 msgid "System entry matching this inventory"
 msgstr ""
 
@@ -208,14 +176,46 @@ msgstr ""
 msgid "Processes"
 msgstr ""
 
-#: admin/systems/fusioninventory/class_fiInventory.inc:320
+#: admin/systems/fusioninventory/class_fiInventory.inc:326
 msgid "Create a system based on this inventory"
 msgstr ""
 
-#: admin/systems/fusioninventory/class_fiInventory.inc:335
+#: admin/systems/fusioninventory/class_fiInventory.inc:341
 msgid "Create"
 msgstr ""
 
-#: admin/systems/fusioninventory/class_fiInventory.inc:340
+#: admin/systems/fusioninventory/class_fiInventory.inc:346
 msgid "No matching system"
 msgstr ""
+
+#: admin/inventory/inventory-list.xml:7
+msgid "NO LABEL"
+msgstr ""
+
+#: admin/inventory/inventory-list.xml:36
+msgid "Macs"
+msgstr ""
+
+#: admin/inventory/inventory-list.xml:44
+msgid "Operating Systems"
+msgstr ""
+
+#: admin/inventory/inventory-list.xml:50
+msgid "Actions"
+msgstr ""
+
+#: admin/inventory/inventory-list.xml:61 admin/inventory/inventory-list.xml:85
+msgid "Edit"
+msgstr ""
+
+#: admin/inventory/inventory-list.xml:68 admin/inventory/inventory-list.xml:92
+msgid "Remove"
+msgstr ""
+
+#: admin/inventory/class_inventoryManagement.inc:37
+msgid "Inventory objects"
+msgstr ""
+
+#: admin/inventory/class_inventoryManagement.inc:38
+msgid "Browse inventory objects"
+msgstr ""
diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po
index 359f15b4aa..3dc0301d38 100644
--- a/fusioninventory/locale/es/fusiondirectory.po
+++ b/fusioninventory/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po
index f61bd54d84..36a2272576 100644
--- a/fusioninventory/locale/es_CO/fusiondirectory.po
+++ b/fusioninventory/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po
index 7ade6da14b..5662e604e8 100644
--- a/fusioninventory/locale/es_VE/fusiondirectory.po
+++ b/fusioninventory/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po
index 0a44e02c7b..50fc54d678 100644
--- a/fusioninventory/locale/fa_IR/fusiondirectory.po
+++ b/fusioninventory/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po
index 76779945bc..50be744e1c 100644
--- a/fusioninventory/locale/fi_FI/fusiondirectory.po
+++ b/fusioninventory/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po
index 6437aaecc3..10a0f12b86 100644
--- a/fusioninventory/locale/fr/fusiondirectory.po
+++ b/fusioninventory/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po
index afc7113a3a..7af6472345 100644
--- a/fusioninventory/locale/hu_HU/fusiondirectory.po
+++ b/fusioninventory/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po
index 919ffdfb0f..73bd4c3050 100644
--- a/fusioninventory/locale/id/fusiondirectory.po
+++ b/fusioninventory/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po
index 4bba5bfc30..c4c728dbdb 100644
--- a/fusioninventory/locale/it_IT/fusiondirectory.po
+++ b/fusioninventory/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fusioninventory/locale/ja/fusiondirectory.po b/fusioninventory/locale/ja/fusiondirectory.po
index 5d15e349fb..a5423baa6f 100644
--- a/fusioninventory/locale/ja/fusiondirectory.po
+++ b/fusioninventory/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ko/fusiondirectory.po b/fusioninventory/locale/ko/fusiondirectory.po
index 38da94d948..9200ca30a3 100644
--- a/fusioninventory/locale/ko/fusiondirectory.po
+++ b/fusioninventory/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,7 +31,7 @@ msgstr ""
 
 #: admin/inventory/inventory-list.xml:7
 msgid "NO LABEL"
-msgstr ""
+msgstr "라벨 없음"
 
 #: admin/inventory/inventory-list.xml:28
 #: admin/systems/fusioninventory/class_fiInventoryAgent.inc:56
@@ -161,7 +161,7 @@ msgstr "소프트웨어"
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:114
 msgid "Users"
-msgstr ""
+msgstr "사용자"
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:120
 msgid "Processes"
diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po
index f7b9ef1ac3..260e83f8ac 100644
--- a/fusioninventory/locale/lv/fusiondirectory.po
+++ b/fusioninventory/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po
index a1ff115698..54a497caa4 100644
--- a/fusioninventory/locale/nb/fusiondirectory.po
+++ b/fusioninventory/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po
index 3dcdbd0265..6e44c7b34d 100644
--- a/fusioninventory/locale/nl/fusiondirectory.po
+++ b/fusioninventory/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po
index b2ce4695ed..15859b6747 100644
--- a/fusioninventory/locale/pl/fusiondirectory.po
+++ b/fusioninventory/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po
index d465bb840a..e3a78a0488 100644
--- a/fusioninventory/locale/pt/fusiondirectory.po
+++ b/fusioninventory/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po
index 843d0dd7fc..2f150475e2 100644
--- a/fusioninventory/locale/pt_BR/fusiondirectory.po
+++ b/fusioninventory/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po
index 26ffbbbcd0..a04d7ca871 100644
--- a/fusioninventory/locale/ru/fusiondirectory.po
+++ b/fusioninventory/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
index e91e35f737..d6d6c79cda 100644
--- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po
+++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po
index 1cdc163c94..2391487da3 100644
--- a/fusioninventory/locale/sv/fusiondirectory.po
+++ b/fusioninventory/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fusioninventory/locale/tr_TR/fusiondirectory.po b/fusioninventory/locale/tr_TR/fusiondirectory.po
index 3f60498c93..bb1744df16 100644
--- a/fusioninventory/locale/tr_TR/fusiondirectory.po
+++ b/fusioninventory/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po
index 4bbd250c57..aada9a6614 100644
--- a/fusioninventory/locale/ug/fusiondirectory.po
+++ b/fusioninventory/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po
index af3aa6702a..08abc3b843 100644
--- a/fusioninventory/locale/vi_VN/fusiondirectory.po
+++ b/fusioninventory/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po
index ba76256740..be5b5d8093 100644
--- a/fusioninventory/locale/zh/fusiondirectory.po
+++ b/fusioninventory/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fusioninventory/locale/zh_TW/fusiondirectory.po b/fusioninventory/locale/zh_TW/fusiondirectory.po
index 0375fe94e1..8f53518060 100644
--- a/fusioninventory/locale/zh_TW/fusiondirectory.po
+++ b/fusioninventory/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/af_ZA/fusiondirectory.po b/gpg/locale/af_ZA/fusiondirectory.po
index d031b7881e..1e8381a502 100644
--- a/gpg/locale/af_ZA/fusiondirectory.po
+++ b/gpg/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po
index 7b35900359..2308f7f14c 100644
--- a/gpg/locale/ar/fusiondirectory.po
+++ b/gpg/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po
index 744b79729b..2e2cac98dd 100644
--- a/gpg/locale/ca/fusiondirectory.po
+++ b/gpg/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po
index 07e1ed0f3c..a3c0410853 100644
--- a/gpg/locale/cs_CZ/fusiondirectory.po
+++ b/gpg/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po
index 92acd4a9d8..44fd9c9eaf 100644
--- a/gpg/locale/de/fusiondirectory.po
+++ b/gpg/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po
index 6456055e2d..76ef2785b3 100644
--- a/gpg/locale/el_GR/fusiondirectory.po
+++ b/gpg/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/gpg/locale/en/fusiondirectory.po b/gpg/locale/en/fusiondirectory.po
index 6dade20cd3..b8f1fadcd7 100644
--- a/gpg/locale/en/fusiondirectory.po
+++ b/gpg/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,20 +17,37 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/gpg/class_gpgAccount.inc:31
-msgid "GPG keys"
+#: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
+#: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
+msgid "GPG server info"
 msgstr ""
 
-#: personal/gpg/class_gpgAccount.inc:35
-msgid "GPG keys of this user"
+#: addons/gpg/class_pgpServerInfo.inc:60
+msgid "Software"
 msgstr ""
 
-#: personal/gpg/class_gpgAccount.inc:46
-msgid "GPG"
+#: addons/gpg/class_pgpServerInfo.inc:60
+msgid "Which software this GPG key server is running"
 msgstr ""
 
-#: personal/gpg/class_gpgAccount.inc:47
-msgid "Edit user's GPG IDs"
+#: addons/gpg/class_pgpServerInfo.inc:65
+msgid "GPG version"
+msgstr ""
+
+#: addons/gpg/class_pgpServerInfo.inc:65
+msgid "Which version of GPG this key server is running"
+msgstr ""
+
+#: addons/gpg/class_pgpServerInfo.inc:70
+msgid "Branch in which keys are stored"
+msgstr ""
+
+#: addons/gpg/class_pgpServerInfo.inc:74
+msgid "Keys RDN"
+msgstr ""
+
+#: addons/gpg/class_pgpServerInfo.inc:74
+msgid "Branch under base in which keys are stored"
 msgstr ""
 
 #: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62
@@ -41,38 +58,38 @@ msgstr ""
 msgid "You need to configure GPG base dn through the addons section first"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40
 msgid "Key ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
 msgid "User ID"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
 msgid "Creation time"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
 msgid "Expiration"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
 msgid "Algorithm"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:146
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80
 msgid "Size"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:144
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:147
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88
 msgid "Revoked"
 msgstr ""
 
-#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:145
+#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:148
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96
 msgid "Disabled"
 msgstr ""
@@ -101,35 +118,18 @@ msgstr ""
 msgid "Type"
 msgstr ""
 
-#: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
-#: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
-msgid "GPG server info"
-msgstr ""
-
-#: addons/gpg/class_pgpServerInfo.inc:60
-msgid "Software"
-msgstr ""
-
-#: addons/gpg/class_pgpServerInfo.inc:60
-msgid "Which software this GPG key server is running"
-msgstr ""
-
-#: addons/gpg/class_pgpServerInfo.inc:65
-msgid "GPG version"
-msgstr ""
-
-#: addons/gpg/class_pgpServerInfo.inc:65
-msgid "Which version of GPG this key server is running"
+#: personal/gpg/class_gpgAccount.inc:31
+msgid "GPG keys"
 msgstr ""
 
-#: addons/gpg/class_pgpServerInfo.inc:70
-msgid "Branch in which keys are stored"
+#: personal/gpg/class_gpgAccount.inc:35
+msgid "GPG keys of this user"
 msgstr ""
 
-#: addons/gpg/class_pgpServerInfo.inc:74
-msgid "Keys RDN"
+#: personal/gpg/class_gpgAccount.inc:46
+msgid "GPG"
 msgstr ""
 
-#: addons/gpg/class_pgpServerInfo.inc:74
-msgid "Branch under base in which keys are stored"
+#: personal/gpg/class_gpgAccount.inc:47
+msgid "Edit user's GPG IDs"
 msgstr ""
diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po
index 94020cb30e..3e8ebe3ea3 100644
--- a/gpg/locale/es/fusiondirectory.po
+++ b/gpg/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po
index a288f5238d..6d3ac625bb 100644
--- a/gpg/locale/es_CO/fusiondirectory.po
+++ b/gpg/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po
index b9b549cf21..4d79900c53 100644
--- a/gpg/locale/es_VE/fusiondirectory.po
+++ b/gpg/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po
index d306877cc9..7de1118d3f 100644
--- a/gpg/locale/fa_IR/fusiondirectory.po
+++ b/gpg/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po
index 83b3a9fba4..7a60c006fd 100644
--- a/gpg/locale/fi_FI/fusiondirectory.po
+++ b/gpg/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po
index ad5d45ea32..fa1993acd6 100644
--- a/gpg/locale/fr/fusiondirectory.po
+++ b/gpg/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po
index 3a7ff6a038..9e0e792394 100644
--- a/gpg/locale/hu_HU/fusiondirectory.po
+++ b/gpg/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po
index c027b45821..d434e1216d 100644
--- a/gpg/locale/id/fusiondirectory.po
+++ b/gpg/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po
index 77ed8b21be..8a82253c7a 100644
--- a/gpg/locale/it_IT/fusiondirectory.po
+++ b/gpg/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/gpg/locale/ja/fusiondirectory.po b/gpg/locale/ja/fusiondirectory.po
index 36e0a074e8..4b79f60b8c 100644
--- a/gpg/locale/ja/fusiondirectory.po
+++ b/gpg/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ko/fusiondirectory.po b/gpg/locale/ko/fusiondirectory.po
index 4599427f08..79b42749a0 100644
--- a/gpg/locale/ko/fusiondirectory.po
+++ b/gpg/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po
index 86c7e3451e..aacd42d419 100644
--- a/gpg/locale/lv/fusiondirectory.po
+++ b/gpg/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po
index ea8f24abd5..ce1eda871e 100644
--- a/gpg/locale/nb/fusiondirectory.po
+++ b/gpg/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po
index f9bbbfdad0..fded09fc77 100644
--- a/gpg/locale/nl/fusiondirectory.po
+++ b/gpg/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po
index 27495be075..ec274136ab 100644
--- a/gpg/locale/pl/fusiondirectory.po
+++ b/gpg/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po
index fa477c82e9..3b77b0fb9d 100644
--- a/gpg/locale/pt/fusiondirectory.po
+++ b/gpg/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po
index 4748dd79b5..03cc81366f 100644
--- a/gpg/locale/pt_BR/fusiondirectory.po
+++ b/gpg/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po
index 40714e2d8e..b7eeeb13b3 100644
--- a/gpg/locale/ru/fusiondirectory.po
+++ b/gpg/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po
index 59b8eb7621..d891b2f5f8 100644
--- a/gpg/locale/ru@petr1708/fusiondirectory.po
+++ b/gpg/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po
index ee1262d6ee..87a9744e1d 100644
--- a/gpg/locale/sv/fusiondirectory.po
+++ b/gpg/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/gpg/locale/tr_TR/fusiondirectory.po b/gpg/locale/tr_TR/fusiondirectory.po
index bfb282e54e..b3aeafb691 100644
--- a/gpg/locale/tr_TR/fusiondirectory.po
+++ b/gpg/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po
index 8fce860072..5f820bd24a 100644
--- a/gpg/locale/ug/fusiondirectory.po
+++ b/gpg/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po
index 6839cb15ee..5bee5fcbc0 100644
--- a/gpg/locale/vi_VN/fusiondirectory.po
+++ b/gpg/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po
index e18c771641..e30f070c9b 100644
--- a/gpg/locale/zh/fusiondirectory.po
+++ b/gpg/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/gpg/locale/zh_TW/fusiondirectory.po b/gpg/locale/zh_TW/fusiondirectory.po
index 84136e2bf4..d99c728759 100644
--- a/gpg/locale/zh_TW/fusiondirectory.po
+++ b/gpg/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/af_ZA/fusiondirectory.po b/ipmi/locale/af_ZA/fusiondirectory.po
index 7ba592b18f..28df87af40 100644
--- a/ipmi/locale/af_ZA/fusiondirectory.po
+++ b/ipmi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po
index de13576326..6c40dd1d53 100644
--- a/ipmi/locale/ar/fusiondirectory.po
+++ b/ipmi/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po
index aadbc5e2c3..c0245a012c 100644
--- a/ipmi/locale/ca/fusiondirectory.po
+++ b/ipmi/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po
index 3305cfa2b1..4fd057df22 100644
--- a/ipmi/locale/cs_CZ/fusiondirectory.po
+++ b/ipmi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po
index 692757c835..47231bc1fb 100644
--- a/ipmi/locale/de/fusiondirectory.po
+++ b/ipmi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po
index fe535d490a..48083a7e60 100644
--- a/ipmi/locale/el_GR/fusiondirectory.po
+++ b/ipmi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ipmi/locale/en/fusiondirectory.po b/ipmi/locale/en/fusiondirectory.po
index ffaf4624d5..3dca17bdb1 100644
--- a/ipmi/locale/en/fusiondirectory.po
+++ b/ipmi/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,11 +17,11 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: admin/systems/ipmi/class_ipmiClient.inc:31
+#: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
 msgstr ""
 
-#: admin/systems/ipmi/class_ipmiClient.inc:32
+#: admin/systems/ipmi/class_ipmiClient.inc:30
 msgid "Edit IPMI client settings"
 msgstr ""
 
diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po
index ff37f77078..07f2bc016e 100644
--- a/ipmi/locale/es/fusiondirectory.po
+++ b/ipmi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po
index 459bf396ed..ea7d9d4b7a 100644
--- a/ipmi/locale/es_CO/fusiondirectory.po
+++ b/ipmi/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po
index b888b7af48..18a92bea35 100644
--- a/ipmi/locale/es_VE/fusiondirectory.po
+++ b/ipmi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po
index 0cf3548d42..c063a5165a 100644
--- a/ipmi/locale/fa_IR/fusiondirectory.po
+++ b/ipmi/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po
index 58e926938d..6a354a05a5 100644
--- a/ipmi/locale/fi_FI/fusiondirectory.po
+++ b/ipmi/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po
index 8e7a24f296..47b62941ef 100644
--- a/ipmi/locale/fr/fusiondirectory.po
+++ b/ipmi/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po
index 5cd8ee745b..88ab2d996e 100644
--- a/ipmi/locale/hu_HU/fusiondirectory.po
+++ b/ipmi/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po
index e3e32d6912..3676db3a99 100644
--- a/ipmi/locale/id/fusiondirectory.po
+++ b/ipmi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po
index 8b180e1679..5a21a3cc21 100644
--- a/ipmi/locale/it_IT/fusiondirectory.po
+++ b/ipmi/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ipmi/locale/ja/fusiondirectory.po b/ipmi/locale/ja/fusiondirectory.po
index ca587907a2..790c328df7 100644
--- a/ipmi/locale/ja/fusiondirectory.po
+++ b/ipmi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ko/fusiondirectory.po b/ipmi/locale/ko/fusiondirectory.po
index dcae470ca5..0ca49a46a6 100644
--- a/ipmi/locale/ko/fusiondirectory.po
+++ b/ipmi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po
index 02b69b0699..2e4ab9c6b9 100644
--- a/ipmi/locale/lv/fusiondirectory.po
+++ b/ipmi/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po
index 45e66a74fb..efc6de11a8 100644
--- a/ipmi/locale/nb/fusiondirectory.po
+++ b/ipmi/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po
index 36d7442bb5..b43cb857d6 100644
--- a/ipmi/locale/nl/fusiondirectory.po
+++ b/ipmi/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po
index f302afd6b8..16f69878a1 100644
--- a/ipmi/locale/pl/fusiondirectory.po
+++ b/ipmi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po
index ff662f61a4..e05d9bb1d0 100644
--- a/ipmi/locale/pt/fusiondirectory.po
+++ b/ipmi/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po
index 0fa9df5017..fe3b56b7a9 100644
--- a/ipmi/locale/pt_BR/fusiondirectory.po
+++ b/ipmi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po
index 107b0ba4f4..5f966d1296 100644
--- a/ipmi/locale/ru/fusiondirectory.po
+++ b/ipmi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po
index 6939c373b6..2d28a834d2 100644
--- a/ipmi/locale/ru@petr1708/fusiondirectory.po
+++ b/ipmi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po
index eb1abfa5df..129fcd9a26 100644
--- a/ipmi/locale/sv/fusiondirectory.po
+++ b/ipmi/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/tr_TR/fusiondirectory.po b/ipmi/locale/tr_TR/fusiondirectory.po
index cc6ef5182b..187d73947d 100644
--- a/ipmi/locale/tr_TR/fusiondirectory.po
+++ b/ipmi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po
index 2745d39dc8..f8d9c7ccf3 100644
--- a/ipmi/locale/ug/fusiondirectory.po
+++ b/ipmi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po
index f5142add42..5519a69bd2 100644
--- a/ipmi/locale/vi_VN/fusiondirectory.po
+++ b/ipmi/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po
index 6805d4db76..5b2d3b1611 100644
--- a/ipmi/locale/zh/fusiondirectory.po
+++ b/ipmi/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh_TW/fusiondirectory.po b/ipmi/locale/zh_TW/fusiondirectory.po
index cc3fd277a3..25004f5657 100644
--- a/ipmi/locale/zh_TW/fusiondirectory.po
+++ b/ipmi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/af_ZA/fusiondirectory.po b/ldapdump/locale/af_ZA/fusiondirectory.po
index 2c4e2af705..50884d16c1 100644
--- a/ldapdump/locale/af_ZA/fusiondirectory.po
+++ b/ldapdump/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po
index b4f5307836..904da69f0a 100644
--- a/ldapdump/locale/ar/fusiondirectory.po
+++ b/ldapdump/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po
index e6189f7363..d1999e1ca4 100644
--- a/ldapdump/locale/ca/fusiondirectory.po
+++ b/ldapdump/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po
index 7d95d98b6b..aef7142d11 100644
--- a/ldapdump/locale/cs_CZ/fusiondirectory.po
+++ b/ldapdump/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po
index 9dbc7b0fe2..8b77bb35d0 100644
--- a/ldapdump/locale/de/fusiondirectory.po
+++ b/ldapdump/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po
index 4c634114a8..7ce143d64f 100644
--- a/ldapdump/locale/el_GR/fusiondirectory.po
+++ b/ldapdump/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapdump/locale/en/fusiondirectory.po b/ldapdump/locale/en/fusiondirectory.po
index 23856ac1ba..13d96d2abf 100644
--- a/ldapdump/locale/en/fusiondirectory.po
+++ b/ldapdump/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po
index b7b8bd7735..b2eb8b3cfa 100644
--- a/ldapdump/locale/es/fusiondirectory.po
+++ b/ldapdump/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po
index b6a78d0329..9e09874f8f 100644
--- a/ldapdump/locale/es_CO/fusiondirectory.po
+++ b/ldapdump/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po
index 80d7964f79..a5737924dd 100644
--- a/ldapdump/locale/es_VE/fusiondirectory.po
+++ b/ldapdump/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po
index 84191971d3..1e33e772f6 100644
--- a/ldapdump/locale/fa_IR/fusiondirectory.po
+++ b/ldapdump/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po
index 0d32cbf5ed..6d5feaf142 100644
--- a/ldapdump/locale/fi_FI/fusiondirectory.po
+++ b/ldapdump/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po
index 81f107fb86..5f0f759b98 100644
--- a/ldapdump/locale/fr/fusiondirectory.po
+++ b/ldapdump/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po
index f374e2ef36..b060a0d249 100644
--- a/ldapdump/locale/hu_HU/fusiondirectory.po
+++ b/ldapdump/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po
index 330e7bf510..756e0c580b 100644
--- a/ldapdump/locale/id/fusiondirectory.po
+++ b/ldapdump/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po
index 7b81ee07ec..18571a577b 100644
--- a/ldapdump/locale/it_IT/fusiondirectory.po
+++ b/ldapdump/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapdump/locale/ja/fusiondirectory.po b/ldapdump/locale/ja/fusiondirectory.po
index 42c2dae429..c10346d226 100644
--- a/ldapdump/locale/ja/fusiondirectory.po
+++ b/ldapdump/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ko/fusiondirectory.po b/ldapdump/locale/ko/fusiondirectory.po
index 865291ff2c..de86efa352 100644
--- a/ldapdump/locale/ko/fusiondirectory.po
+++ b/ldapdump/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po
index c616fb5be0..48fa10552f 100644
--- a/ldapdump/locale/lv/fusiondirectory.po
+++ b/ldapdump/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po
index 3e42685f3c..68e73336c4 100644
--- a/ldapdump/locale/nb/fusiondirectory.po
+++ b/ldapdump/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po
index fc7495b43e..91d7aba7ac 100644
--- a/ldapdump/locale/nl/fusiondirectory.po
+++ b/ldapdump/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po
index 78ba96dffa..4d7a402575 100644
--- a/ldapdump/locale/pl/fusiondirectory.po
+++ b/ldapdump/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po
index 670e954995..a012f1d9fe 100644
--- a/ldapdump/locale/pt/fusiondirectory.po
+++ b/ldapdump/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po
index ef360f6c67..0024fe3d7b 100644
--- a/ldapdump/locale/pt_BR/fusiondirectory.po
+++ b/ldapdump/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po
index 72143076d1..ffc1fceaab 100644
--- a/ldapdump/locale/ru/fusiondirectory.po
+++ b/ldapdump/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po
index ea2777d07e..8e6e3aaaee 100644
--- a/ldapdump/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po
index 1fbb4da707..2f60a62938 100644
--- a/ldapdump/locale/sv/fusiondirectory.po
+++ b/ldapdump/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapdump/locale/tr_TR/fusiondirectory.po b/ldapdump/locale/tr_TR/fusiondirectory.po
index ca659a9b43..4ab22b4374 100644
--- a/ldapdump/locale/tr_TR/fusiondirectory.po
+++ b/ldapdump/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po
index a64073044a..97df67a8a5 100644
--- a/ldapdump/locale/ug/fusiondirectory.po
+++ b/ldapdump/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po
index 3a14f6d3ac..115615a57f 100644
--- a/ldapdump/locale/vi_VN/fusiondirectory.po
+++ b/ldapdump/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po
index 5c5d6a52ee..903a35ee61 100644
--- a/ldapdump/locale/zh/fusiondirectory.po
+++ b/ldapdump/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/zh_TW/fusiondirectory.po b/ldapdump/locale/zh_TW/fusiondirectory.po
index a367c8eea4..35ab3abf9d 100644
--- a/ldapdump/locale/zh_TW/fusiondirectory.po
+++ b/ldapdump/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/af_ZA/fusiondirectory.po b/ldapmanager/locale/af_ZA/fusiondirectory.po
index bf2cefe047..dfbf03f367 100644
--- a/ldapmanager/locale/af_ZA/fusiondirectory.po
+++ b/ldapmanager/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po
index 4b2ca177b4..a1b193b83b 100644
--- a/ldapmanager/locale/ar/fusiondirectory.po
+++ b/ldapmanager/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po
index fed3cc5de3..dc9191adfa 100644
--- a/ldapmanager/locale/ca/fusiondirectory.po
+++ b/ldapmanager/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po
index 1bb463fb6d..9d59d9dd0f 100644
--- a/ldapmanager/locale/cs_CZ/fusiondirectory.po
+++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po
index f036bfdf03..6814ccd5a1 100644
--- a/ldapmanager/locale/de/fusiondirectory.po
+++ b/ldapmanager/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po
index 0eb1635594..cd06f91334 100644
--- a/ldapmanager/locale/el_GR/fusiondirectory.po
+++ b/ldapmanager/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapmanager/locale/en/fusiondirectory.po b/ldapmanager/locale/en/fusiondirectory.po
index 3e75512241..146b27f3c8 100644
--- a/ldapmanager/locale/en/fusiondirectory.po
+++ b/ldapmanager/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,99 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: addons/ldapmanager/tabs_ldif.inc:31
-msgid "LDAP import/export"
-msgstr ""
-
-#: addons/ldapmanager/tabs_ldif.inc:32
-msgid "Allows the import or export of the ldap tree"
-msgstr ""
-
-#: addons/ldapmanager/tabs_ldif.inc:36
-msgid "Ldap manager"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:29
-msgid "CSV import"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:30
-msgid "Import of csv data into the ldap tree"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:43
-msgid "Import CSV"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:46
-msgid "Object type"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:46
-msgid "Type of objects you wish to import"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:52
-msgid "Template"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:52
-msgid "Select a template to apply to imported entries"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:58
-msgid "CSV file"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:58
-msgid "Import a CSV file into your LDAP"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:62
-msgid "Separator"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:62
-msgid "Character used as separator in the CSV file"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:72
-msgid "Fixed values"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:72
-msgid ""
-"Some fixed values that you might wanna use in the filling of the template."
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:81
-#: addons/ldapmanager/class_csvimport.inc:107
-#: addons/ldapmanager/class_ldapmanager.inc:121
-msgid "Import"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:88
-msgid "Template filling"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:97
-msgid "Select fields associations"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:243
-#, php-format
-msgid "Import failed for line %d"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:250
-msgid "Success"
-msgstr ""
-
-#: addons/ldapmanager/class_csvimport.inc:250
-#, php-format
-msgid "Successfully imported %d entries"
-msgstr ""
-
 #: addons/ldapmanager/class_ldapmanager.inc:45
 msgid "LDIF"
 msgstr ""
@@ -174,12 +81,18 @@ msgid ""
 "check your LDIFs for FusionDirectory conformance."
 msgstr ""
 
+#: addons/ldapmanager/class_ldapmanager.inc:121
+#: addons/ldapmanager/class_csvimport.inc:81
+#: addons/ldapmanager/class_csvimport.inc:101
+msgid "Import"
+msgstr ""
+
 #: addons/ldapmanager/class_ldapmanager.inc:125
 msgid "Import LDIF file"
 msgstr ""
 
 #: addons/ldapmanager/class_ldapmanager.inc:153
-#: addons/ldapmanager/class_ldapmanager.inc:198
+#: addons/ldapmanager/class_ldapmanager.inc:203
 msgid "LDAP error"
 msgstr ""
 
@@ -205,3 +118,104 @@ msgstr ""
 #, php-format
 msgid "Failed to generate ldap export, error was \"%s\"!"
 msgstr ""
+
+#: addons/ldapmanager/class_ldapmanager.inc:195
+msgid "Warning"
+msgstr ""
+
+#: addons/ldapmanager/class_ldapmanager.inc:195
+msgid "Nothing to import, please upload a non-empty file or fill the textarea."
+msgstr ""
+
+#: addons/ldapmanager/class_ldapmanager.inc:201
+#: addons/ldapmanager/class_csvimport.inc:251
+msgid "Success"
+msgstr ""
+
+#: addons/ldapmanager/class_ldapmanager.inc:201
+#, php-format
+msgid "%d entries successfully imported"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:29
+msgid "CSV import"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:30
+msgid "Import of csv data into the ldap tree"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:43
+msgid "Import CSV"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:46
+msgid "Object type"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:46
+msgid "Type of objects you wish to import"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:52
+msgid "Template"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:52
+msgid "Select a template to apply to imported entries"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:58
+msgid "CSV file"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:58
+msgid "Import a CSV file into your LDAP"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:62
+msgid "Separator"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:62
+msgid "Character used as separator in the CSV file"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:72
+msgid "Fixed values"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:72
+msgid ""
+"Some fixed values that you might wanna use in the filling of the template."
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:88
+msgid "Template filling"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:91
+msgid "Select fields associations"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:244
+#, php-format
+msgid "Import failed for line %d"
+msgstr ""
+
+#: addons/ldapmanager/class_csvimport.inc:251
+#, php-format
+msgid "Successfully imported %d entries"
+msgstr ""
+
+#: addons/ldapmanager/tabs_ldif.inc:31
+msgid "LDAP import/export"
+msgstr ""
+
+#: addons/ldapmanager/tabs_ldif.inc:32
+msgid "Allows the import or export of the ldap tree"
+msgstr ""
+
+#: addons/ldapmanager/tabs_ldif.inc:36
+msgid "Ldap manager"
+msgstr ""
diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po
index ed15265149..879487af90 100644
--- a/ldapmanager/locale/es/fusiondirectory.po
+++ b/ldapmanager/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po
index 1cd4b7a612..18780e1fe3 100644
--- a/ldapmanager/locale/es_CO/fusiondirectory.po
+++ b/ldapmanager/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po
index 831c39e79a..3b1da4875a 100644
--- a/ldapmanager/locale/es_VE/fusiondirectory.po
+++ b/ldapmanager/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po
index 80cee5cf5d..425167c2b1 100644
--- a/ldapmanager/locale/fa_IR/fusiondirectory.po
+++ b/ldapmanager/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po
index f8f804db00..79f6b052f7 100644
--- a/ldapmanager/locale/fi_FI/fusiondirectory.po
+++ b/ldapmanager/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po
index bd1b717eb7..9b1924e46c 100644
--- a/ldapmanager/locale/fr/fusiondirectory.po
+++ b/ldapmanager/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po
index 719a0a9c90..938a68ec68 100644
--- a/ldapmanager/locale/hu_HU/fusiondirectory.po
+++ b/ldapmanager/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po
index f64b30049b..226389dcc6 100644
--- a/ldapmanager/locale/id/fusiondirectory.po
+++ b/ldapmanager/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index db947bb02b..04da0373fa 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapmanager/locale/ja/fusiondirectory.po b/ldapmanager/locale/ja/fusiondirectory.po
index 9493172cc9..e7a66c5c7c 100644
--- a/ldapmanager/locale/ja/fusiondirectory.po
+++ b/ldapmanager/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ko/fusiondirectory.po b/ldapmanager/locale/ko/fusiondirectory.po
index beb414cab6..280e0aa0bd 100644
--- a/ldapmanager/locale/ko/fusiondirectory.po
+++ b/ldapmanager/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po
index cf53257b58..3a36ca00da 100644
--- a/ldapmanager/locale/lv/fusiondirectory.po
+++ b/ldapmanager/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po
index 18e55c9f75..090b083d59 100644
--- a/ldapmanager/locale/nb/fusiondirectory.po
+++ b/ldapmanager/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po
index efd7276fc1..cd329790b3 100644
--- a/ldapmanager/locale/nl/fusiondirectory.po
+++ b/ldapmanager/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po
index c1ad69260e..47044710d2 100644
--- a/ldapmanager/locale/pl/fusiondirectory.po
+++ b/ldapmanager/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po
index 599c574387..a3a64321cd 100644
--- a/ldapmanager/locale/pt/fusiondirectory.po
+++ b/ldapmanager/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po
index b70f478d4f..050d713f2c 100644
--- a/ldapmanager/locale/pt_BR/fusiondirectory.po
+++ b/ldapmanager/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po
index daeb8e9ff5..a6c9795a48 100644
--- a/ldapmanager/locale/ru/fusiondirectory.po
+++ b/ldapmanager/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
index f147ee8fc7..11eca55adc 100644
--- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po
index 9f1573d451..63f6666506 100644
--- a/ldapmanager/locale/sv/fusiondirectory.po
+++ b/ldapmanager/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapmanager/locale/tr_TR/fusiondirectory.po b/ldapmanager/locale/tr_TR/fusiondirectory.po
index f3e3602dc5..64be24aa44 100644
--- a/ldapmanager/locale/tr_TR/fusiondirectory.po
+++ b/ldapmanager/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po
index 7da70605b3..e01a11802b 100644
--- a/ldapmanager/locale/ug/fusiondirectory.po
+++ b/ldapmanager/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po
index bf4f885ad6..a52b5c9aac 100644
--- a/ldapmanager/locale/vi_VN/fusiondirectory.po
+++ b/ldapmanager/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po
index 17efb1b528..ae4d6629c0 100644
--- a/ldapmanager/locale/zh/fusiondirectory.po
+++ b/ldapmanager/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ldapmanager/locale/zh_TW/fusiondirectory.po b/ldapmanager/locale/zh_TW/fusiondirectory.po
index b6367207e9..be6ce89fe0 100644
--- a/ldapmanager/locale/zh_TW/fusiondirectory.po
+++ b/ldapmanager/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/af_ZA/fusiondirectory.po b/mail/locale/af_ZA/fusiondirectory.po
index b3cffc960d..b94e3dbdff 100644
--- a/mail/locale/af_ZA/fusiondirectory.po
+++ b/mail/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po
index 1976972b22..17eef8a07b 100644
--- a/mail/locale/ar/fusiondirectory.po
+++ b/mail/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po
index 7404c3e6ba..495881cebe 100644
--- a/mail/locale/ca/fusiondirectory.po
+++ b/mail/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po
index b10923cd58..ea948ac360 100644
--- a/mail/locale/cs_CZ/fusiondirectory.po
+++ b/mail/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po
index 6aa509d017..c727554d8c 100644
--- a/mail/locale/de/fusiondirectory.po
+++ b/mail/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po
index 7ee2568325..f5aec42a48 100644
--- a/mail/locale/el_GR/fusiondirectory.po
+++ b/mail/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mail/locale/en/fusiondirectory.po b/mail/locale/en/fusiondirectory.po
index 7d1347b238..396a41a6cb 100644
--- a/mail/locale/en/fusiondirectory.po
+++ b/mail/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,303 +17,310 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/mail/class_mailAccount.inc:45
-#: personal/mail/class_mailAccount.inc:258
-#: personal/mail/class_mailAccount.inc:261
-#: personal/mail/class_mailAccount.inc:329
-#: personal/mail/class_mailAccount.inc:340
-#: personal/mail/class_mailAccount.inc:369
-#: personal/mail/class_mailAccount.inc:373
-#: admin/groups/mail/class_mailGroup.inc:183
-#: admin/groups/mail/class_mailGroup.inc:187
-msgid "Mail error"
+#: config/mail/class_mailPluginConfig.inc:28
+#: admin/groups/mail/class_mailGroup.inc:46
+#: personal/mail/class_mailAccount.inc:73
+msgid "Mail"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:45
-#, php-format
-msgid "Cannot read quota settings: %s"
+#: config/mail/class_mailPluginConfig.inc:29
+msgid "Mail plugin configuration"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:55
-msgid "Quota usage"
+#: config/mail/class_mailPluginConfig.inc:41
+#: personal/mail/class_mailAccount.inc:74
+msgid "Mail settings"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:56
-msgid "Part of the quota which is used"
+#: config/mail/class_mailPluginConfig.inc:44
+msgid "Account identification attribute"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:73
-#: config/mail/class_mailPluginConfig.inc:28
-#: admin/groups/mail/class_mailGroup.inc:46
-msgid "Mail"
+#: config/mail/class_mailPluginConfig.inc:45
+msgid "Which attribute will be used to create accounts."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:74
-#: config/mail/class_mailPluginConfig.inc:41
-msgid "Mail settings"
+#: config/mail/class_mailPluginConfig.inc:50
+msgid "User account template"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:96
-msgid "Mail account"
+#: config/mail/class_mailPluginConfig.inc:51
+msgid ""
+"Override the user account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:99
-#: admin/groups/mail/class_mailGroup.inc:62
-msgid "Primary address"
+#: config/mail/class_mailPluginConfig.inc:55
+msgid "Group account template"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:99
-msgid "Primary mail address"
+#: config/mail/class_mailPluginConfig.inc:56
+msgid ""
+"Override the group account creation syntax. Default is %PREFIX%%UATTRIB%."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:103
-#: admin/groups/mail/class_mailGroup.inc:66
-msgid "Server"
+#: config/mail/class_mailPluginConfig.inc:60
+msgid "Use cyrus UNIX style"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:103
-msgid "Specify the mail server where the user will be hosted on"
+#: config/mail/class_mailPluginConfig.inc:61
+msgid ""
+"Determines if \"foo/bar\" or \"foo.bar\" should be uses as namespaces in "
+"IMAP."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:108
-msgid "Quota size"
+#: config/mail/class_mailPluginConfig.inc:65
+msgid "Delete mailbox on account deletion"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:115
-msgid "Other addresses and redirections"
+#: config/mail/class_mailPluginConfig.inc:66
+msgid ""
+"Determines if the mailbox should be removed from your IMAP server after the "
+"account is deleted in LDAP."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:119
-#: admin/groups/mail/class_mailGroup.inc:72
-msgid "Alternative addresses"
+#: config/mail/class_mailPluginConfig.inc:71
+msgid "Cyrus autocreate folders"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:119
-msgid "List of alternative mail addresses"
+#: config/mail/class_mailPluginConfig.inc:72
+msgid ""
+"List of personal IMAP folders that should be created along initial account "
+"creation."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:124
-msgid "Forward messages to"
+#: config/mail/class_mailPluginConfig.inc:77
+msgid "IMAP timeout"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:124
-msgid "Addresses to which messages should be forwarded"
+#: config/mail/class_mailPluginConfig.inc:78
+msgid "Sets the connection timeout for imap actions."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:130
-#: personal/mail/class_mailAccount.inc:149
-msgid "Vacation message"
+#: config/mail/class_mailPluginConfig.inc:83
+msgid "Shared prefix"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:133
-msgid "Activate vacation message"
+#: config/mail/class_mailPluginConfig.inc:84
+msgid "Prefix to add for mail shared folders."
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:134
-msgid ""
-"Select to automatically response with the vacation message defined below"
+#: admin/systems/services/imap/class_serviceIMAP.inc:57
+msgid "IMAP/POP3 generic service"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:139
-msgid "from"
+#: admin/systems/services/imap/class_serviceIMAP.inc:58
+msgid "IMAP/POP3"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:144
-msgid "till"
+#: admin/systems/services/imap/class_serviceIMAP.inc:58
+msgid "Services"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:155
-msgid "Advanced mail options"
+#: admin/groups/mail/class_mailGroup.inc:47
+msgid "Group mail options"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:163
-msgid "User is only allowed to send and receive local mails"
+#: admin/groups/mail/class_mailGroup.inc:60
+msgid "Information"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:164
-msgid "Select if user can only send and receive inside his own domain"
+#: admin/groups/mail/class_mailGroup.inc:63
+#: personal/mail/class_mailAccount.inc:99
+msgid "Primary address"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:169
-msgid "No delivery to own mailbox"
+#: admin/groups/mail/class_mailGroup.inc:63
+msgid "The primary mail address"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:170
-msgid "Select if you want to forward mails without getting own copies of them"
+#: admin/groups/mail/class_mailGroup.inc:67
+#: personal/mail/class_mailAccount.inc:103
+msgid "Server"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:258
-#: personal/mail/class_mailAccount.inc:323
-#: admin/groups/mail/class_mailGroup.inc:159
-#, php-format
-msgid "Mail method cannot connect: %s"
+#: admin/groups/mail/class_mailGroup.inc:67
+msgid "Email server"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:261
-#, php-format
-msgid "Mailbox \"%s\" doesn't exists on mail server: %s"
+#: admin/groups/mail/class_mailGroup.inc:73
+#: personal/mail/class_mailAccount.inc:119
+msgid "Alternative addresses"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:326
-#: admin/groups/mail/class_mailGroup.inc:162
-#, php-format
-msgid "Cannot update mailbox: %s"
+#: admin/groups/mail/class_mailGroup.inc:73
+msgid "Alternative mail addresses for the group"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:329
+#: admin/groups/mail/class_mailGroup.inc:78
+msgid "Forward messages to non group members"
+msgstr ""
+
+#: admin/groups/mail/class_mailGroup.inc:82
+msgid "Only allowed to receive local mail"
+msgstr ""
+
+#: admin/groups/mail/class_mailGroup.inc:82
+msgid ""
+"Whether this group mail is only allowed to receive messages from local "
+"senders"
+msgstr ""
+
+#: admin/groups/mail/class_mailGroup.inc:191
+#: personal/mail/class_mailAccount.inc:276
+#: personal/mail/class_mailAccount.inc:377
 #, php-format
-msgid "Cannot write quota settings: %s"
+msgid "Mail method cannot connect: %s"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:340
+#: admin/groups/mail/class_mailGroup.inc:194
+#: personal/mail/class_mailAccount.inc:380
 #, php-format
-msgid "Mail error saving sieve settings: %s"
+msgid "Cannot update mailbox: %s"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:369
-#: admin/groups/mail/class_mailGroup.inc:183
+#: admin/groups/mail/class_mailGroup.inc:215
+#: admin/groups/mail/class_mailGroup.inc:219
+#: personal/mail/class_mailAccount.inc:45
+#: personal/mail/class_mailAccount.inc:276
+#: personal/mail/class_mailAccount.inc:279
+#: personal/mail/class_mailAccount.inc:383
+#: personal/mail/class_mailAccount.inc:394
+#: personal/mail/class_mailAccount.inc:423
+#: personal/mail/class_mailAccount.inc:427
+msgid "Mail error"
+msgstr ""
+
+#: admin/groups/mail/class_mailGroup.inc:215
+#: personal/mail/class_mailAccount.inc:423
 #, php-format
 msgid "Cannot remove mailbox, mail method cannot connect: %s"
 msgstr ""
 
-#: personal/mail/class_mailAccount.inc:373
-#: admin/groups/mail/class_mailGroup.inc:187
+#: admin/groups/mail/class_mailGroup.inc:219
+#: personal/mail/class_mailAccount.inc:427
 #, php-format
 msgid "Cannot remove mailbox: %s"
 msgstr ""
 
-#: personal/mail/class_mail-methods.inc:144
+#: personal/mail/class_mail-methods.inc:148
 msgid "Configuration error"
 msgstr ""
 
-#: personal/mail/class_mail-methods.inc:145
+#: personal/mail/class_mail-methods.inc:149
 #, php-format
 msgid "The configured mail attribute '%s' is unsupported!"
 msgstr ""
 
-#: personal/mail/class_mail-methods.inc:703
+#: personal/mail/class_mail-methods.inc:738
 msgid "Unknown"
 msgstr ""
 
-#: personal/mail/class_mail-methods.inc:705
+#: personal/mail/class_mail-methods.inc:740
 msgid "Unlimited"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:29
-msgid "Mail plugin configuration"
-msgstr ""
-
-#: config/mail/class_mailPluginConfig.inc:44
-msgid "Account identification attribute"
-msgstr ""
-
-#: config/mail/class_mailPluginConfig.inc:45
-msgid "Which attribute will be used to create accounts."
-msgstr ""
-
-#: config/mail/class_mailPluginConfig.inc:50
-msgid "Mail user template"
+#: personal/mail/class_mailAccount.inc:45
+#, php-format
+msgid "Cannot read quota settings: %s"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:51
-msgid "Override the user account creation syntax."
+#: personal/mail/class_mailAccount.inc:55
+msgid "Quota usage"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:55
-msgid "Mail folder template"
+#: personal/mail/class_mailAccount.inc:56
+msgid "Part of the quota which is used"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:56
-msgid "Override the methods default account creation syntax."
+#: personal/mail/class_mailAccount.inc:96
+msgid "Mail account"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:60
-msgid "Use cyrus UNIX style"
+#: personal/mail/class_mailAccount.inc:99
+msgid "Primary mail address"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:61
-msgid ""
-"Determines if 'foo/bar' or 'foo.bar' should be uses as namespaces in IMAP."
+#: personal/mail/class_mailAccount.inc:103
+msgid "Specify the mail server where the user will be hosted on"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:65
-msgid "Delete mailbox on account deletion"
+#: personal/mail/class_mailAccount.inc:108
+msgid "Quota size"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:66
-msgid ""
-"Determines if the mailbox should be removed from your IMAP server after the "
-"account is deleted in LDAP."
+#: personal/mail/class_mailAccount.inc:108
+msgid "Define quota size in MiB"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:71
-msgid "Cyrus autocreate folders"
+#: personal/mail/class_mailAccount.inc:115
+msgid "Other addresses and redirections"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:72
-msgid ""
-"List of personal IMAP folders that should be created along initial account "
-"creation."
+#: personal/mail/class_mailAccount.inc:119
+msgid "List of alternative mail addresses"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:77
-msgid "IMAP timeout"
+#: personal/mail/class_mailAccount.inc:124
+msgid "Forward messages to"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:78
-msgid "Sets the connection timeout for imap actions."
+#: personal/mail/class_mailAccount.inc:124
+msgid "Addresses to which messages should be forwarded"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:83
-msgid "Shared prefix"
+#: personal/mail/class_mailAccount.inc:130
+#: personal/mail/class_mailAccount.inc:149
+msgid "Vacation message"
 msgstr ""
 
-#: config/mail/class_mailPluginConfig.inc:84
-msgid "Prefix to add for mail shared folders."
+#: personal/mail/class_mailAccount.inc:133
+msgid "Activate vacation message"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:47
-msgid "Group mail options"
+#: personal/mail/class_mailAccount.inc:134
+msgid ""
+"Select to automatically response with the vacation message defined below"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:59
-msgid "Information"
+#: personal/mail/class_mailAccount.inc:139
+msgid "from"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:62
-msgid "The primary mail address"
+#: personal/mail/class_mailAccount.inc:144
+msgid "till"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:66
-msgid "Email server"
+#: personal/mail/class_mailAccount.inc:155
+msgid "Advanced mail options"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:72
-msgid "Alternative mail addresses for the group"
+#: personal/mail/class_mailAccount.inc:163
+msgid "User is only allowed to send and receive local mails"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:77
-msgid "Forward messages to non group members"
+#: personal/mail/class_mailAccount.inc:164
+msgid "Select if user can only send and receive inside his own domain"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:81
-msgid "Only allowed to receive local mail"
+#: personal/mail/class_mailAccount.inc:169
+msgid "No delivery to own mailbox"
 msgstr ""
 
-#: admin/groups/mail/class_mailGroup.inc:81
-msgid ""
-"Whether this group mail is only allowed to receive messages from local "
-"senders"
+#: personal/mail/class_mailAccount.inc:170
+msgid "Select if you want to forward mails without getting own copies of them"
 msgstr ""
 
-#: admin/systems/services/imap/class_serviceIMAP.inc:32
-msgid "IMAP/POP3 generic service"
+#: personal/mail/class_mailAccount.inc:279
+#, php-format
+msgid "Mailbox \"%s\" doesn't exists on mail server: %s"
 msgstr ""
 
-#: admin/systems/services/imap/class_serviceIMAP.inc:33
-msgid "IMAP/POP3"
+#: personal/mail/class_mailAccount.inc:383
+#, php-format
+msgid "Cannot write quota settings: %s"
 msgstr ""
 
-#: admin/systems/services/imap/class_serviceIMAP.inc:33
-msgid "Services"
+#: personal/mail/class_mailAccount.inc:394
+#, php-format
+msgid "Mail error saving sieve settings: %s"
 msgstr ""
diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po
index 3a42e401e6..c87495b5ab 100644
--- a/mail/locale/es/fusiondirectory.po
+++ b/mail/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po
index d2aa4b81dc..843f154fb8 100644
--- a/mail/locale/es_CO/fusiondirectory.po
+++ b/mail/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po
index 69d8fe3907..56eb1da530 100644
--- a/mail/locale/es_VE/fusiondirectory.po
+++ b/mail/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po
index 92fae922c0..25433794ba 100644
--- a/mail/locale/fa_IR/fusiondirectory.po
+++ b/mail/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po
index 50f11a5204..ac8c9f786e 100644
--- a/mail/locale/fi_FI/fusiondirectory.po
+++ b/mail/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po
index 7976e9dcd4..a75d7f3ac5 100644
--- a/mail/locale/fr/fusiondirectory.po
+++ b/mail/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po
index acbab2a705..d17c2d41d3 100644
--- a/mail/locale/hu_HU/fusiondirectory.po
+++ b/mail/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po
index 24597f5d0d..7422fd0686 100644
--- a/mail/locale/id/fusiondirectory.po
+++ b/mail/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po
index 44fc750604..1658180860 100644
--- a/mail/locale/it_IT/fusiondirectory.po
+++ b/mail/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mail/locale/ja/fusiondirectory.po b/mail/locale/ja/fusiondirectory.po
index b3f4af06f4..eb353f5ca7 100644
--- a/mail/locale/ja/fusiondirectory.po
+++ b/mail/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ko/fusiondirectory.po b/mail/locale/ko/fusiondirectory.po
index b8179b80e2..d0785b59bb 100644
--- a/mail/locale/ko/fusiondirectory.po
+++ b/mail/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po
index c58551a4a9..a4101b5271 100644
--- a/mail/locale/lv/fusiondirectory.po
+++ b/mail/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po
index 8291b7cc50..da9db2143f 100644
--- a/mail/locale/nb/fusiondirectory.po
+++ b/mail/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po
index 92fa9cbe4b..225b78ebf0 100644
--- a/mail/locale/nl/fusiondirectory.po
+++ b/mail/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po
index dbb4e25ceb..5ebe54561d 100644
--- a/mail/locale/pl/fusiondirectory.po
+++ b/mail/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po
index 68fc48e7a3..03dcce8ae2 100644
--- a/mail/locale/pt/fusiondirectory.po
+++ b/mail/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po
index b8a1fc5d0b..fa71c6c8e4 100644
--- a/mail/locale/pt_BR/fusiondirectory.po
+++ b/mail/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po
index eb8ca8e46f..b1a50fd3be 100644
--- a/mail/locale/ru/fusiondirectory.po
+++ b/mail/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po
index 43aa353bd4..94c4de45f0 100644
--- a/mail/locale/ru@petr1708/fusiondirectory.po
+++ b/mail/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po
index c5c04379de..95f66210b6 100644
--- a/mail/locale/sv/fusiondirectory.po
+++ b/mail/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mail/locale/tr_TR/fusiondirectory.po b/mail/locale/tr_TR/fusiondirectory.po
index b7868ca242..621bac60f4 100644
--- a/mail/locale/tr_TR/fusiondirectory.po
+++ b/mail/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po
index b228ecce00..7a8c36c84a 100644
--- a/mail/locale/ug/fusiondirectory.po
+++ b/mail/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po
index 34969d1c07..f937d9cbf2 100644
--- a/mail/locale/vi_VN/fusiondirectory.po
+++ b/mail/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po
index fe69cbd965..dd5a8d3f7d 100644
--- a/mail/locale/zh/fusiondirectory.po
+++ b/mail/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mail/locale/zh_TW/fusiondirectory.po b/mail/locale/zh_TW/fusiondirectory.po
index 118f18119d..3a20f0c51f 100644
--- a/mail/locale/zh_TW/fusiondirectory.po
+++ b/mail/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/af_ZA/fusiondirectory.po b/mixedgroups/locale/af_ZA/fusiondirectory.po
index 9aa76217a6..6f15e9e980 100644
--- a/mixedgroups/locale/af_ZA/fusiondirectory.po
+++ b/mixedgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po
index f273e2272c..6675f01896 100644
--- a/mixedgroups/locale/ar/fusiondirectory.po
+++ b/mixedgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po
index f39d5b3118..3e659a4b24 100644
--- a/mixedgroups/locale/ca/fusiondirectory.po
+++ b/mixedgroups/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po
index e50d06eda6..b6424ed34f 100644
--- a/mixedgroups/locale/cs_CZ/fusiondirectory.po
+++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po
index 4ba542622b..e931d0a274 100644
--- a/mixedgroups/locale/de/fusiondirectory.po
+++ b/mixedgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po
index 01f9ebf0a1..d3b65c0817 100644
--- a/mixedgroups/locale/el_GR/fusiondirectory.po
+++ b/mixedgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mixedgroups/locale/en/fusiondirectory.po b/mixedgroups/locale/en/fusiondirectory.po
index ac6bd8b0ea..1dc56430b1 100644
--- a/mixedgroups/locale/en/fusiondirectory.po
+++ b/mixedgroups/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -25,51 +25,51 @@ msgstr ""
 msgid "Posix group settings"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:47
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:43
 msgid "Properties"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:50
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:46
 msgid "Force GID"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:50
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:46
 msgid "Force GID value for this group"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:54
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:124
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:50
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:120
 msgid "GID"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:54
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:50
 msgid "GID value for this group"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:65
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:61
 msgid "System trust"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:69
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:65
 msgid "Trust mode"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:69
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:65
 msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:73
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:69
 msgid "disabled"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:73
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:69
 msgid "full access"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:73
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:69
 msgid "allow access to these hosts"
 msgstr ""
 
-#: admin/ogroups/mixedgroups/class_mixedGroup.inc:76
+#: admin/ogroups/mixedgroups/class_mixedGroup.inc:72
 msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po
index a3625de6c7..2c3a08bda9 100644
--- a/mixedgroups/locale/es/fusiondirectory.po
+++ b/mixedgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po
index 54ab60c0bf..8ceb6fbea1 100644
--- a/mixedgroups/locale/es_CO/fusiondirectory.po
+++ b/mixedgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po
index d476662282..7bfc25c5be 100644
--- a/mixedgroups/locale/es_VE/fusiondirectory.po
+++ b/mixedgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po
index 383dac869a..e903dd4cb4 100644
--- a/mixedgroups/locale/fa_IR/fusiondirectory.po
+++ b/mixedgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po
index 2f9babefb4..085b6ec875 100644
--- a/mixedgroups/locale/fi_FI/fusiondirectory.po
+++ b/mixedgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po
index a5c3102b88..bf4caf939b 100644
--- a/mixedgroups/locale/fr/fusiondirectory.po
+++ b/mixedgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po
index cce32b4105..d3f7643739 100644
--- a/mixedgroups/locale/hu_HU/fusiondirectory.po
+++ b/mixedgroups/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po
index ac6dbf2879..e89bae93ed 100644
--- a/mixedgroups/locale/id/fusiondirectory.po
+++ b/mixedgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po
index 58b612500b..b3b7ef293c 100644
--- a/mixedgroups/locale/it_IT/fusiondirectory.po
+++ b/mixedgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mixedgroups/locale/ja/fusiondirectory.po b/mixedgroups/locale/ja/fusiondirectory.po
index 99c605dd21..ab6f6221cf 100644
--- a/mixedgroups/locale/ja/fusiondirectory.po
+++ b/mixedgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ko/fusiondirectory.po b/mixedgroups/locale/ko/fusiondirectory.po
index e45874d82e..d7ee4a70c2 100644
--- a/mixedgroups/locale/ko/fusiondirectory.po
+++ b/mixedgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po
index e2e02494e2..b5e9b2b34d 100644
--- a/mixedgroups/locale/lv/fusiondirectory.po
+++ b/mixedgroups/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po
index 43d5e63581..072369c6be 100644
--- a/mixedgroups/locale/nb/fusiondirectory.po
+++ b/mixedgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po
index 76fc1065f0..6fb280e13c 100644
--- a/mixedgroups/locale/nl/fusiondirectory.po
+++ b/mixedgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po
index 453a609c9e..c36c572cef 100644
--- a/mixedgroups/locale/pl/fusiondirectory.po
+++ b/mixedgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po
index 767aeeb921..d02a704362 100644
--- a/mixedgroups/locale/pt/fusiondirectory.po
+++ b/mixedgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po
index ec4e790341..48723630ad 100644
--- a/mixedgroups/locale/pt_BR/fusiondirectory.po
+++ b/mixedgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po
index 7781104b6c..c60eb1108a 100644
--- a/mixedgroups/locale/ru/fusiondirectory.po
+++ b/mixedgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
index b52de9ffc5..945db18618 100644
--- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po
index ab26f41572..3c118c7551 100644
--- a/mixedgroups/locale/sv/fusiondirectory.po
+++ b/mixedgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mixedgroups/locale/tr_TR/fusiondirectory.po b/mixedgroups/locale/tr_TR/fusiondirectory.po
index 6080a4c8ff..fa529893e9 100644
--- a/mixedgroups/locale/tr_TR/fusiondirectory.po
+++ b/mixedgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po
index 0348973109..b5509faded 100644
--- a/mixedgroups/locale/ug/fusiondirectory.po
+++ b/mixedgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po
index 94640ec126..7369b37a9a 100644
--- a/mixedgroups/locale/vi_VN/fusiondirectory.po
+++ b/mixedgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po
index 1537869681..4f15fa4aa4 100644
--- a/mixedgroups/locale/zh/fusiondirectory.po
+++ b/mixedgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mixedgroups/locale/zh_TW/fusiondirectory.po b/mixedgroups/locale/zh_TW/fusiondirectory.po
index a5dfded9f1..7515309351 100644
--- a/mixedgroups/locale/zh_TW/fusiondirectory.po
+++ b/mixedgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/af_ZA/fusiondirectory.po b/nagios/locale/af_ZA/fusiondirectory.po
index cc1d7bfbec..59da2257eb 100644
--- a/nagios/locale/af_ZA/fusiondirectory.po
+++ b/nagios/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po
index 74e3707628..4c0a3666d5 100644
--- a/nagios/locale/ar/fusiondirectory.po
+++ b/nagios/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po
index f8eaaa38ed..2d877f5b2f 100644
--- a/nagios/locale/ca/fusiondirectory.po
+++ b/nagios/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po
index 1ca34e2bb6..607aa4923d 100644
--- a/nagios/locale/cs_CZ/fusiondirectory.po
+++ b/nagios/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po
index 333da00c97..a5f5e367b0 100644
--- a/nagios/locale/de/fusiondirectory.po
+++ b/nagios/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po
index 48c1d2e92d..8d13643c3a 100644
--- a/nagios/locale/el_GR/fusiondirectory.po
+++ b/nagios/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/nagios/locale/en/fusiondirectory.po b/nagios/locale/en/fusiondirectory.po
index e428efb368..a192cba33b 100644
--- a/nagios/locale/en/fusiondirectory.po
+++ b/nagios/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,11 +17,27 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/nagios/class_nagiosAccount.inc:40
+#: config/nagios/class_nagiosConfig.inc:28
+msgid "Nagios configuration"
+msgstr ""
+
+#: config/nagios/class_nagiosConfig.inc:29
+msgid "FusionDirectory nagios plugin configuration"
+msgstr ""
+
 #: config/nagios/class_nagiosConfig.inc:42
+#: personal/nagios/class_nagiosAccount.inc:40
 msgid "Nagios"
 msgstr ""
 
+#: config/nagios/class_nagiosConfig.inc:45
+msgid "Lconf prefix"
+msgstr ""
+
+#: config/nagios/class_nagiosConfig.inc:45
+msgid "Prefix used for lconf LDAP fields"
+msgstr ""
+
 #: personal/nagios/class_nagiosAccount.inc:41
 msgid "Nagios account settings"
 msgstr ""
@@ -77,19 +93,3 @@ msgstr ""
 #: personal/nagios/class_nagiosAccount.inc:99
 msgid "Host notification commands"
 msgstr ""
-
-#: config/nagios/class_nagiosConfig.inc:28
-msgid "Nagios configuration"
-msgstr ""
-
-#: config/nagios/class_nagiosConfig.inc:29
-msgid "FusionDirectory nagios plugin configuration"
-msgstr ""
-
-#: config/nagios/class_nagiosConfig.inc:45
-msgid "Lconf prefix"
-msgstr ""
-
-#: config/nagios/class_nagiosConfig.inc:45
-msgid "Prefix used for lconf LDAP fields"
-msgstr ""
diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po
index 8d86baf754..8486ebe730 100644
--- a/nagios/locale/es/fusiondirectory.po
+++ b/nagios/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po
index a3fb198e73..cd6491eaab 100644
--- a/nagios/locale/es_CO/fusiondirectory.po
+++ b/nagios/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po
index bc092a3be5..20d485fd88 100644
--- a/nagios/locale/es_VE/fusiondirectory.po
+++ b/nagios/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po
index 726dcfe376..8c67418474 100644
--- a/nagios/locale/fa_IR/fusiondirectory.po
+++ b/nagios/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po
index 3a1c44cd7e..132662f79f 100644
--- a/nagios/locale/fi_FI/fusiondirectory.po
+++ b/nagios/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po
index 74f3ca06da..4cf7ed71c9 100644
--- a/nagios/locale/fr/fusiondirectory.po
+++ b/nagios/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po
index 82809eff16..f920b861f2 100644
--- a/nagios/locale/hu_HU/fusiondirectory.po
+++ b/nagios/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po
index 15ed497887..108923e4eb 100644
--- a/nagios/locale/id/fusiondirectory.po
+++ b/nagios/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po
index 98e37d4f69..da579a583e 100644
--- a/nagios/locale/it_IT/fusiondirectory.po
+++ b/nagios/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/nagios/locale/ja/fusiondirectory.po b/nagios/locale/ja/fusiondirectory.po
index b5ab46f324..c0ffb4d57e 100644
--- a/nagios/locale/ja/fusiondirectory.po
+++ b/nagios/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ko/fusiondirectory.po b/nagios/locale/ko/fusiondirectory.po
index 98008a69ee..3046f66adb 100644
--- a/nagios/locale/ko/fusiondirectory.po
+++ b/nagios/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po
index 3f924be0c8..18236bcbd4 100644
--- a/nagios/locale/lv/fusiondirectory.po
+++ b/nagios/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po
index d6fd9d22f3..b3c5627633 100644
--- a/nagios/locale/nb/fusiondirectory.po
+++ b/nagios/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po
index 2b51ebd4fc..ec09f5ae22 100644
--- a/nagios/locale/nl/fusiondirectory.po
+++ b/nagios/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po
index fd91943175..fe720a104a 100644
--- a/nagios/locale/pl/fusiondirectory.po
+++ b/nagios/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po
index 62c8453324..4248bb97a5 100644
--- a/nagios/locale/pt/fusiondirectory.po
+++ b/nagios/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po
index 997bc7a2e5..b99c3b6395 100644
--- a/nagios/locale/pt_BR/fusiondirectory.po
+++ b/nagios/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po
index 4cf54da8bf..07e78d2f18 100644
--- a/nagios/locale/ru/fusiondirectory.po
+++ b/nagios/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po
index c3f38e8e25..e8d3127a63 100644
--- a/nagios/locale/ru@petr1708/fusiondirectory.po
+++ b/nagios/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po
index 94721edc80..c9c6d24265 100644
--- a/nagios/locale/sv/fusiondirectory.po
+++ b/nagios/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/nagios/locale/tr_TR/fusiondirectory.po b/nagios/locale/tr_TR/fusiondirectory.po
index 3b3d9b182b..daa15c064f 100644
--- a/nagios/locale/tr_TR/fusiondirectory.po
+++ b/nagios/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po
index 7d763f27a3..9296e76beb 100644
--- a/nagios/locale/ug/fusiondirectory.po
+++ b/nagios/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po
index 7169bcdab5..b0d2ba8fb4 100644
--- a/nagios/locale/vi_VN/fusiondirectory.po
+++ b/nagios/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po
index e88d5bfa07..f598ea50fa 100644
--- a/nagios/locale/zh/fusiondirectory.po
+++ b/nagios/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/nagios/locale/zh_TW/fusiondirectory.po b/nagios/locale/zh_TW/fusiondirectory.po
index bc05a6931f..075cf184e6 100644
--- a/nagios/locale/zh_TW/fusiondirectory.po
+++ b/nagios/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/af_ZA/fusiondirectory.po b/netgroups/locale/af_ZA/fusiondirectory.po
index 4265264ab2..1b015cecf9 100644
--- a/netgroups/locale/af_ZA/fusiondirectory.po
+++ b/netgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po
index 33eb361791..040936d276 100644
--- a/netgroups/locale/ar/fusiondirectory.po
+++ b/netgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po
index 5391772b35..5a6e77b2aa 100644
--- a/netgroups/locale/ca/fusiondirectory.po
+++ b/netgroups/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po
index 46ab658f2c..8c614be937 100644
--- a/netgroups/locale/cs_CZ/fusiondirectory.po
+++ b/netgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po
index 0676cf6ac0..46eb1051d9 100644
--- a/netgroups/locale/de/fusiondirectory.po
+++ b/netgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po
index c8ee23fb41..b2ddb1045c 100644
--- a/netgroups/locale/el_GR/fusiondirectory.po
+++ b/netgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/netgroups/locale/en/fusiondirectory.po b/netgroups/locale/en/fusiondirectory.po
index 3062a6bc14..65cb253317 100644
--- a/netgroups/locale/en/fusiondirectory.po
+++ b/netgroups/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,25 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/netgroups/class_netgroupMembership.inc:43
-#: admin/netgroups/class_netgroup.inc:54
-#: admin/systems/netgroups/class_netgroupSystem.inc:26
-msgid "NIS Netgroup"
-msgstr ""
-
-#: personal/netgroups/class_netgroupMembership.inc:44
-#: admin/systems/netgroups/class_netgroupSystem.inc:27
-msgid "NIS Netgroup member"
-msgstr ""
-
-#: personal/netgroups/class_netgroupMembership.inc:60
-msgid "Member of the following NIS Netgroups  "
-msgstr ""
-
-#: personal/netgroups/class_netgroupMembership.inc:63
-msgid "NIS netgroup membership"
-msgstr ""
-
 #: config/netgroups/class_netgroupConfig.inc:28
 msgid "Netgroup configuration"
 msgstr ""
@@ -45,7 +26,7 @@ msgid "FusionDirectory netgroup plugin configuration"
 msgstr ""
 
 #: config/netgroups/class_netgroupConfig.inc:42
-#: admin/netgroups/class_netgroup.inc:50
+#: admin/netgroups/class_netgroup.inc:51
 msgid "Netgroup"
 msgstr ""
 
@@ -57,51 +38,70 @@ msgstr ""
 msgid "Branch in which netgroups will be stored"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:51
+#: admin/systems/netgroups/class_netgroupSystem.inc:27
+#: admin/netgroups/class_netgroup.inc:55
+#: personal/netgroups/class_netgroupMembership.inc:43
+msgid "NIS Netgroup"
+msgstr ""
+
+#: admin/systems/netgroups/class_netgroupSystem.inc:28
+#: personal/netgroups/class_netgroupMembership.inc:44
+msgid "NIS Netgroup member"
+msgstr ""
+
+#: admin/netgroups/class_netgroupManagement.inc:34
+msgid "NIS Netgroups"
+msgstr ""
+
+#: admin/netgroups/class_netgroupManagement.inc:35
+msgid "NIS Netgroup management"
+msgstr ""
+
+#: admin/netgroups/class_netgroup.inc:52
 msgid "NIS Netgroup settings"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:69
+#: admin/netgroups/class_netgroup.inc:70
 msgid "Information"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:72
+#: admin/netgroups/class_netgroup.inc:73
 msgid "Name"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:72
+#: admin/netgroups/class_netgroup.inc:73
 msgid "Name of this NIS netgroup"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:75
+#: admin/netgroups/class_netgroup.inc:76
 msgid "Description"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:75
+#: admin/netgroups/class_netgroup.inc:76
 msgid "Description of this NIS netgroup"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:81
+#: admin/netgroups/class_netgroup.inc:82
 msgid "User members"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:88 admin/netgroups/class_netgroup.inc:97
-#: admin/netgroups/class_netgroup.inc:104
+#: admin/netgroups/class_netgroup.inc:89 admin/netgroups/class_netgroup.inc:98
+#: admin/netgroups/class_netgroup.inc:105
 msgid "NIS netgroup members"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:94
+#: admin/netgroups/class_netgroup.inc:95
 msgid "System members"
 msgstr ""
 
-#: admin/netgroups/class_netgroup.inc:101
+#: admin/netgroups/class_netgroup.inc:102
 msgid "Netgroup members"
 msgstr ""
 
-#: admin/netgroups/class_netgroupManagement.inc:34
-msgid "NIS Netgroups"
+#: personal/netgroups/class_netgroupMembership.inc:60
+msgid "Member of the following NIS Netgroups  "
 msgstr ""
 
-#: admin/netgroups/class_netgroupManagement.inc:35
-msgid "NIS Netgroup management"
+#: personal/netgroups/class_netgroupMembership.inc:63
+msgid "NIS netgroup membership"
 msgstr ""
diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po
index 56d4b0bf78..3db13106e2 100644
--- a/netgroups/locale/es/fusiondirectory.po
+++ b/netgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po
index 34a5d201e6..48f990d05f 100644
--- a/netgroups/locale/es_CO/fusiondirectory.po
+++ b/netgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po
index 444bec1998..cbba0094cf 100644
--- a/netgroups/locale/es_VE/fusiondirectory.po
+++ b/netgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po
index 459a5663d8..097621162f 100644
--- a/netgroups/locale/fa_IR/fusiondirectory.po
+++ b/netgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po
index 0150b49118..f617b3d5eb 100644
--- a/netgroups/locale/fi_FI/fusiondirectory.po
+++ b/netgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po
index cd810b8bc0..7b29f6d455 100644
--- a/netgroups/locale/fr/fusiondirectory.po
+++ b/netgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po
index d9357d1f9f..4c1af5a1d7 100644
--- a/netgroups/locale/hu_HU/fusiondirectory.po
+++ b/netgroups/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po
index 608f42528b..8c1b468aa6 100644
--- a/netgroups/locale/id/fusiondirectory.po
+++ b/netgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po
index aef81f9858..12c4ed351e 100644
--- a/netgroups/locale/it_IT/fusiondirectory.po
+++ b/netgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/netgroups/locale/ja/fusiondirectory.po b/netgroups/locale/ja/fusiondirectory.po
index a1914cf674..48ddd1958a 100644
--- a/netgroups/locale/ja/fusiondirectory.po
+++ b/netgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ko/fusiondirectory.po b/netgroups/locale/ko/fusiondirectory.po
index a486ad96ee..7e31273c99 100644
--- a/netgroups/locale/ko/fusiondirectory.po
+++ b/netgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po
index 33e75c0878..e8ce2c8984 100644
--- a/netgroups/locale/lv/fusiondirectory.po
+++ b/netgroups/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po
index 24bff48470..0ff7ff4022 100644
--- a/netgroups/locale/nb/fusiondirectory.po
+++ b/netgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po
index eccd22a75e..7abe5b5e60 100644
--- a/netgroups/locale/nl/fusiondirectory.po
+++ b/netgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po
index 407e7d97a4..27667e9f72 100644
--- a/netgroups/locale/pl/fusiondirectory.po
+++ b/netgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po
index 498851e1d3..5f6b246e27 100644
--- a/netgroups/locale/pt/fusiondirectory.po
+++ b/netgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po
index 3d9b84a503..1c59e46237 100644
--- a/netgroups/locale/pt_BR/fusiondirectory.po
+++ b/netgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po
index b0670b8829..a8c712acd9 100644
--- a/netgroups/locale/ru/fusiondirectory.po
+++ b/netgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po
index accb69f6c0..83c15b5bcc 100644
--- a/netgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/netgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po
index 7da477d666..fc0e67b013 100644
--- a/netgroups/locale/sv/fusiondirectory.po
+++ b/netgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/netgroups/locale/tr_TR/fusiondirectory.po b/netgroups/locale/tr_TR/fusiondirectory.po
index 320178afb0..a5166e6c26 100644
--- a/netgroups/locale/tr_TR/fusiondirectory.po
+++ b/netgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po
index 0179710f3e..e46e3f46bf 100644
--- a/netgroups/locale/ug/fusiondirectory.po
+++ b/netgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po
index f0020b2eaf..784f911755 100644
--- a/netgroups/locale/vi_VN/fusiondirectory.po
+++ b/netgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po
index 47321787a8..a071754c74 100644
--- a/netgroups/locale/zh/fusiondirectory.po
+++ b/netgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/netgroups/locale/zh_TW/fusiondirectory.po b/netgroups/locale/zh_TW/fusiondirectory.po
index dc4af5a4cf..a8725c8a2a 100644
--- a/netgroups/locale/zh_TW/fusiondirectory.po
+++ b/netgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/af_ZA/fusiondirectory.po b/newsletter/locale/af_ZA/fusiondirectory.po
index 0510cd7b76..18c27ac031 100644
--- a/newsletter/locale/af_ZA/fusiondirectory.po
+++ b/newsletter/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po
index b7fa1affd4..dedf27c53b 100644
--- a/newsletter/locale/ar/fusiondirectory.po
+++ b/newsletter/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po
index baa7356288..8f0e6e317a 100644
--- a/newsletter/locale/ca/fusiondirectory.po
+++ b/newsletter/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po
index 5065485eb1..815c22cfb4 100644
--- a/newsletter/locale/cs_CZ/fusiondirectory.po
+++ b/newsletter/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po
index 7e9387cc7c..75ac55b76b 100644
--- a/newsletter/locale/de/fusiondirectory.po
+++ b/newsletter/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po
index 9f985b89bb..ae0697fa05 100644
--- a/newsletter/locale/el_GR/fusiondirectory.po
+++ b/newsletter/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/newsletter/locale/en/fusiondirectory.po b/newsletter/locale/en/fusiondirectory.po
index 197c6e9ba0..fe353c7f8f 100644
--- a/newsletter/locale/en/fusiondirectory.po
+++ b/newsletter/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,11 +17,27 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/newsletter/class_newsletterSubscriptions.inc:30
+#: config/newsletter/class_newsletterConfig.inc:28
+msgid "Newsletter configuration"
+msgstr ""
+
+#: config/newsletter/class_newsletterConfig.inc:29
+msgid "FusionDirectory newsletter plugin configuration"
+msgstr ""
+
 #: config/newsletter/class_newsletterConfig.inc:41
+#: personal/newsletter/class_newsletterSubscriptions.inc:30
 msgid "Newsletter"
 msgstr ""
 
+#: config/newsletter/class_newsletterConfig.inc:45
+msgid "Newsletter choices"
+msgstr ""
+
+#: config/newsletter/class_newsletterConfig.inc:45
+msgid "Newsletters the user can choose from"
+msgstr ""
+
 #: personal/newsletter/class_newsletterSubscriptions.inc:31
 msgid "Newsletter subscriptions"
 msgstr ""
@@ -37,19 +53,3 @@ msgstr ""
 #: personal/newsletter/class_newsletterSubscriptions.inc:50
 msgid "Newsletter you are subscribed to"
 msgstr ""
-
-#: config/newsletter/class_newsletterConfig.inc:28
-msgid "Newsletter configuration"
-msgstr ""
-
-#: config/newsletter/class_newsletterConfig.inc:29
-msgid "FusionDirectory newsletter plugin configuration"
-msgstr ""
-
-#: config/newsletter/class_newsletterConfig.inc:45
-msgid "Newsletter choices"
-msgstr ""
-
-#: config/newsletter/class_newsletterConfig.inc:45
-msgid "Newsletters the user can choose from"
-msgstr ""
diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po
index 1bfb589bdc..358544a7ff 100644
--- a/newsletter/locale/es/fusiondirectory.po
+++ b/newsletter/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po
index e55b003293..dd5b2c4661 100644
--- a/newsletter/locale/es_CO/fusiondirectory.po
+++ b/newsletter/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po
index f283a7b96b..e624dc9855 100644
--- a/newsletter/locale/es_VE/fusiondirectory.po
+++ b/newsletter/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po
index 9a6a5c07b7..ca1002a586 100644
--- a/newsletter/locale/fa_IR/fusiondirectory.po
+++ b/newsletter/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po
index 1832b51f97..6f58b93085 100644
--- a/newsletter/locale/fi_FI/fusiondirectory.po
+++ b/newsletter/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po
index 5dfcc2f5ad..8484aa0943 100644
--- a/newsletter/locale/fr/fusiondirectory.po
+++ b/newsletter/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po
index 7eed70b965..75222c8b5b 100644
--- a/newsletter/locale/hu_HU/fusiondirectory.po
+++ b/newsletter/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po
index 1c70488656..42f2103cb8 100644
--- a/newsletter/locale/id/fusiondirectory.po
+++ b/newsletter/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po
index b6657cfe83..1406d501fd 100644
--- a/newsletter/locale/it_IT/fusiondirectory.po
+++ b/newsletter/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/newsletter/locale/ja/fusiondirectory.po b/newsletter/locale/ja/fusiondirectory.po
index 476de5259a..cd46c9a796 100644
--- a/newsletter/locale/ja/fusiondirectory.po
+++ b/newsletter/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ko/fusiondirectory.po b/newsletter/locale/ko/fusiondirectory.po
index 7dd6ef2522..b048f4c369 100644
--- a/newsletter/locale/ko/fusiondirectory.po
+++ b/newsletter/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po
index b6b50539db..0175257e11 100644
--- a/newsletter/locale/lv/fusiondirectory.po
+++ b/newsletter/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po
index df58ddde53..07ee0462eb 100644
--- a/newsletter/locale/nb/fusiondirectory.po
+++ b/newsletter/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po
index b22600998e..77806e6d13 100644
--- a/newsletter/locale/nl/fusiondirectory.po
+++ b/newsletter/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po
index 4059e93d62..435ccf5e8c 100644
--- a/newsletter/locale/pl/fusiondirectory.po
+++ b/newsletter/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po
index 632c8c81bc..9632e44f4f 100644
--- a/newsletter/locale/pt/fusiondirectory.po
+++ b/newsletter/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po
index 01967d16f6..51f85b01c8 100644
--- a/newsletter/locale/pt_BR/fusiondirectory.po
+++ b/newsletter/locale/pt_BR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po
index 182e27e9b7..24fbca87f0 100644
--- a/newsletter/locale/ru/fusiondirectory.po
+++ b/newsletter/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po
index bb0fd4bb3f..e0b195b6d6 100644
--- a/newsletter/locale/ru@petr1708/fusiondirectory.po
+++ b/newsletter/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po
index a43a3df48d..303ea80201 100644
--- a/newsletter/locale/sv/fusiondirectory.po
+++ b/newsletter/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/tr_TR/fusiondirectory.po b/newsletter/locale/tr_TR/fusiondirectory.po
index 2272de6e19..bfe16bd16b 100644
--- a/newsletter/locale/tr_TR/fusiondirectory.po
+++ b/newsletter/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po
index 1bb9c6a65c..3631e6d53d 100644
--- a/newsletter/locale/ug/fusiondirectory.po
+++ b/newsletter/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po
index 1e7b26911f..370d067f7c 100644
--- a/newsletter/locale/vi_VN/fusiondirectory.po
+++ b/newsletter/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po
index a21db59307..8b1cdeeed2 100644
--- a/newsletter/locale/zh/fusiondirectory.po
+++ b/newsletter/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh_TW/fusiondirectory.po b/newsletter/locale/zh_TW/fusiondirectory.po
index 59bc90d1dd..7872c0d6ad 100644
--- a/newsletter/locale/zh_TW/fusiondirectory.po
+++ b/newsletter/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/af_ZA/fusiondirectory.po b/opsi/locale/af_ZA/fusiondirectory.po
index 5adb8512ed..bcbdf814be 100644
--- a/opsi/locale/af_ZA/fusiondirectory.po
+++ b/opsi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po
index 113bc2d508..9bbd980422 100644
--- a/opsi/locale/ar/fusiondirectory.po
+++ b/opsi/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po
index 4d1bf876e1..cadbdc256b 100644
--- a/opsi/locale/ca/fusiondirectory.po
+++ b/opsi/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po
index 4c9aee6347..22cccebaf2 100644
--- a/opsi/locale/cs_CZ/fusiondirectory.po
+++ b/opsi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po
index d33bf4147a..e3d5ce6664 100644
--- a/opsi/locale/de/fusiondirectory.po
+++ b/opsi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po
index 0fd28f8961..60a0ba2365 100644
--- a/opsi/locale/el_GR/fusiondirectory.po
+++ b/opsi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/opsi/locale/en/fusiondirectory.po b/opsi/locale/en/fusiondirectory.po
index c18df97d4c..ceed7e6c52 100644
--- a/opsi/locale/en/fusiondirectory.po
+++ b/opsi/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,29 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: addons/opsi/class_opsiImport.inc:30 addons/opsi/class_opsiImport.inc:36
-msgid "OPSI import"
-msgstr ""
-
-#: addons/opsi/class_opsiImport.inc:31
-msgid "Import windows stations from OPSI into FD"
-msgstr ""
-
-#: addons/opsi/class_opsiImport.inc:72
-msgid "Argonaut server is not available"
-msgstr ""
-
-#: addons/opsi/class_opsiImport.inc:83
-#: admin/opsi/class_opsiSoftwareList.inc:122
-#: admin/opsi/class_opsiProfile.inc:167
-msgid "No mac address"
-msgstr ""
-
-#: addons/opsi/class_opsiImport.inc:98
-#: admin/systems/opsi/class_opsiClient.inc:153
-msgid "Could not update OPSI information"
-msgstr ""
-
 #: config/opsi/class_opsiConfig.inc:28
 msgid "OPSI configuration"
 msgstr ""
@@ -49,6 +26,7 @@ msgid "FusionDirectory OPSI plugin configuration"
 msgstr ""
 
 #: config/opsi/class_opsiConfig.inc:42
+#: addons/dashboard/class_dashBoardOpsi.inc:26
 #: admin/opsi/class_opsiProfileManagement.inc:33
 msgid "OPSI"
 msgstr ""
@@ -61,198 +39,253 @@ msgstr ""
 msgid "Branch in which OPSI profiles will be stored"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:28
-#: admin/opsi/class_opsiOnDemandList.inc:33
-msgid "OPSI ondemand list"
+#: addons/opsi/class_opsiImport.inc:30 addons/opsi/class_opsiImport.inc:36
+msgid "OPSI import"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:29
-msgid "OPSI on demand software list"
+#: addons/opsi/class_opsiImport.inc:31
+msgid "Import windows stations from OPSI into FD"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:47
-#: admin/opsi/class_opsiSoftwareList.inc:51
-msgid "Infos"
+#: addons/opsi/class_opsiImport.inc:58
+msgid "Import localboot products"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:50
-#: admin/opsi/class_opsiSoftwareList.inc:54
-#: admin/opsi/class_opsiProfile.inc:89
-msgid "OPSI server"
+#: addons/opsi/class_opsiImport.inc:58
+msgid "Import localboot product list configured in OPSI in the FD OPSI tab"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:50
-#: admin/opsi/class_opsiSoftwareList.inc:54
-#: admin/opsi/class_opsiProfile.inc:89
-msgid "OPSI server to use for deployment"
+#: addons/opsi/class_opsiImport.inc:94
+msgid "Argonaut server is not available"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:54
-#: admin/opsi/class_opsiSoftwareList.inc:58
-#: admin/opsi/class_opsiProfile.inc:86 admin/opsi/class_opsiProfile.inc:93
-#: admin/opsi/class_opsiProductProperties.inc:113
-msgid "Name"
+#: addons/opsi/class_opsiImport.inc:105
+#: admin/systems/opsi/class_opsiClient.inc:350
+#: admin/opsi/class_opsiSoftwareList.inc:126
+#: admin/opsi/class_opsiProfile.inc:172
+msgid "No mac address"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:54
-#: admin/opsi/class_opsiSoftwareList.inc:58
-#: admin/opsi/class_opsiProfile.inc:93
-msgid "Name of this OPSI profile"
+#: addons/opsi/class_opsiImport.inc:106
+#, php-format
+msgid "Server \"%s\" has no mac address configured in the LDAP"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:58
-msgid "Show details"
+#: addons/opsi/class_opsiImport.inc:113
+#, php-format
+msgid "Could not find \"%s\" in the LDAP"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:58
-msgid "Show further information to the user"
+#: addons/opsi/class_opsiImport.inc:121 addons/opsi/class_opsiImport.inc:143
+msgid "Could not get OPSI information"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:64
-#: admin/opsi/class_opsiSoftwareList.inc:64
-msgid "Softwares"
+#: addons/dashboard/class_dashBoardOpsi.inc:27
+msgid "Statistics and information about OPSI"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:68
-#: admin/opsi/class_opsiSoftwareList.inc:81
-msgid "Localboot products"
+#: addons/dashboard/class_dashBoardOpsi.inc:38
+msgid "Statistics"
 msgstr ""
 
-#: admin/opsi/class_opsiOnDemandList.inc:68
-msgid "The localboot products to put in this list"
+#: addons/dashboard/class_dashBoardOpsi.inc:43
+msgid "Profiles"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:32
-msgid "OPSI list"
+#: addons/dashboard/class_dashBoardOpsi.inc:66
+msgid "OPSI servers"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:33
-#: admin/opsi/class_opsiSoftwareList.inc:37
-msgid "OPSI software list"
+#: addons/dashboard/class_dashBoardOpsi.inc:72
+msgid "OPSI clients"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:68
-msgid "The localboot products to install with this list"
+#: addons/dashboard/class_dashBoardOpsi.inc:78
+msgid "OPSI groups"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:110
-#: admin/opsi/class_opsiProfile.inc:155
-#: admin/opsi/class_opsiProductProperties.inc:174
-msgid "Could not contact argonaut server"
+#: addons/dashboard/class_dashBoardOpsi.inc:91
+#: admin/systems/opsi/class_opsiLogView.inc:82
+#: admin/systems/opsi/class_opsiLogView.inc:113
+msgid "Error"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:123
-#: admin/opsi/class_opsiProfile.inc:168
+#: addons/dashboard/class_dashBoardOpsi.inc:92
 #, php-format
-msgid "Server %s has no mac address configured in the LDAP"
+msgid ""
+"Statistics for OPSI could not be computed because of the following error: %s"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:129
-#: admin/opsi/class_opsiProfile.inc:139 admin/opsi/class_opsiProfile.inc:174
-#, php-format
-msgid "Could not find %s in the LDAP"
+#: addons/dashboard/class_dashBoardOpsi.inc:110
+msgid "Profile"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:137
-#: admin/opsi/class_opsiProfile.inc:182
-#: admin/opsi/class_opsiProductProperties.inc:190
-msgid "Failed to contact OPSI server"
+#: addons/dashboard/class_dashBoardOpsi.inc:110
+msgid "Systems"
 msgstr ""
 
-#: admin/opsi/class_opsiSoftwareList.inc:149
-#, php-format
-msgid "%s (%s-%s)"
+#: addons/dashboard/class_dashBoardOpsi.inc:110
+msgid "Groups"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:67 admin/opsi/class_opsiProfile.inc:68
-#: admin/opsi/class_opsiProfile.inc:72
-msgid "OPSI profile"
+#: admin/systems/opsi/class_opsiLogView.inc:32
+#: admin/systems/opsi/class_opsiLogView.inc:36
+msgid "Available logs"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:99
-msgid "Entries"
+#: admin/systems/opsi/class_opsiLogView.inc:36
+msgid "Available log files"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:102
-msgid "Netboot product"
+#: admin/systems/opsi/class_opsiLogView.inc:40
+msgid "Content of the selected log"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:102
-msgid "The netboot product to use for this profile"
+#: admin/systems/opsi/class_opsiLogView.inc:52
+msgid "OPSI Logs"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:107
-msgid "Software lists"
+#: admin/systems/opsi/class_opsiLogView.inc:53
+msgid "OPSI Logs Viewer"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:107
-msgid "Software lists that will be installed with this profile"
+#: admin/systems/opsi/class_opsiClient.inc:36
+msgid "OPSI client"
 msgstr ""
 
-#: admin/opsi/class_opsiProfile.inc:202
-#, php-format
-msgid "%s (%s)"
+#: admin/systems/opsi/class_opsiClient.inc:37
+msgid "Edit OPSI client settings"
 msgstr ""
 
-#: admin/opsi/class_opsiProfileManagement.inc:34
-msgid "OPSI profile management"
+#: admin/systems/opsi/class_opsiClient.inc:56
+msgid "OPSI Client"
 msgstr ""
 
-#: admin/opsi/class_opsiProductProperties.inc:100
-#: admin/opsi/class_opsiProductProperties.inc:101
-msgid "Product properties"
+#: admin/systems/opsi/class_opsiClient.inc:59
+msgid "OPSI Server"
 msgstr ""
 
-#: admin/opsi/class_opsiProductProperties.inc:118
-msgid "Properties of the products of this profile"
+#: admin/systems/opsi/class_opsiClient.inc:59
+msgid "The OPSI Server this client is connected to"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:33
-msgid "OPSI client"
+#: admin/systems/opsi/class_opsiClient.inc:63
+msgid "OPSI Profile"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:34
-msgid "Edit OPSI client settings"
+#: admin/systems/opsi/class_opsiClient.inc:63
+msgid "The OPSI Profile to apply to this client"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:48
-msgid "OPSI Client"
+#: admin/systems/opsi/class_opsiClient.inc:69
+#: admin/opsi/class_opsiOnDemandList.inc:67
+#: admin/opsi/class_opsiSoftwareList.inc:68
+msgid "Softwares"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:51
-msgid "OPSI Server"
+#: admin/systems/opsi/class_opsiClient.inc:73
+msgid "The localboot products to setup on this host"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:51
-msgid "The OPSI Server this client is connected to"
+#: admin/systems/opsi/class_opsiClient.inc:86
+#: admin/opsi/class_opsiOnDemandList.inc:71
+#: admin/opsi/class_opsiSoftwareList.inc:85
+msgid "Localboot products"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:55
-msgid "OPSI Profile"
+#: admin/systems/opsi/class_opsiClient.inc:93
+msgid "Inherit group localboots"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:55
-msgid "The OPSI Profile to apply to this client"
+#: admin/systems/opsi/class_opsiClient.inc:93
+msgid ""
+"If this is checked localboot configured in the group OPSI tab will be "
+"installed along with the localboots configured here"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:96
+#: admin/systems/opsi/class_opsiClient.inc:99
+msgid "Information"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:102
+msgid "Last seen"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:102
+msgid "Last time this OPSI client was seen by the OPSI server"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:175
 msgid "Could not get macAddress for OPSI server!"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:105
-#: admin/systems/opsi/class_opsiClient.inc:193
+#: admin/systems/opsi/class_opsiClient.inc:184
+#: admin/systems/opsi/class_opsiClient.inc:295
 msgid "Could not remove OPSI information"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:136
+#: admin/systems/opsi/class_opsiClient.inc:214
 msgid "This member was not found or has no macAddress"
 msgstr ""
 
-#: admin/systems/opsi/class_opsiClient.inc:141
+#: admin/systems/opsi/class_opsiClient.inc:219
 #, php-format
 msgid "Could not get macAddress for \"%s\""
 msgstr ""
 
+#: admin/systems/opsi/class_opsiClient.inc:248
+msgid "Could not update OPSI information"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:325
+#, php-format
+msgid "Inherited (%s)"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:339
+#: admin/opsi/class_opsiSoftwareList.inc:114
+#: admin/opsi/class_opsiProductProperties.inc:174
+#: admin/opsi/class_opsiProfile.inc:160
+msgid "Could not contact argonaut server"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:351
+#: admin/opsi/class_opsiSoftwareList.inc:127
+#: admin/opsi/class_opsiProfile.inc:173
+#, php-format
+msgid "Server %s has no mac address configured in the LDAP"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:357
+#: admin/opsi/class_opsiSoftwareList.inc:133
+#: admin/opsi/class_opsiProfile.inc:144 admin/opsi/class_opsiProfile.inc:179
+#, php-format
+msgid "Could not find %s in the LDAP"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:366
+#, php-format
+msgid "Failed to contact OPSI server: %s"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:368
+msgid "Never"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:385
+#: admin/systems/opsi/class_opsiClient.inc:397
+#: admin/opsi/class_opsiSoftwareList.inc:141
+#: admin/opsi/class_opsiProductProperties.inc:189
+#: admin/opsi/class_opsiProfile.inc:187
+msgid "Failed to contact OPSI server"
+msgstr ""
+
+#: admin/systems/opsi/class_opsiClient.inc:404
+#: admin/opsi/class_opsiSoftwareList.inc:153
+#, php-format
+msgid "%s (%s-%s)"
+msgstr ""
+
 #: admin/systems/services/opsi/class_serviceOPSI.inc:29
 #: admin/systems/services/opsi/class_serviceOPSI.inc:30
 msgid "OPSI service"
@@ -290,6 +323,110 @@ msgstr ""
 msgid "The password to use for connection"
 msgstr ""
 
+#: admin/opsi/class_opsiOnDemandList.inc:28
+#: admin/opsi/class_opsiOnDemandList.inc:33
+msgid "OPSI ondemand list"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:29
+msgid "OPSI on demand software list"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:50
+#: admin/opsi/class_opsiSoftwareList.inc:54
+msgid "Infos"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:53
+#: admin/opsi/class_opsiSoftwareList.inc:58 admin/opsi/class_opsiProfile.inc:94
+msgid "OPSI server"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:53
+#: admin/opsi/class_opsiSoftwareList.inc:58 admin/opsi/class_opsiProfile.inc:94
+msgid "OPSI server to use for deployment"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:57
+#: admin/opsi/class_opsiSoftwareList.inc:62
+#: admin/opsi/class_opsiProductProperties.inc:113
+#: admin/opsi/class_opsiProfile.inc:90 admin/opsi/class_opsiProfile.inc:98
+msgid "Name"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:57
+#: admin/opsi/class_opsiSoftwareList.inc:62 admin/opsi/class_opsiProfile.inc:98
+msgid "Name of this OPSI profile"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:61
+msgid "Show details"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:61
+msgid "Show further information to the user"
+msgstr ""
+
+#: admin/opsi/class_opsiOnDemandList.inc:71
+msgid "The localboot products to put in this list"
+msgstr ""
+
+#: admin/opsi/class_opsiSoftwareList.inc:32
+msgid "OPSI list"
+msgstr ""
+
+#: admin/opsi/class_opsiSoftwareList.inc:33
+#: admin/opsi/class_opsiSoftwareList.inc:37
+msgid "OPSI software list"
+msgstr ""
+
+#: admin/opsi/class_opsiSoftwareList.inc:72
+msgid "The localboot products to install with this list"
+msgstr ""
+
+#: admin/opsi/class_opsiProductProperties.inc:100
+#: admin/opsi/class_opsiProductProperties.inc:101
+msgid "Product properties"
+msgstr ""
+
+#: admin/opsi/class_opsiProductProperties.inc:118
+msgid "Properties of the products of this profile"
+msgstr ""
+
+#: admin/opsi/class_opsiProfileManagement.inc:34
+msgid "OPSI profile management"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:67 admin/opsi/class_opsiProfile.inc:68
+#: admin/opsi/class_opsiProfile.inc:72
+msgid "OPSI profile"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:104
+msgid "Entries"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:107
+msgid "Netboot product"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:107
+msgid "The netboot product to use for this profile"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:112
+msgid "Software lists"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:112
+msgid "Software lists that will be installed with this profile"
+msgstr ""
+
+#: admin/opsi/class_opsiProfile.inc:206
+#, php-format
+msgid "%s (%s)"
+msgstr ""
+
 #: addons/opsi/opsiimport.tpl.c:2
 msgid ""
 "Warning : Once you import your OPSI hosts into FusionDirectory, they will be "
diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po
index d991695a9a..79a39a35e1 100644
--- a/opsi/locale/es/fusiondirectory.po
+++ b/opsi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po
index 27892dff2b..910219cb81 100644
--- a/opsi/locale/es_CO/fusiondirectory.po
+++ b/opsi/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po
index e4b956ec37..41ba76fb0f 100644
--- a/opsi/locale/es_VE/fusiondirectory.po
+++ b/opsi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po
index fbbd04bd89..7ade493803 100644
--- a/opsi/locale/fa_IR/fusiondirectory.po
+++ b/opsi/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po
index 953dbe835a..ff30ccbf2f 100644
--- a/opsi/locale/fi_FI/fusiondirectory.po
+++ b/opsi/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po
index 8ccd548fab..5ef64a3223 100644
--- a/opsi/locale/fr/fusiondirectory.po
+++ b/opsi/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po
index 9047cdb9c6..6327371320 100644
--- a/opsi/locale/hu_HU/fusiondirectory.po
+++ b/opsi/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po
index b947e1fbe9..5f62e8ca40 100644
--- a/opsi/locale/id/fusiondirectory.po
+++ b/opsi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index 64f4614612..d4a385638a 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/opsi/locale/ja/fusiondirectory.po b/opsi/locale/ja/fusiondirectory.po
index 9ba6d5d240..bcefa88e94 100644
--- a/opsi/locale/ja/fusiondirectory.po
+++ b/opsi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ko/fusiondirectory.po b/opsi/locale/ko/fusiondirectory.po
index ff3cc2843e..26efdc9f8d 100644
--- a/opsi/locale/ko/fusiondirectory.po
+++ b/opsi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po
index 515c233b9e..a99d8d7e04 100644
--- a/opsi/locale/lv/fusiondirectory.po
+++ b/opsi/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po
index 8de209d8b7..3aeeec9290 100644
--- a/opsi/locale/nb/fusiondirectory.po
+++ b/opsi/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po
index 57d0805ab9..6d3417b12c 100644
--- a/opsi/locale/nl/fusiondirectory.po
+++ b/opsi/locale/nl/fusiondirectory.po
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po
index 381f77994c..dade03c3bf 100644
--- a/opsi/locale/pl/fusiondirectory.po
+++ b/opsi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po
index 333c4b0107..92a327abed 100644
--- a/opsi/locale/pt/fusiondirectory.po
+++ b/opsi/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po
index b0f5b8df77..1194ceb1df 100644
--- a/opsi/locale/pt_BR/fusiondirectory.po
+++ b/opsi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po
index 39c6ebacf9..560ff84fa4 100644
--- a/opsi/locale/ru/fusiondirectory.po
+++ b/opsi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po
index b13e8b290a..642df8e2ed 100644
--- a/opsi/locale/ru@petr1708/fusiondirectory.po
+++ b/opsi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po
index b472b047c2..2a01e4bced 100644
--- a/opsi/locale/sv/fusiondirectory.po
+++ b/opsi/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/opsi/locale/tr_TR/fusiondirectory.po b/opsi/locale/tr_TR/fusiondirectory.po
index 2b0c666de2..6514edc179 100644
--- a/opsi/locale/tr_TR/fusiondirectory.po
+++ b/opsi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po
index 3e9649b0d1..1c34489c3d 100644
--- a/opsi/locale/ug/fusiondirectory.po
+++ b/opsi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po
index f27207c41d..d7904bfd2f 100644
--- a/opsi/locale/vi_VN/fusiondirectory.po
+++ b/opsi/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po
index a5697a0ba3..d0a204db55 100644
--- a/opsi/locale/zh/fusiondirectory.po
+++ b/opsi/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/opsi/locale/zh_TW/fusiondirectory.po b/opsi/locale/zh_TW/fusiondirectory.po
index ffba34948b..a5105500fe 100644
--- a/opsi/locale/zh_TW/fusiondirectory.po
+++ b/opsi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/af_ZA/fusiondirectory.po b/personal/locale/af_ZA/fusiondirectory.po
index 43a4cda344..06d924a02a 100644
--- a/personal/locale/af_ZA/fusiondirectory.po
+++ b/personal/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po
index 9871ce3cdb..011866d55b 100644
--- a/personal/locale/ar/fusiondirectory.po
+++ b/personal/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po
index 64f2a52d9a..82e7a2fd05 100644
--- a/personal/locale/ca/fusiondirectory.po
+++ b/personal/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po
index ddf0f7265b..8bd774385b 100644
--- a/personal/locale/cs_CZ/fusiondirectory.po
+++ b/personal/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po
index 7cf26cbb60..3f8ac6136b 100644
--- a/personal/locale/de/fusiondirectory.po
+++ b/personal/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po
index d41e8bd1fb..db59dbbf53 100644
--- a/personal/locale/el_GR/fusiondirectory.po
+++ b/personal/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/personal/locale/en/fusiondirectory.po b/personal/locale/en/fusiondirectory.po
index 9432e3fae4..0fda17afcf 100644
--- a/personal/locale/en/fusiondirectory.po
+++ b/personal/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,6 +17,59 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
+#: config/personal/class_personalConfig.inc:28
+msgid "Personal configuration"
+msgstr ""
+
+#: config/personal/class_personalConfig.inc:29
+msgid "FusionDirectory personal plugin configuration"
+msgstr ""
+
+#: config/personal/class_personalConfig.inc:42
+#: personal/personal/class_personalInfo.inc:85
+msgid "Personal"
+msgstr ""
+
+#: config/personal/class_personalConfig.inc:45
+msgid "Allow use of private email for password recovery"
+msgstr ""
+
+#: config/personal/class_personalConfig.inc:45
+msgid "Allow users to use their private email address for password recovery"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:69
+msgid "Facebook"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:79
+msgid "Twitter"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:99
+msgid "Diaspora*"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:112
+msgid "Diaspora accounts must look like user@pod"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:122
+msgid "LinkedIn"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:132
+msgid "ORCID"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:145
+msgid "ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits"
+msgstr ""
+
+#: personal/personal/class_socialHandlers.inc:148
+msgid "Incorrect ORCID value, the checksum does not match"
+msgstr ""
+
 #: personal/personal/class_personalInfo.inc:30
 msgid "Site"
 msgstr ""
@@ -33,11 +86,6 @@ msgstr ""
 msgid "Id of this user on this website"
 msgstr ""
 
-#: personal/personal/class_personalInfo.inc:85
-#: config/personal/class_personalConfig.inc:42
-msgid "Personal"
-msgstr ""
-
 #: personal/personal/class_personalInfo.inc:86
 msgid "Personal information"
 msgstr ""
@@ -131,43 +179,3 @@ msgstr ""
 #: personal/personal/class_personalInfo.inc:159
 msgid "Private email addresses of this user"
 msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:68
-msgid "Facebook"
-msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:78
-msgid "Twitter"
-msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:98
-msgid "Google+"
-msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:118
-msgid "Diaspora*"
-msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:131
-msgid "Diaspora accounts must look like user@pod"
-msgstr ""
-
-#: personal/personal/class_socialHandlers.inc:141
-msgid "LinkedIn"
-msgstr ""
-
-#: config/personal/class_personalConfig.inc:28
-msgid "Personal configuration"
-msgstr ""
-
-#: config/personal/class_personalConfig.inc:29
-msgid "FusionDirectory personal plugin configuration"
-msgstr ""
-
-#: config/personal/class_personalConfig.inc:45
-msgid "Allow use of private email for password recovery"
-msgstr ""
-
-#: config/personal/class_personalConfig.inc:45
-msgid "Allow users to use their private email address for password recovery"
-msgstr ""
diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po
index ca62702c77..1de0222a18 100644
--- a/personal/locale/es/fusiondirectory.po
+++ b/personal/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po
index 8cbe3866d8..057cc32ded 100644
--- a/personal/locale/es_CO/fusiondirectory.po
+++ b/personal/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po
index 9bf40ce86e..9a9f238085 100644
--- a/personal/locale/es_VE/fusiondirectory.po
+++ b/personal/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po
index 22d2c8e136..1b950119d0 100644
--- a/personal/locale/fa_IR/fusiondirectory.po
+++ b/personal/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po
index 7b3d85efd9..d632edc732 100644
--- a/personal/locale/fi_FI/fusiondirectory.po
+++ b/personal/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po
index c0fbbc45dc..ef81506227 100644
--- a/personal/locale/fr/fusiondirectory.po
+++ b/personal/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po
index 1d05719ce4..5197ebdb6e 100644
--- a/personal/locale/hu_HU/fusiondirectory.po
+++ b/personal/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po
index 6e0efc78aa..7f406f2a2b 100644
--- a/personal/locale/id/fusiondirectory.po
+++ b/personal/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index a158cb947c..ff668a5068 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/personal/locale/ja/fusiondirectory.po b/personal/locale/ja/fusiondirectory.po
index a338e8ad82..a5f6884ab8 100644
--- a/personal/locale/ja/fusiondirectory.po
+++ b/personal/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ko/fusiondirectory.po b/personal/locale/ko/fusiondirectory.po
index 84ec1a8be7..db3125e800 100644
--- a/personal/locale/ko/fusiondirectory.po
+++ b/personal/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po
index 4512ae1b9f..d36c6890d8 100644
--- a/personal/locale/lv/fusiondirectory.po
+++ b/personal/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po
index 1077a3949a..6f980b7b33 100644
--- a/personal/locale/nb/fusiondirectory.po
+++ b/personal/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po
index 131858b747..956ee95b4a 100644
--- a/personal/locale/nl/fusiondirectory.po
+++ b/personal/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po
index 48f0c8259a..3d73ad7e28 100644
--- a/personal/locale/pl/fusiondirectory.po
+++ b/personal/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po
index 0799b8f896..f8222ca7d8 100644
--- a/personal/locale/pt/fusiondirectory.po
+++ b/personal/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po
index 714d0f2b60..a5bf07e956 100644
--- a/personal/locale/pt_BR/fusiondirectory.po
+++ b/personal/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po
index a6ed1d8d85..5078246067 100644
--- a/personal/locale/ru/fusiondirectory.po
+++ b/personal/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po
index 5a9a89cbc3..e75767ce40 100644
--- a/personal/locale/ru@petr1708/fusiondirectory.po
+++ b/personal/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po
index 65b0f03373..d77192ffa3 100644
--- a/personal/locale/sv/fusiondirectory.po
+++ b/personal/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/personal/locale/tr_TR/fusiondirectory.po b/personal/locale/tr_TR/fusiondirectory.po
index 934bf52c8a..d5a304df1c 100644
--- a/personal/locale/tr_TR/fusiondirectory.po
+++ b/personal/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po
index 7efef7f575..fb37785764 100644
--- a/personal/locale/ug/fusiondirectory.po
+++ b/personal/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po
index ad6f351fa4..ebbe2d0434 100644
--- a/personal/locale/vi_VN/fusiondirectory.po
+++ b/personal/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po
index 6f654a63f7..3399fcd860 100644
--- a/personal/locale/zh/fusiondirectory.po
+++ b/personal/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/personal/locale/zh_TW/fusiondirectory.po b/personal/locale/zh_TW/fusiondirectory.po
index bef2bb6fb3..e78167047f 100644
--- a/personal/locale/zh_TW/fusiondirectory.po
+++ b/personal/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/af_ZA/fusiondirectory.po b/posix/locale/af_ZA/fusiondirectory.po
index baf0a35735..510288c5eb 100644
--- a/posix/locale/af_ZA/fusiondirectory.po
+++ b/posix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ar/fusiondirectory.po b/posix/locale/ar/fusiondirectory.po
index 3eeeba2cfd..86d90e1c1f 100644
--- a/posix/locale/ar/fusiondirectory.po
+++ b/posix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/posix/locale/ca/fusiondirectory.po b/posix/locale/ca/fusiondirectory.po
index fec64d4ea7..98764a7541 100644
--- a/posix/locale/ca/fusiondirectory.po
+++ b/posix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/posix/locale/cs_CZ/fusiondirectory.po b/posix/locale/cs_CZ/fusiondirectory.po
index 36fdb4e9fe..2279805c6d 100644
--- a/posix/locale/cs_CZ/fusiondirectory.po
+++ b/posix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/posix/locale/de/fusiondirectory.po b/posix/locale/de/fusiondirectory.po
index 9af7d6dfeb..8f1549f825 100644
--- a/posix/locale/de/fusiondirectory.po
+++ b/posix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/posix/locale/el_GR/fusiondirectory.po b/posix/locale/el_GR/fusiondirectory.po
index 08040e83fd..ee8587e341 100644
--- a/posix/locale/el_GR/fusiondirectory.po
+++ b/posix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/posix/locale/en/fusiondirectory.po b/posix/locale/en/fusiondirectory.po
index 436da12f3c..f817b671cc 100644
--- a/posix/locale/en/fusiondirectory.po
+++ b/posix/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,462 +17,478 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/posix/class_posixAccount.inc:88
-#: personal/posix/class_posixAccount.inc:117
-msgid "Unix"
+#: config/posix/class_posixConfig.inc:28
+msgid "POSIX configuration"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:89
-msgid "Edit users POSIX settings"
+#: config/posix/class_posixConfig.inc:29
+msgid "FusionDirectory POSIX plugin configuration"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
-msgid "Home directory"
+#: config/posix/class_posixConfig.inc:42
+msgid "Posix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:121
-msgid "The path to the home directory of this user"
+#: config/posix/class_posixConfig.inc:46
+msgid "POSIX groups RDN"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
-msgid "Shell"
+#: config/posix/class_posixConfig.inc:46
+msgid "The branch where POSIX groups are stored."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:126
-msgid "Which shell should be used when this user log in"
+#: config/posix/class_posixConfig.inc:51
+msgid "Group/user min id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:128
-msgid "unconfigured"
+#: config/posix/class_posixConfig.inc:52
+msgid ""
+"The minimum assignable user or group id to avoid security leaks with id 0 "
+"accounts."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
-msgid "Primary group"
+#: config/posix/class_posixConfig.inc:57
+msgid "Next id hook"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:132
-msgid "Primary group for this user"
+#: config/posix/class_posixConfig.inc:57
+msgid ""
+"A script to be called for finding the next free id number for users or "
+"groups."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
-msgid "Status"
+#: config/posix/class_posixConfig.inc:61
+msgid "Base number for user id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:136
-msgid "Status of this user unix account"
+#: config/posix/class_posixConfig.inc:62
+msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
-msgid "Force user/group id"
+#: config/posix/class_posixConfig.inc:67
+msgid "Base number for group id"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:140
-msgid "Force user id and group id values for this user"
+#: config/posix/class_posixConfig.inc:68
+msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
-msgid "User id"
+#: config/posix/class_posixConfig.inc:73
+msgid "Id allocation method"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:144
-msgid "User id value for this user"
+#: config/posix/class_posixConfig.inc:73
+msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
-msgid "Group id"
+#: config/posix/class_posixConfig.inc:76
+msgid "Traditional"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:149
-msgid "Group id value for this user"
+#: config/posix/class_posixConfig.inc:76
+msgid "Samba unix id pool"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:156
-#: personal/posix/class_posixAccount.inc:159
-msgid "Group membership"
+#: config/posix/class_posixConfig.inc:79
+msgid "Pool user id min"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:163
-msgid "Account"
+#: config/posix/class_posixConfig.inc:79
+msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
-msgid "User must change password on first login"
+#: config/posix/class_posixConfig.inc:84
+msgid "Pool user id max"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:167
-msgid ""
-"User must change password on first login (needs a value for Delay before "
-"forcing password change)"
+#: config/posix/class_posixConfig.inc:84
+msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
-msgid "Minimum delay between password changes (days)"
+#: config/posix/class_posixConfig.inc:89
+msgid "Pool group id min"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:171
-msgid ""
-"The user won't be able to change his password before this number of days "
-"(leave empty to disable)"
+#: config/posix/class_posixConfig.inc:89
+msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
-msgid "Delay before forcing password change (days)"
+#: config/posix/class_posixConfig.inc:94
+msgid "Pool group id max"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:176
-msgid ""
-"The user will be forced to change his password after this number of days "
-"(leave empty to disable)"
+#: config/posix/class_posixConfig.inc:94
+msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
-msgid "Password expiration date"
+#: config/posix/class_posixConfig.inc:101
+msgid "Shells"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:181
-msgid ""
-"Date after which this user password will expire (leave empty to disable)"
+#: config/posix/class_posixConfig.inc:105
+msgid "Available shells"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
-msgid "Delay of inactivity before disabling user (days)"
+#: config/posix/class_posixConfig.inc:105
+msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:186
-msgid ""
-"Maximum delay of inactivity after password expiration before the user is "
-"disabled (leave empty to disable)"
+#: config/posix/class_posixConfig.inc:112
+msgid "Default shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
-msgid "Delay for user warning before password expiry (days)"
+#: config/posix/class_posixConfig.inc:112
+msgid "Shell used by default when activating Unix tab."
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:191
-msgid ""
-"The user will be warned this number of days before his password expiration "
-"(leave empty to disable)"
+#: admin/groups/posix/class_posixGroup.inc:34
+msgid "Group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:203
-#: admin/groups/posix/class_posixGroup.inc:91
-msgid "System trust"
+#: admin/groups/posix/class_posixGroup.inc:35
+msgid "POSIX group information"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:207
-#: admin/groups/posix/class_posixGroup.inc:95
-msgid "Trust mode"
+#: admin/groups/posix/class_posixGroup.inc:38
+msgid "POSIX group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:207
-#: admin/groups/posix/class_posixGroup.inc:95
-msgid "Type of authorization for those hosts"
+#: admin/groups/posix/class_posixGroup.inc:39
+msgid "POSIX user group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
-#: admin/groups/posix/class_posixGroup.inc:99
-msgid "disabled"
+#: admin/groups/posix/class_posixGroup.inc:59
+msgid "Properties"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:211
-#: personal/posix/class_posixAccount.inc:233
-#: admin/groups/posix/class_posixGroup.inc:99
-msgid "full access"
+#: admin/groups/posix/class_posixGroup.inc:63
+msgid "Name"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:211
-#: admin/groups/posix/class_posixGroup.inc:99
-msgid "allow access to these hosts"
+#: admin/groups/posix/class_posixGroup.inc:63
+msgid "Name of this group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:214
-msgid "Only allow this user to connect to this list of hosts"
+#: admin/groups/posix/class_posixGroup.inc:68
+msgid "Description"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:292
-msgid "automatic"
+#: admin/groups/posix/class_posixGroup.inc:68
+msgid "Short description of this group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:353
-msgid "expired"
+#: admin/groups/posix/class_posixGroup.inc:72
+msgid "Force GID"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:355
-msgid "grace time active"
+#: admin/groups/posix/class_posixGroup.inc:72
+msgid "Force GID value for this group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-#: personal/posix/class_posixAccount.inc:360
-#: personal/posix/class_posixAccount.inc:362
-msgid "active"
+#: admin/groups/posix/class_posixGroup.inc:76
+msgid "GID"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:358
-msgid "password expired"
+#: admin/groups/posix/class_posixGroup.inc:76
+msgid "GID value for this group"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:360
-msgid "password not changeable"
+#: admin/groups/posix/class_posixGroup.inc:83
+#: admin/groups/posix/class_posixGroup.inc:86
+msgid "Group members"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:422
-msgid "UID"
+#: admin/groups/posix/class_posixGroup.inc:93
+#: personal/posix/class_posixAccount.inc:204
+msgid "System trust"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:425
-#: admin/groups/posix/class_posixGroup.inc:74
-#: admin/groups/posix/class_posixGroup.inc:150
-msgid "GID"
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
+msgid "Trust mode"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:537
-#, php-format
-msgid "Group of user %s"
+#: admin/groups/posix/class_posixGroup.inc:97
+#: personal/posix/class_posixAccount.inc:208
+msgid "Type of authorization for those hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:783
-#: personal/posix/class_posixAccount.inc:804
-#: personal/posix/class_posixAccount.inc:998
-msgid "Warning"
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
+msgid "disabled"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:783
-#, php-format
-msgid "Unknown ID allocation method \"%s\"!"
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+#: personal/posix/class_posixAccount.inc:234
+msgid "full access"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:805
-#, php-format
-msgid "Timeout while waiting for lock. Ignoring lock from %s!"
+#: admin/groups/posix/class_posixGroup.inc:101
+#: personal/posix/class_posixAccount.inc:212
+msgid "allow access to these hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:832
-#: personal/posix/class_posixAccount.inc:872
-#: personal/posix/class_posixAccount.inc:884
-#: personal/posix/class_posixAccount.inc:888
-#: personal/posix/class_posixAccount.inc:895
-#: personal/posix/class_posixAccount.inc:904
-#: personal/posix/class_posixAccount.inc:966
-msgid "Error"
+#: admin/groups/posix/class_posixGroup.inc:104
+msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:832
-#: personal/posix/class_posixAccount.inc:872
-#: personal/posix/class_posixAccount.inc:884
-#: personal/posix/class_posixAccount.inc:888
-#: personal/posix/class_posixAccount.inc:895
-#: personal/posix/class_posixAccount.inc:904
-msgid "Cannot allocate a free ID:"
+#: personal/posix/class_posixAccount.inc:89
+#: personal/posix/class_posixAccount.inc:118
+msgid "Unix"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:832
-#, php-format
-msgid "%sPoolMin >= %sPoolMax!"
+#: personal/posix/class_posixAccount.inc:90
+msgid "Edit users POSIX settings"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:864
-msgid "LDAP error"
+#: personal/posix/class_posixAccount.inc:122
+msgid "Home directory"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:872
-msgid "sambaUnixIdPool is not unique!"
+#: personal/posix/class_posixAccount.inc:122
+msgid "The path to the home directory of this user"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:884
-#: personal/posix/class_posixAccount.inc:888
-msgid "no ID available!"
+#: personal/posix/class_posixAccount.inc:127
+msgid "Shell"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:904
-msgid "maximum tries exceeded!"
+#: personal/posix/class_posixAccount.inc:127
+msgid "Which shell should be used when this user log in"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:966
-msgid "Cannot allocate a free ID!"
+#: personal/posix/class_posixAccount.inc:129
+msgid "unconfigured"
 msgstr ""
 
-#: personal/posix/class_posixAccount.inc:998
-msgid "\"nextIdHook\" is not available. Using default base!"
+#: personal/posix/class_posixAccount.inc:133
+msgid "Primary group"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:28
-msgid "POSIX configuration"
+#: personal/posix/class_posixAccount.inc:133
+msgid "Primary group for this user"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:29
-msgid "FusionDirectory POSIX plugin configuration"
+#: personal/posix/class_posixAccount.inc:137
+msgid "Status"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:42
-msgid "Posix"
+#: personal/posix/class_posixAccount.inc:137
+msgid "Status of this user unix account"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:46
-msgid "POSIX groups RDN"
+#: personal/posix/class_posixAccount.inc:141
+msgid "Force user/group id"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:46
-msgid "The branch where POSIX groups are stored."
+#: personal/posix/class_posixAccount.inc:141
+msgid "Force user id and group id values for this user"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:51
-msgid "Group/user min id"
+#: personal/posix/class_posixAccount.inc:145
+msgid "User id"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:52
-msgid ""
-"The minimum assignable user or group id to avoid security leaks with id 0 "
-"accounts."
+#: personal/posix/class_posixAccount.inc:145
+msgid "User id value for this user"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:57
-msgid "Next id hook"
+#: personal/posix/class_posixAccount.inc:150
+msgid "Group id"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:57
-msgid ""
-"A script to be called for finding the next free id number for users or "
-"groups."
+#: personal/posix/class_posixAccount.inc:150
+msgid "Group id value for this user"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:61
-msgid "Base number for user id"
+#: personal/posix/class_posixAccount.inc:157
+#: personal/posix/class_posixAccount.inc:160
+msgid "Group membership"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:62
-msgid "Where to start looking for a new free user id."
+#: personal/posix/class_posixAccount.inc:164
+msgid "Account"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:67
-msgid "Base number for group id"
+#: personal/posix/class_posixAccount.inc:168
+msgid "User must change password on first login"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:68
-msgid "Where to start looking for a new free group id."
+#: personal/posix/class_posixAccount.inc:168
+msgid ""
+"User must change password on first login (needs a value for Delay before "
+"forcing password change)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:73
-msgid "Id allocation method"
+#: personal/posix/class_posixAccount.inc:172
+msgid "Minimum delay between password changes (days)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:73
-msgid "Method to allocate user/group ids"
+#: personal/posix/class_posixAccount.inc:172
+msgid ""
+"The user won't be able to change his password before this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:76
-msgid "Traditional"
+#: personal/posix/class_posixAccount.inc:177
+msgid "Delay before forcing password change (days)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:76
-msgid "Samba unix id pool"
+#: personal/posix/class_posixAccount.inc:177
+msgid ""
+"The user will be forced to change his password after this number of days "
+"(leave empty to disable)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:79
-msgid "Pool user id min"
+#: personal/posix/class_posixAccount.inc:182
+msgid "Password expiration date"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:79
-msgid "Minimum value for user id when using pool method"
+#: personal/posix/class_posixAccount.inc:182
+msgid ""
+"Date after which this user password will expire (leave empty to disable)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:84
-msgid "Pool user id max"
+#: personal/posix/class_posixAccount.inc:187
+msgid "Delay of inactivity before disabling user (days)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:84
-msgid "Maximum value for user id when using pool method"
+#: personal/posix/class_posixAccount.inc:187
+msgid ""
+"Maximum delay of inactivity after password expiration before the user is "
+"disabled (leave empty to disable)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:89
-msgid "Pool group id min"
+#: personal/posix/class_posixAccount.inc:192
+msgid "Delay for user warning before password expiry (days)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:89
-msgid "Minimum value for group id when using pool method"
+#: personal/posix/class_posixAccount.inc:192
+msgid ""
+"The user will be warned this number of days before his password expiration "
+"(leave empty to disable)"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:94
-msgid "Pool group id max"
+#: personal/posix/class_posixAccount.inc:215
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:94
-msgid "Maximum value for group id when using pool method"
+#: personal/posix/class_posixAccount.inc:293
+msgid "automatic"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:101
-msgid "Shells"
+#: personal/posix/class_posixAccount.inc:354
+msgid "expired"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:105
-msgid "Available shells"
+#: personal/posix/class_posixAccount.inc:356
+msgid "grace time active"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:105
-msgid "Available POSIX shells for FD users."
+#: personal/posix/class_posixAccount.inc:359
+#: personal/posix/class_posixAccount.inc:361
+#: personal/posix/class_posixAccount.inc:363
+msgid "active"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:112
-msgid "Default shell"
+#: personal/posix/class_posixAccount.inc:359
+msgid "password expired"
 msgstr ""
 
-#: config/posix/class_posixConfig.inc:112
-msgid "Shell used by default when activating Unix tab."
+#: personal/posix/class_posixAccount.inc:361
+msgid "password not changeable"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:34
-msgid "Group"
+#: personal/posix/class_posixAccount.inc:524
+#, php-format
+msgid "Group of user %s"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:35
-msgid "POSIX group information"
+#: personal/posix/class_posixAccount.inc:546
+#, php-format
+msgid ""
+"Could not create automatic primary group (using gidNumber \"%s\"), because "
+"of the following errors"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:38
-msgid "POSIX group"
+#: personal/posix/class_posixAccount.inc:779
+#: personal/posix/class_posixAccount.inc:800
+#: personal/posix/class_posixAccount.inc:991
+#: personal/posix/class_posixAccount.inc:1008
+#: personal/posix/class_posixAccount.inc:1020
+msgid "Warning"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:39
-msgid "POSIX user group"
+#: personal/posix/class_posixAccount.inc:779
+#, php-format
+msgid "Unknown ID allocation method \"%s\"!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:57
-msgid "Properties"
+#: personal/posix/class_posixAccount.inc:801
+#, php-format
+msgid "Timeout while waiting for lock. Ignoring lock from %s!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
-msgid "Name"
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+#: personal/posix/class_posixAccount.inc:962
+msgid "Error"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:61
-msgid "Name of this group"
+#: personal/posix/class_posixAccount.inc:828
+#: personal/posix/class_posixAccount.inc:868
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+#: personal/posix/class_posixAccount.inc:891
+#: personal/posix/class_posixAccount.inc:900
+msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
-msgid "Description"
+#: personal/posix/class_posixAccount.inc:828
+#, php-format
+msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:66
-msgid "Short description of this group"
+#: personal/posix/class_posixAccount.inc:860
+msgid "LDAP error"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
-msgid "Force GID"
+#: personal/posix/class_posixAccount.inc:868
+msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:70
-msgid "Force GID value for this group"
+#: personal/posix/class_posixAccount.inc:880
+#: personal/posix/class_posixAccount.inc:884
+msgid "no ID available!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:74
-msgid "GID value for this group"
+#: personal/posix/class_posixAccount.inc:900
+msgid "maximum tries exceeded!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:81
-#: admin/groups/posix/class_posixGroup.inc:84
-msgid "Group members"
+#: personal/posix/class_posixAccount.inc:962
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: admin/groups/posix/class_posixGroup.inc:102
-msgid "Only allow this group to connect to this list of hosts"
+#: personal/posix/class_posixAccount.inc:993
+#: personal/posix/class_posixAccount.inc:1010
+#, php-format
+msgid ""
+"%s\n"
+"Result: %s\n"
+"Using default base!"
+msgstr ""
+
+#: personal/posix/class_posixAccount.inc:1011
+msgid "\"nextIdHook\" did not return a valid output!"
+msgstr ""
+
+#: personal/posix/class_posixAccount.inc:1020
+msgid "\"nextIdHook\" is not available. Using default base!"
 msgstr ""
diff --git a/posix/locale/es/fusiondirectory.po b/posix/locale/es/fusiondirectory.po
index d1441edde7..b72839b07b 100644
--- a/posix/locale/es/fusiondirectory.po
+++ b/posix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/posix/locale/es_CO/fusiondirectory.po b/posix/locale/es_CO/fusiondirectory.po
index de095bbd6d..bc97875ee3 100644
--- a/posix/locale/es_CO/fusiondirectory.po
+++ b/posix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/posix/locale/es_VE/fusiondirectory.po b/posix/locale/es_VE/fusiondirectory.po
index c80a226a6c..0ab13d2e8a 100644
--- a/posix/locale/es_VE/fusiondirectory.po
+++ b/posix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/posix/locale/fa_IR/fusiondirectory.po b/posix/locale/fa_IR/fusiondirectory.po
index da77d0e536..f15cfa689a 100644
--- a/posix/locale/fa_IR/fusiondirectory.po
+++ b/posix/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/posix/locale/fi_FI/fusiondirectory.po b/posix/locale/fi_FI/fusiondirectory.po
index 274423e76d..48b1dc0870 100644
--- a/posix/locale/fi_FI/fusiondirectory.po
+++ b/posix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/posix/locale/fr/fusiondirectory.po b/posix/locale/fr/fusiondirectory.po
index add25ec704..124cc4cd13 100644
--- a/posix/locale/fr/fusiondirectory.po
+++ b/posix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/posix/locale/hu_HU/fusiondirectory.po b/posix/locale/hu_HU/fusiondirectory.po
index 9b6302b75d..9722850609 100644
--- a/posix/locale/hu_HU/fusiondirectory.po
+++ b/posix/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/posix/locale/id/fusiondirectory.po b/posix/locale/id/fusiondirectory.po
index a6f9808d54..9ebabc10e1 100644
--- a/posix/locale/id/fusiondirectory.po
+++ b/posix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index 44cb32ce9e..9a5670ada7 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/posix/locale/ja/fusiondirectory.po b/posix/locale/ja/fusiondirectory.po
index 018b38292c..cc6f3e323c 100644
--- a/posix/locale/ja/fusiondirectory.po
+++ b/posix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ko/fusiondirectory.po b/posix/locale/ko/fusiondirectory.po
index abb907b826..acc78bf8df 100644
--- a/posix/locale/ko/fusiondirectory.po
+++ b/posix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/posix/locale/lv/fusiondirectory.po b/posix/locale/lv/fusiondirectory.po
index 4667ab542c..b935528e78 100644
--- a/posix/locale/lv/fusiondirectory.po
+++ b/posix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/posix/locale/nb/fusiondirectory.po b/posix/locale/nb/fusiondirectory.po
index c8e4e30f2f..d3ff6971ac 100644
--- a/posix/locale/nb/fusiondirectory.po
+++ b/posix/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/posix/locale/nl/fusiondirectory.po b/posix/locale/nl/fusiondirectory.po
index a88423707b..2ef3d17ae5 100644
--- a/posix/locale/nl/fusiondirectory.po
+++ b/posix/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/posix/locale/pl/fusiondirectory.po b/posix/locale/pl/fusiondirectory.po
index 63ba2a0ddb..8eb640ce44 100644
--- a/posix/locale/pl/fusiondirectory.po
+++ b/posix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/posix/locale/pt/fusiondirectory.po b/posix/locale/pt/fusiondirectory.po
index 96a52c9f3a..869ebb339a 100644
--- a/posix/locale/pt/fusiondirectory.po
+++ b/posix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/posix/locale/pt_BR/fusiondirectory.po b/posix/locale/pt_BR/fusiondirectory.po
index 98ad10e379..7b7efde809 100644
--- a/posix/locale/pt_BR/fusiondirectory.po
+++ b/posix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/posix/locale/ru/fusiondirectory.po b/posix/locale/ru/fusiondirectory.po
index 0bdddbd7d2..6670934b59 100644
--- a/posix/locale/ru/fusiondirectory.po
+++ b/posix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/posix/locale/ru@petr1708/fusiondirectory.po b/posix/locale/ru@petr1708/fusiondirectory.po
index a007961ffc..c426e3230e 100644
--- a/posix/locale/ru@petr1708/fusiondirectory.po
+++ b/posix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/sv/fusiondirectory.po b/posix/locale/sv/fusiondirectory.po
index d8b92412df..cd2181496b 100644
--- a/posix/locale/sv/fusiondirectory.po
+++ b/posix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/posix/locale/tr_TR/fusiondirectory.po b/posix/locale/tr_TR/fusiondirectory.po
index 0208b07be3..dd5ac60790 100644
--- a/posix/locale/tr_TR/fusiondirectory.po
+++ b/posix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ug/fusiondirectory.po b/posix/locale/ug/fusiondirectory.po
index 6b2c2cbcbb..993bbaa5ac 100644
--- a/posix/locale/ug/fusiondirectory.po
+++ b/posix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/vi_VN/fusiondirectory.po b/posix/locale/vi_VN/fusiondirectory.po
index 890a71d0d7..0b8690635b 100644
--- a/posix/locale/vi_VN/fusiondirectory.po
+++ b/posix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/posix/locale/zh/fusiondirectory.po b/posix/locale/zh/fusiondirectory.po
index d150dc40b1..f4a0c439ef 100644
--- a/posix/locale/zh/fusiondirectory.po
+++ b/posix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/posix/locale/zh_TW/fusiondirectory.po b/posix/locale/zh_TW/fusiondirectory.po
index 748f714bad..3c24c771c6 100644
--- a/posix/locale/zh_TW/fusiondirectory.po
+++ b/posix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/af_ZA/fusiondirectory.po b/postfix/locale/af_ZA/fusiondirectory.po
index 3b3e07db80..74992ce7ff 100644
--- a/postfix/locale/af_ZA/fusiondirectory.po
+++ b/postfix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po
index fc7f54460a..7fdafb7511 100644
--- a/postfix/locale/ar/fusiondirectory.po
+++ b/postfix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po
index 54aae219b0..0166bcb09c 100644
--- a/postfix/locale/ca/fusiondirectory.po
+++ b/postfix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po
index d0eeae2610..f2699a4d14 100644
--- a/postfix/locale/cs_CZ/fusiondirectory.po
+++ b/postfix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po
index 2bdd4c7a97..9bb3b8508d 100644
--- a/postfix/locale/de/fusiondirectory.po
+++ b/postfix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po
index 425d87b653..0d3576db03 100644
--- a/postfix/locale/el_GR/fusiondirectory.po
+++ b/postfix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/postfix/locale/en/fusiondirectory.po b/postfix/locale/en/fusiondirectory.po
index 216ae118a3..5e104a4253 100644
--- a/postfix/locale/en/fusiondirectory.po
+++ b/postfix/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,95 +17,132 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:29
-#: admin/systems/services/postfix/class_servicePostfix.inc:30
+#: admin/systems/services/postfix/class_servicePostfix.inc:56
+#: admin/systems/services/postfix/class_servicePostfix.inc:57
 msgid "Postfix (SMTP)"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:30
+#: admin/systems/services/postfix/class_servicePostfix.inc:57
 msgid "Services"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:44
+#: admin/systems/services/postfix/class_servicePostfix.inc:71
 msgid "Information"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:47
+#: admin/systems/services/postfix/class_servicePostfix.inc:74
 msgid "Hostname"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:47
+#: admin/systems/services/postfix/class_servicePostfix.inc:74
 msgid "The host name."
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:52
+#: admin/systems/services/postfix/class_servicePostfix.inc:79
+#: admin/systems/services/postfix/class_servicePostfix.inc:131
 msgid "Domain"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:52
+#: admin/systems/services/postfix/class_servicePostfix.inc:79
 msgid "The domain."
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:57
+#: admin/systems/services/postfix/class_servicePostfix.inc:84
 msgid "Max mail header size (KB)"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:57
+#: admin/systems/services/postfix/class_servicePostfix.inc:84
 msgid "This value specifies the maximal header size."
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:62
+#: admin/systems/services/postfix/class_servicePostfix.inc:89
 msgid "Max mailbox size (KB)"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:62
+#: admin/systems/services/postfix/class_servicePostfix.inc:89
 msgid "Defines the maximal size of mail box."
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:67
+#: admin/systems/services/postfix/class_servicePostfix.inc:94
 msgid "Max message size (KB)"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:67
+#: admin/systems/services/postfix/class_servicePostfix.inc:94
 msgid "Specify the maximal size of a message."
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:74
+#: admin/systems/services/postfix/class_servicePostfix.inc:101
 msgid "Domains and routing"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:78
+#: admin/systems/services/postfix/class_servicePostfix.inc:105
 msgid "Domains to accept mail for"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:78
+#: admin/systems/services/postfix/class_servicePostfix.inc:105
 msgid "Postfix networks"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:83
+#: admin/systems/services/postfix/class_servicePostfix.inc:110
 msgid "Transport table"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:88
+#: admin/systems/services/postfix/class_servicePostfix.inc:115
 msgid "Transport rule"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:102
+#: admin/systems/services/postfix/class_servicePostfix.inc:127
+msgid "Catchall table"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:131
+msgid "Domain concerned by this catchall rule"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:135
+msgid "Recipient"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:135
+msgid "Recipient mail address for this catchall rule"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:141
+msgid "Domain alias table"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:145
+msgid "From"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:145
+msgid "Domain concerned by this alias rule"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:149
+msgid "To"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:149
+msgid "Recipient domain for this alias rule"
+msgstr ""
+
+#: admin/systems/services/postfix/class_servicePostfix.inc:157
 msgid "Restrictions"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:106
+#: admin/systems/services/postfix/class_servicePostfix.inc:161
 msgid "Restrictions for sender"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:115
+#: admin/systems/services/postfix/class_servicePostfix.inc:170
 msgid "For sender"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:120
+#: admin/systems/services/postfix/class_servicePostfix.inc:175
 msgid "Restrictions for recipient"
 msgstr ""
 
-#: admin/systems/services/postfix/class_servicePostfix.inc:129
+#: admin/systems/services/postfix/class_servicePostfix.inc:184
 msgid "For recipient"
 msgstr ""
diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po
index 5a631345eb..a2424cdc03 100644
--- a/postfix/locale/es/fusiondirectory.po
+++ b/postfix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po
index 2ab9ba91d7..4542fb4ccb 100644
--- a/postfix/locale/es_CO/fusiondirectory.po
+++ b/postfix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po
index 61577b9275..be9b63059a 100644
--- a/postfix/locale/es_VE/fusiondirectory.po
+++ b/postfix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po
index b974b40c13..d739894744 100644
--- a/postfix/locale/fa_IR/fusiondirectory.po
+++ b/postfix/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po
index f9706c3612..e48e7da074 100644
--- a/postfix/locale/fi_FI/fusiondirectory.po
+++ b/postfix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po
index 69952a8813..a7b5ce277a 100644
--- a/postfix/locale/fr/fusiondirectory.po
+++ b/postfix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po
index 2c7be80bb4..976ff4ae65 100644
--- a/postfix/locale/hu_HU/fusiondirectory.po
+++ b/postfix/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po
index abac039771..df9e8c46fc 100644
--- a/postfix/locale/id/fusiondirectory.po
+++ b/postfix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index 7028592185..d50466cf56 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/postfix/locale/ja/fusiondirectory.po b/postfix/locale/ja/fusiondirectory.po
index 8260c00dd2..d751f75bdc 100644
--- a/postfix/locale/ja/fusiondirectory.po
+++ b/postfix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ko/fusiondirectory.po b/postfix/locale/ko/fusiondirectory.po
index ac19dfd06d..b4301d8252 100644
--- a/postfix/locale/ko/fusiondirectory.po
+++ b/postfix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po
index d447c91a1e..a099117e2c 100644
--- a/postfix/locale/lv/fusiondirectory.po
+++ b/postfix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po
index f5cbb5f7bc..b982435b1d 100644
--- a/postfix/locale/nb/fusiondirectory.po
+++ b/postfix/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po
index 89184e517f..ff07e4facf 100644
--- a/postfix/locale/nl/fusiondirectory.po
+++ b/postfix/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po
index 5e4c78f756..ddd768be72 100644
--- a/postfix/locale/pl/fusiondirectory.po
+++ b/postfix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po
index ac86dc10d1..4a9ec6b9db 100644
--- a/postfix/locale/pt/fusiondirectory.po
+++ b/postfix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po
index c41f885cb5..1a5057ba2c 100644
--- a/postfix/locale/pt_BR/fusiondirectory.po
+++ b/postfix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po
index 388a789ece..d98e82006e 100644
--- a/postfix/locale/ru/fusiondirectory.po
+++ b/postfix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po
index 180a360b5f..433f6ba2ab 100644
--- a/postfix/locale/ru@petr1708/fusiondirectory.po
+++ b/postfix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po
index 8cd05aa611..fa93db6df2 100644
--- a/postfix/locale/sv/fusiondirectory.po
+++ b/postfix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/postfix/locale/tr_TR/fusiondirectory.po b/postfix/locale/tr_TR/fusiondirectory.po
index 717ce923d8..897e415e8c 100644
--- a/postfix/locale/tr_TR/fusiondirectory.po
+++ b/postfix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po
index cc2ddd33c3..816446d61c 100644
--- a/postfix/locale/ug/fusiondirectory.po
+++ b/postfix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po
index 618c3295fa..09c256765c 100644
--- a/postfix/locale/vi_VN/fusiondirectory.po
+++ b/postfix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po
index 541ed05325..d6dbb3b235 100644
--- a/postfix/locale/zh/fusiondirectory.po
+++ b/postfix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/postfix/locale/zh_TW/fusiondirectory.po b/postfix/locale/zh_TW/fusiondirectory.po
index 0b66126f9c..cc4eb6e407 100644
--- a/postfix/locale/zh_TW/fusiondirectory.po
+++ b/postfix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/af_ZA/fusiondirectory.po b/ppolicy/locale/af_ZA/fusiondirectory.po
index 40b0018521..826f36962e 100644
--- a/ppolicy/locale/af_ZA/fusiondirectory.po
+++ b/ppolicy/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po
index ef4fcc5fc3..b32367c250 100644
--- a/ppolicy/locale/ar/fusiondirectory.po
+++ b/ppolicy/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po
index c1f0979097..22b3b316b2 100644
--- a/ppolicy/locale/ca/fusiondirectory.po
+++ b/ppolicy/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po
index e3afde93d2..6bbd5820d5 100644
--- a/ppolicy/locale/cs_CZ/fusiondirectory.po
+++ b/ppolicy/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po
index 54242c1a6a..c6c0c158dd 100644
--- a/ppolicy/locale/de/fusiondirectory.po
+++ b/ppolicy/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po
index c38d1d8bb0..c4bff63772 100644
--- a/ppolicy/locale/el_GR/fusiondirectory.po
+++ b/ppolicy/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ppolicy/locale/en/fusiondirectory.po b/ppolicy/locale/en/fusiondirectory.po
index 9a55e13a8b..5e0d7ec372 100644
--- a/ppolicy/locale/en/fusiondirectory.po
+++ b/ppolicy/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -18,71 +18,32 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: personal/ppolicy/class_ppolicyAccount.inc:29
-#: personal/ppolicy/class_ppolicyAccount.inc:44
-#: admin/ppolicy/class_ppolicy.inc:32 admin/ppolicy/class_ppolicy.inc:35
-msgid "Password policy"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:30
-msgid "Edit user's password policy"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:47
-#: admin/ppolicy/class_ppolicy.inc:51
-msgid "Policy"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:47
-msgid "Use a specific policy for this user"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:51
-msgid "Last password change"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:51
-msgid "Last time the password for the entry was changed"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:55
-msgid "Account locked time"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:55
-msgid "Time the account was locked"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:59
-msgid "Reset locking / force change"
-msgstr ""
-
-#: personal/ppolicy/class_ppolicyAccount.inc:59
-msgid "Resets the lock status of this account and/or force a password change"
+#: config/ppolicy/class_ppolicyConfig.inc:29
+msgid "Ppolicy plugin configuration"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:62
-msgid "Force password change (resets locking)"
+#: config/ppolicy/class_ppolicyConfig.inc:30
+msgid "FusionDirectory ppolicy plugin configuration"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:62
-msgid "Reset locking (same password)"
+#: config/ppolicy/class_ppolicyConfig.inc:43
+msgid "Ppolicy plugin"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:77
-msgid "Use the default"
+#: config/ppolicy/class_ppolicyConfig.inc:46
+msgid "Ppolicy RDN"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:83
-msgid "Never"
+#: config/ppolicy/class_ppolicyConfig.inc:46
+msgid "Branch in which ppolicies will be stored"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:90
-msgid "Unlocked"
+#: config/ppolicy/class_ppolicyConfig.inc:51
+msgid "Default ppolicy cn"
 msgstr ""
 
-#: personal/ppolicy/class_ppolicyAccount.inc:92
-msgid "Locked permanently"
+#: config/ppolicy/class_ppolicyConfig.inc:51
+msgid "What you put as default ppolicy in the overlay config"
 msgstr ""
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:27
@@ -93,92 +54,67 @@ msgstr ""
 msgid "Statistics about ppolicy expired users"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:39
+#: addons/dashboard/class_dashBoardPPolicy.inc:40
 msgid "Expired accounts"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:44
+#: addons/dashboard/class_dashBoardPPolicy.inc:45
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:8
 msgid "Locked accounts"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:57
+#: addons/dashboard/class_dashBoardPPolicy.inc:58
 msgid "Login"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:58
-#: addons/dashboard/class_dashBoardPPolicy.inc:63
+#: addons/dashboard/class_dashBoardPPolicy.inc:59
+#: addons/dashboard/class_dashBoardPPolicy.inc:64
 msgid "Name"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:59
-#: addons/dashboard/class_dashBoardPPolicy.inc:65
+#: addons/dashboard/class_dashBoardPPolicy.inc:60
+#: addons/dashboard/class_dashBoardPPolicy.inc:66
 msgid "Phone number"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:60
+#: addons/dashboard/class_dashBoardPPolicy.inc:61
 msgid "Expiration date"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:64
+#: addons/dashboard/class_dashBoardPPolicy.inc:65
 msgid "Email"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:85
-#: addons/dashboard/class_dashBoardPPolicy.inc:138
+#: addons/dashboard/class_dashBoardPPolicy.inc:86
+#: addons/dashboard/class_dashBoardPPolicy.inc:139
 msgid "Configuration error"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:86
+#: addons/dashboard/class_dashBoardPPolicy.inc:87
 #, php-format
 msgid "Default ppolicy \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardPPolicy.inc:139
+#: addons/dashboard/class_dashBoardPPolicy.inc:140
 #, php-format
 msgid "Ppolicy \"%s\" set for user \"%s\" could not be found in the LDAP!"
 msgstr ""
 
-#: config/ppolicy/class_ppolicyConfig.inc:29
-msgid "Ppolicy plugin configuration"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:30
-msgid "FusionDirectory ppolicy plugin configuration"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:43
-msgid "Ppolicy plugin"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:46
-msgid "Ppolicy RDN"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:46
-msgid "Branch in which ppolicies will be stored"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:51
-msgid "Default ppolicy cn"
-msgstr ""
-
-#: config/ppolicy/class_ppolicyConfig.inc:51
-msgid "What you put as default ppolicy in the overlay config"
-msgstr ""
-
-#: admin/ppolicy/class_ppolicyManagement.inc:29
-msgid "Password policies"
-msgstr ""
-
-#: admin/ppolicy/class_ppolicyManagement.inc:30
-msgid "Password policies management"
+#: admin/ppolicy/class_ppolicy.inc:32 admin/ppolicy/class_ppolicy.inc:35
+#: personal/ppolicy/class_ppolicyAccount.inc:29
+#: personal/ppolicy/class_ppolicyAccount.inc:44
+msgid "Password policy"
 msgstr ""
 
 #: admin/ppolicy/class_ppolicy.inc:33
 msgid "Password policy for ppolicy overlay"
 msgstr ""
 
+#: admin/ppolicy/class_ppolicy.inc:51
+#: personal/ppolicy/class_ppolicyAccount.inc:47
+msgid "Policy"
+msgstr ""
+
 #: admin/ppolicy/class_ppolicy.inc:56
 msgid "Policy name"
 msgstr ""
@@ -352,6 +288,70 @@ msgid ""
 "administrator following an automatic lockout"
 msgstr ""
 
+#: admin/ppolicy/class_ppolicyManagement.inc:29
+msgid "Password policies"
+msgstr ""
+
+#: admin/ppolicy/class_ppolicyManagement.inc:30
+msgid "Password policies management"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:30
+msgid "Edit user's password policy"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:47
+msgid "Use a specific policy for this user"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:51
+msgid "Last password change"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:51
+msgid "Last time the password for the entry was changed"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:55
+msgid "Account locked time"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:55
+msgid "Time the account was locked"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:59
+msgid "Reset locking / force change"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:59
+msgid "Resets the lock status of this account and/or force a password change"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:62
+msgid "Force password change (resets locking)"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:62
+msgid "Reset locking (same password)"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:77
+msgid "Use the default"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:83
+msgid "Never"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:90
+msgid "Unlocked"
+msgstr ""
+
+#: personal/ppolicy/class_ppolicyAccount.inc:92
+msgid "Locked permanently"
+msgstr ""
+
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:2
 msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po
index ad34640dbf..804a38653a 100644
--- a/ppolicy/locale/es/fusiondirectory.po
+++ b/ppolicy/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po
index e7e613ac4e..4e5e171631 100644
--- a/ppolicy/locale/es_CO/fusiondirectory.po
+++ b/ppolicy/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po
index be14238433..0ba83736d8 100644
--- a/ppolicy/locale/es_VE/fusiondirectory.po
+++ b/ppolicy/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po
index 7103aa6368..76d72e6d9f 100644
--- a/ppolicy/locale/fa_IR/fusiondirectory.po
+++ b/ppolicy/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po
index c45ae45b82..5626581d4b 100644
--- a/ppolicy/locale/fi_FI/fusiondirectory.po
+++ b/ppolicy/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po
index 82388ef2cf..cd5a035db1 100644
--- a/ppolicy/locale/fr/fusiondirectory.po
+++ b/ppolicy/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po
index 7e4b05c10f..06e6d0de0d 100644
--- a/ppolicy/locale/hu_HU/fusiondirectory.po
+++ b/ppolicy/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po
index 02cfd6f016..a4afb8a8f1 100644
--- a/ppolicy/locale/id/fusiondirectory.po
+++ b/ppolicy/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po
index b2c3b25f81..132dce07e0 100644
--- a/ppolicy/locale/it_IT/fusiondirectory.po
+++ b/ppolicy/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ppolicy/locale/ja/fusiondirectory.po b/ppolicy/locale/ja/fusiondirectory.po
index f2ebcaf2ca..a034370827 100644
--- a/ppolicy/locale/ja/fusiondirectory.po
+++ b/ppolicy/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ko/fusiondirectory.po b/ppolicy/locale/ko/fusiondirectory.po
index b5085342c1..db01fd7219 100644
--- a/ppolicy/locale/ko/fusiondirectory.po
+++ b/ppolicy/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2019
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/ppolicy/class_ppolicy.inc:74
 msgid "Minimum password age"
-msgstr ""
+msgstr "최소 암호 사용 기간"
 
 #: admin/ppolicy/class_ppolicy.inc:74
 msgid "Minimum time between password changes"
@@ -86,7 +86,7 @@ msgstr ""
 
 #: admin/ppolicy/class_ppolicy.inc:79
 msgid "Maximum password age"
-msgstr ""
+msgstr "최대 암호 사용 기간"
 
 #: admin/ppolicy/class_ppolicy.inc:79
 msgid ""
@@ -265,7 +265,7 @@ msgstr ""
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:58
 msgid "Login"
-msgstr ""
+msgstr "로그인"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:59
 #: addons/dashboard/class_dashBoardPPolicy.inc:64
@@ -367,7 +367,7 @@ msgstr ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:11
 msgid "Manager concerned"
-msgstr ""
+msgstr "관심있는 관리자"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:14
 msgid "uid"
diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po
index d1f42687f1..fc71676897 100644
--- a/ppolicy/locale/lv/fusiondirectory.po
+++ b/ppolicy/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po
index b6b5ba6561..eb233bf456 100644
--- a/ppolicy/locale/nb/fusiondirectory.po
+++ b/ppolicy/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po
index a221372e9d..e2f55c35ab 100644
--- a/ppolicy/locale/nl/fusiondirectory.po
+++ b/ppolicy/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po
index 8ec4b95371..343e63c02b 100644
--- a/ppolicy/locale/pl/fusiondirectory.po
+++ b/ppolicy/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po
index b647981c93..2018d02206 100644
--- a/ppolicy/locale/pt/fusiondirectory.po
+++ b/ppolicy/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po
index 0adc19c137..25655782ac 100644
--- a/ppolicy/locale/pt_BR/fusiondirectory.po
+++ b/ppolicy/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po
index 26afc99b7f..312fafdd52 100644
--- a/ppolicy/locale/ru/fusiondirectory.po
+++ b/ppolicy/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po
index fbaa8b31e6..f562b1e66b 100644
--- a/ppolicy/locale/ru@petr1708/fusiondirectory.po
+++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po
index 654f47d0a8..1ca4d683a1 100644
--- a/ppolicy/locale/sv/fusiondirectory.po
+++ b/ppolicy/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ppolicy/locale/tr_TR/fusiondirectory.po b/ppolicy/locale/tr_TR/fusiondirectory.po
index 639e446d7a..e006267427 100644
--- a/ppolicy/locale/tr_TR/fusiondirectory.po
+++ b/ppolicy/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po
index 0c447fe633..b2efafe30b 100644
--- a/ppolicy/locale/ug/fusiondirectory.po
+++ b/ppolicy/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po
index dd9b863808..e54e277835 100644
--- a/ppolicy/locale/vi_VN/fusiondirectory.po
+++ b/ppolicy/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po
index 970df07cb4..327b851f2b 100644
--- a/ppolicy/locale/zh/fusiondirectory.po
+++ b/ppolicy/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ppolicy/locale/zh_TW/fusiondirectory.po b/ppolicy/locale/zh_TW/fusiondirectory.po
index d1fd6039c9..25efdd8fd8 100644
--- a/ppolicy/locale/zh_TW/fusiondirectory.po
+++ b/ppolicy/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/af_ZA/fusiondirectory.po b/puppet/locale/af_ZA/fusiondirectory.po
index ecd570c4a7..984dcd8a1f 100644
--- a/puppet/locale/af_ZA/fusiondirectory.po
+++ b/puppet/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po
index 1ea56c138c..fa825f98fa 100644
--- a/puppet/locale/ar/fusiondirectory.po
+++ b/puppet/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po
index 2ab51440b8..949c90ad5d 100644
--- a/puppet/locale/ca/fusiondirectory.po
+++ b/puppet/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po
index 5e7603feb5..214a7c5f38 100644
--- a/puppet/locale/cs_CZ/fusiondirectory.po
+++ b/puppet/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po
index 02aace1d41..949cb791bd 100644
--- a/puppet/locale/de/fusiondirectory.po
+++ b/puppet/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po
index 287d8651a2..fab01611e4 100644
--- a/puppet/locale/el_GR/fusiondirectory.po
+++ b/puppet/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/puppet/locale/en/fusiondirectory.po b/puppet/locale/en/fusiondirectory.po
index 0eac29b5e1..d675920d7d 100644
--- a/puppet/locale/en/fusiondirectory.po
+++ b/puppet/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -66,6 +66,11 @@ msgid ""
 "Support for puppet schema in order to edit puppet classes and puppet vars"
 msgstr ""
 
+#: admin/systems/puppet/class_puppetNode.inc:102
+msgid ""
+"You need to add the puppet service to a server to be able to use this tab"
+msgstr ""
+
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
 msgid "Puppet server"
diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po
index 7e4879e050..e2a52bf9ce 100644
--- a/puppet/locale/es/fusiondirectory.po
+++ b/puppet/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po
index cc4231070d..233142090b 100644
--- a/puppet/locale/es_CO/fusiondirectory.po
+++ b/puppet/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po
index 18791d7352..14602ef047 100644
--- a/puppet/locale/es_VE/fusiondirectory.po
+++ b/puppet/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po
index 6c8df987f3..49ed574aca 100644
--- a/puppet/locale/fa_IR/fusiondirectory.po
+++ b/puppet/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po
index ef22f304f9..c1ec1fbb80 100644
--- a/puppet/locale/fi_FI/fusiondirectory.po
+++ b/puppet/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po
index 2919cd6bdb..1aa4101148 100644
--- a/puppet/locale/fr/fusiondirectory.po
+++ b/puppet/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po
index 3bdf9bdc31..04dff7ce56 100644
--- a/puppet/locale/hu_HU/fusiondirectory.po
+++ b/puppet/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po
index 79f8a29865..7f5fbc0b64 100644
--- a/puppet/locale/id/fusiondirectory.po
+++ b/puppet/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index d3863e8aea..7fa16b4f29 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/puppet/locale/ja/fusiondirectory.po b/puppet/locale/ja/fusiondirectory.po
index 5979b31001..1a71de0ef8 100644
--- a/puppet/locale/ja/fusiondirectory.po
+++ b/puppet/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ko/fusiondirectory.po b/puppet/locale/ko/fusiondirectory.po
index 6eb987e76f..ed24b691e4 100644
--- a/puppet/locale/ko/fusiondirectory.po
+++ b/puppet/locale/ko/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po
index 84a52ff0dc..370bd5f134 100644
--- a/puppet/locale/lv/fusiondirectory.po
+++ b/puppet/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po
index b94d5c64c9..c38e6df9e1 100644
--- a/puppet/locale/nb/fusiondirectory.po
+++ b/puppet/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po
index 59694b6a9f..cc3e4f7cc2 100644
--- a/puppet/locale/nl/fusiondirectory.po
+++ b/puppet/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po
index 838a8b39ae..3037fbab0b 100644
--- a/puppet/locale/pl/fusiondirectory.po
+++ b/puppet/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po
index 7730b86aa9..42f1a2766e 100644
--- a/puppet/locale/pt/fusiondirectory.po
+++ b/puppet/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po
index 8cfd34c75c..536148f150 100644
--- a/puppet/locale/pt_BR/fusiondirectory.po
+++ b/puppet/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po
index f12919c5cf..04dfffa714 100644
--- a/puppet/locale/ru/fusiondirectory.po
+++ b/puppet/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po
index b6ad278c15..fae3acf3ed 100644
--- a/puppet/locale/ru@petr1708/fusiondirectory.po
+++ b/puppet/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po
index 7dd0e241b9..106c641476 100644
--- a/puppet/locale/sv/fusiondirectory.po
+++ b/puppet/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/puppet/locale/tr_TR/fusiondirectory.po b/puppet/locale/tr_TR/fusiondirectory.po
index 33cd025538..7b680d86cf 100644
--- a/puppet/locale/tr_TR/fusiondirectory.po
+++ b/puppet/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po
index 2d386f0bc0..8632a4da2a 100644
--- a/puppet/locale/ug/fusiondirectory.po
+++ b/puppet/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po
index 877680fd93..3e18d782a5 100644
--- a/puppet/locale/vi_VN/fusiondirectory.po
+++ b/puppet/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po
index d196e51163..e0afe93864 100644
--- a/puppet/locale/zh/fusiondirectory.po
+++ b/puppet/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/puppet/locale/zh_TW/fusiondirectory.po b/puppet/locale/zh_TW/fusiondirectory.po
index 775dcb9d8a..22203f0735 100644
--- a/puppet/locale/zh_TW/fusiondirectory.po
+++ b/puppet/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/af_ZA/fusiondirectory.po b/pureftpd/locale/af_ZA/fusiondirectory.po
index 7122a5de3b..121684691c 100644
--- a/pureftpd/locale/af_ZA/fusiondirectory.po
+++ b/pureftpd/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po
index 6a197aefc5..966fbd072d 100644
--- a/pureftpd/locale/ar/fusiondirectory.po
+++ b/pureftpd/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po
index 7d42d0823a..44f9a33b03 100644
--- a/pureftpd/locale/ca/fusiondirectory.po
+++ b/pureftpd/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po
index cdf2fb0edd..7d84f20628 100644
--- a/pureftpd/locale/cs_CZ/fusiondirectory.po
+++ b/pureftpd/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po
index d7cf90ee73..edd463c448 100644
--- a/pureftpd/locale/de/fusiondirectory.po
+++ b/pureftpd/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po
index a6d67200ea..12a756a4b8 100644
--- a/pureftpd/locale/el_GR/fusiondirectory.po
+++ b/pureftpd/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/pureftpd/locale/en/fusiondirectory.po b/pureftpd/locale/en/fusiondirectory.po
index 9eb94e652b..c8d33e1067 100644
--- a/pureftpd/locale/en/fusiondirectory.po
+++ b/pureftpd/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po
index e31f6c87e1..6dc6bc8a0b 100644
--- a/pureftpd/locale/es/fusiondirectory.po
+++ b/pureftpd/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po
index b7933f1298..b2dd93a840 100644
--- a/pureftpd/locale/es_CO/fusiondirectory.po
+++ b/pureftpd/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po
index a642a80aba..2284b8079e 100644
--- a/pureftpd/locale/es_VE/fusiondirectory.po
+++ b/pureftpd/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po
index 8a2596ef2b..1a5b8fcaad 100644
--- a/pureftpd/locale/fa_IR/fusiondirectory.po
+++ b/pureftpd/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po
index dabea78691..1ce50bb3ba 100644
--- a/pureftpd/locale/fi_FI/fusiondirectory.po
+++ b/pureftpd/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po
index cc3325dcc5..ecf4da76e2 100644
--- a/pureftpd/locale/fr/fusiondirectory.po
+++ b/pureftpd/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po
index a64eb41884..4f4df58a52 100644
--- a/pureftpd/locale/hu_HU/fusiondirectory.po
+++ b/pureftpd/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po
index 2abd96c9ab..0e1c2f1420 100644
--- a/pureftpd/locale/id/fusiondirectory.po
+++ b/pureftpd/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po
index aa8a14ea17..ee889e208f 100644
--- a/pureftpd/locale/it_IT/fusiondirectory.po
+++ b/pureftpd/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/pureftpd/locale/ja/fusiondirectory.po b/pureftpd/locale/ja/fusiondirectory.po
index 0d509062e8..43289fbcae 100644
--- a/pureftpd/locale/ja/fusiondirectory.po
+++ b/pureftpd/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ko/fusiondirectory.po b/pureftpd/locale/ko/fusiondirectory.po
index 8995c2df2c..f1a18bf790 100644
--- a/pureftpd/locale/ko/fusiondirectory.po
+++ b/pureftpd/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po
index 4bd09c3e64..d40ffff5de 100644
--- a/pureftpd/locale/lv/fusiondirectory.po
+++ b/pureftpd/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po
index 7c680cfa9b..fb218e0fe8 100644
--- a/pureftpd/locale/nb/fusiondirectory.po
+++ b/pureftpd/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po
index e64d85ba1a..f7e7879a93 100644
--- a/pureftpd/locale/nl/fusiondirectory.po
+++ b/pureftpd/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po
index ecbd5715a1..8dc556d323 100644
--- a/pureftpd/locale/pl/fusiondirectory.po
+++ b/pureftpd/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po
index a7255bd59d..e03f0c7188 100644
--- a/pureftpd/locale/pt/fusiondirectory.po
+++ b/pureftpd/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po
index f4336a67f2..225d34132f 100644
--- a/pureftpd/locale/pt_BR/fusiondirectory.po
+++ b/pureftpd/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po
index 3dca5d0e54..b790b34d63 100644
--- a/pureftpd/locale/ru/fusiondirectory.po
+++ b/pureftpd/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po
index ca96144f57..b587e71e75 100644
--- a/pureftpd/locale/ru@petr1708/fusiondirectory.po
+++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po
index 2f76fdd4ba..1c40c14e4d 100644
--- a/pureftpd/locale/sv/fusiondirectory.po
+++ b/pureftpd/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/pureftpd/locale/tr_TR/fusiondirectory.po b/pureftpd/locale/tr_TR/fusiondirectory.po
index 8507370540..9a95c4c796 100644
--- a/pureftpd/locale/tr_TR/fusiondirectory.po
+++ b/pureftpd/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po
index b97fb3077f..df3db10b47 100644
--- a/pureftpd/locale/ug/fusiondirectory.po
+++ b/pureftpd/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po
index 2ff5c961e7..5aa2021920 100644
--- a/pureftpd/locale/vi_VN/fusiondirectory.po
+++ b/pureftpd/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po
index a83bc268c7..f61be89b07 100644
--- a/pureftpd/locale/zh/fusiondirectory.po
+++ b/pureftpd/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/pureftpd/locale/zh_TW/fusiondirectory.po b/pureftpd/locale/zh_TW/fusiondirectory.po
index 4905338bc7..535ed199a3 100644
--- a/pureftpd/locale/zh_TW/fusiondirectory.po
+++ b/pureftpd/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/af_ZA/fusiondirectory.po b/quota/locale/af_ZA/fusiondirectory.po
index b6c1360b05..8feb650b06 100644
--- a/quota/locale/af_ZA/fusiondirectory.po
+++ b/quota/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po
index 753f7af73b..e8c512d428 100644
--- a/quota/locale/ar/fusiondirectory.po
+++ b/quota/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po
index 4e3545018e..3ff159b2a1 100644
--- a/quota/locale/ca/fusiondirectory.po
+++ b/quota/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po
index 69c101c51a..42298458ca 100644
--- a/quota/locale/cs_CZ/fusiondirectory.po
+++ b/quota/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po
index f3108381f1..57df4899cd 100644
--- a/quota/locale/de/fusiondirectory.po
+++ b/quota/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po
index 7448c66a63..1823b2e345 100644
--- a/quota/locale/el_GR/fusiondirectory.po
+++ b/quota/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/quota/locale/en/fusiondirectory.po b/quota/locale/en/fusiondirectory.po
index 43cf6a7e1c..df990f8e35 100644
--- a/quota/locale/en/fusiondirectory.po
+++ b/quota/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,71 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/quota/class_quotaAccount.inc:101
-msgid "Quota"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:102
-msgid "Plugin for quota support"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:120
-msgid "Quota information"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:125
-msgid "Quota information for this user"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:129
-#: admin/systems/services/quota/class_serviceQuota.inc:50
-msgid "Device"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:129
-msgid "Device this quota is for"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:133
-msgid "Block soft limit"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:133
-msgid "Soft limit for the block the user can use"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:142
-msgid "Block hard limit"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:142
-msgid "Hard limit for the block the user can use"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:151
-msgid "Inode soft limit"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:151
-msgid "Soft limit for the inodes the user can use"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:160
-msgid "Inode hard limit"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:160
-msgid "Hard limit for the inodes the user can use"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:169
-msgid "Server"
-msgstr ""
-
-#: personal/quota/class_quotaAccount.inc:169
-msgid "Server hosting the device this quota is for"
-msgstr ""
-
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
 msgid "Quota service"
@@ -99,6 +34,11 @@ msgstr ""
 msgid "Quotas for the shares this server hosts"
 msgstr ""
 
+#: admin/systems/services/quota/class_serviceQuota.inc:50
+#: personal/quota/class_quotaAccount.inc:129
+msgid "Device"
+msgstr ""
+
 #: admin/systems/services/quota/class_serviceQuota.inc:50
 msgid "Device concerned by this quota"
 msgstr ""
@@ -228,3 +168,63 @@ msgstr ""
 #, php-format
 msgid "(%s by %s)"
 msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:101
+msgid "Quota"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:102
+msgid "Plugin for quota support"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:120
+msgid "Quota information"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:125
+msgid "Quota information for this user"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:129
+msgid "Device this quota is for"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:133
+msgid "Block soft limit"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:133
+msgid "Soft limit for the block the user can use"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:142
+msgid "Block hard limit"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:142
+msgid "Hard limit for the block the user can use"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:151
+msgid "Inode soft limit"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:151
+msgid "Soft limit for the inodes the user can use"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:160
+msgid "Inode hard limit"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:160
+msgid "Hard limit for the inodes the user can use"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:169
+msgid "Server"
+msgstr ""
+
+#: personal/quota/class_quotaAccount.inc:169
+msgid "Server hosting the device this quota is for"
+msgstr ""
diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po
index 74b115ce08..2e820fa965 100644
--- a/quota/locale/es/fusiondirectory.po
+++ b/quota/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po
index efc8e8ad42..9902f8c54a 100644
--- a/quota/locale/es_CO/fusiondirectory.po
+++ b/quota/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po
index 7de5e615e4..033ed7a70a 100644
--- a/quota/locale/es_VE/fusiondirectory.po
+++ b/quota/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po
index d31b19ddc2..9712eecbcf 100644
--- a/quota/locale/fa_IR/fusiondirectory.po
+++ b/quota/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po
index 7a8d9b6c52..cb75ce699c 100644
--- a/quota/locale/fi_FI/fusiondirectory.po
+++ b/quota/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po
index d9392cc1f7..1a1d3c87ee 100644
--- a/quota/locale/fr/fusiondirectory.po
+++ b/quota/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po
index 0e97153153..1f8410e3ff 100644
--- a/quota/locale/hu_HU/fusiondirectory.po
+++ b/quota/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po
index 1c28cdac66..4109fee70e 100644
--- a/quota/locale/id/fusiondirectory.po
+++ b/quota/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po
index efadbb0a53..45159fdc36 100644
--- a/quota/locale/it_IT/fusiondirectory.po
+++ b/quota/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/quota/locale/ja/fusiondirectory.po b/quota/locale/ja/fusiondirectory.po
index f7db726e61..340de4c4b0 100644
--- a/quota/locale/ja/fusiondirectory.po
+++ b/quota/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ko/fusiondirectory.po b/quota/locale/ko/fusiondirectory.po
index a56db02bb2..0cbdd9fef4 100644
--- a/quota/locale/ko/fusiondirectory.po
+++ b/quota/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po
index 385917a853..6f8654e361 100644
--- a/quota/locale/lv/fusiondirectory.po
+++ b/quota/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po
index 6851557519..fcf408e316 100644
--- a/quota/locale/nb/fusiondirectory.po
+++ b/quota/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po
index 73794a6968..53079e4a41 100644
--- a/quota/locale/nl/fusiondirectory.po
+++ b/quota/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po
index 2c3a4bc743..7d98757ad4 100644
--- a/quota/locale/pl/fusiondirectory.po
+++ b/quota/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po
index af7f74ca85..b3ce750ca1 100644
--- a/quota/locale/pt/fusiondirectory.po
+++ b/quota/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po
index c11df63b60..cdaefa91d4 100644
--- a/quota/locale/pt_BR/fusiondirectory.po
+++ b/quota/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po
index 838eb250dd..98ff744c74 100644
--- a/quota/locale/ru/fusiondirectory.po
+++ b/quota/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po
index 5b9f1c8bdd..c6fa98bff2 100644
--- a/quota/locale/ru@petr1708/fusiondirectory.po
+++ b/quota/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po
index b01d0f0b0e..f7a592f888 100644
--- a/quota/locale/sv/fusiondirectory.po
+++ b/quota/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/quota/locale/tr_TR/fusiondirectory.po b/quota/locale/tr_TR/fusiondirectory.po
index d5f4ebc241..76178b918e 100644
--- a/quota/locale/tr_TR/fusiondirectory.po
+++ b/quota/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po
index 7a9e846a38..fa07a46494 100644
--- a/quota/locale/ug/fusiondirectory.po
+++ b/quota/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po
index ee7731f423..0bc7d34a10 100644
--- a/quota/locale/vi_VN/fusiondirectory.po
+++ b/quota/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po
index a5c42a14e3..fbeb57d1ca 100644
--- a/quota/locale/zh/fusiondirectory.po
+++ b/quota/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/quota/locale/zh_TW/fusiondirectory.po b/quota/locale/zh_TW/fusiondirectory.po
index 920211091d..be79ee8103 100644
--- a/quota/locale/zh_TW/fusiondirectory.po
+++ b/quota/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/af_ZA/fusiondirectory.po b/renater-partage/locale/af_ZA/fusiondirectory.po
index 6741efe6e2..89ec2ea4bc 100644
--- a/renater-partage/locale/af_ZA/fusiondirectory.po
+++ b/renater-partage/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ar/fusiondirectory.po b/renater-partage/locale/ar/fusiondirectory.po
index 73f576a1c9..6bb4cadf99 100644
--- a/renater-partage/locale/ar/fusiondirectory.po
+++ b/renater-partage/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/renater-partage/locale/ca/fusiondirectory.po b/renater-partage/locale/ca/fusiondirectory.po
index 8e491f0aac..591f3ec93a 100644
--- a/renater-partage/locale/ca/fusiondirectory.po
+++ b/renater-partage/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/renater-partage/locale/cs_CZ/fusiondirectory.po b/renater-partage/locale/cs_CZ/fusiondirectory.po
index 6bfe5d265a..7fd40af363 100644
--- a/renater-partage/locale/cs_CZ/fusiondirectory.po
+++ b/renater-partage/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/renater-partage/locale/de/fusiondirectory.po b/renater-partage/locale/de/fusiondirectory.po
index 9c01e851c0..ea7d6aed72 100644
--- a/renater-partage/locale/de/fusiondirectory.po
+++ b/renater-partage/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/renater-partage/locale/el_GR/fusiondirectory.po b/renater-partage/locale/el_GR/fusiondirectory.po
index 43b840f416..d3611cf2d1 100644
--- a/renater-partage/locale/el_GR/fusiondirectory.po
+++ b/renater-partage/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/renater-partage/locale/en/fusiondirectory.po b/renater-partage/locale/en/fusiondirectory.po
index c1175b8cba..87ff84a91a 100644
--- a/renater-partage/locale/en/fusiondirectory.po
+++ b/renater-partage/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,130 +17,164 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:61
-msgid "Server did not return auth token"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:28
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:29
+msgid "Renater Partage"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:114
-msgid "Partage API answer malformated"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:40
+msgid "Settings"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:118
-#, php-format
-msgid "Partage API Auth failed: %s"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
+msgid "URI"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:120
-msgid "Partage API Auth failed with no error message"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
+msgid "URI to contact the Renater Partage API"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:129
-#, php-format
-msgid "Unable to connect to %s: %s"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
+msgid "User Agent"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:131
-#, php-format
-msgid "Unable to connect to %s"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
+msgid "User Agent to use to contact the Renater Partage API"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:226
-msgid "Warning"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
+msgid "Mailbox deletion"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:226
-#, php-format
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
 msgid ""
-"Several addresses were given in gosaMailForwardingAddress but only one is "
-"supported by PARTAGE. %s will be sent to PARTAGE."
+"What to do with the PARTAGE account when mail tab is deactivated or user is "
+"deleted"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:458
-msgid "PARTAGE error"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
+msgid "Delete"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:459
-#, php-format
-msgid "Several users have uid \"%s\". Ignoring this member."
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
+msgid "Disable"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:498
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:511
-msgid "An account with the same email address already exists in Partage"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:62
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:88
+msgid "Domains"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:576
-msgid "Invalid value in fdRenaterPartageServerDeletionType"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:67
+msgid "Domains handled by this Renater Partage server"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:613
-msgid "Never"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
+msgid "Domain"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:620
-msgid "Last login"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
+msgid "Domain handled by this server"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:621
-msgid "Account status"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
+msgid "Key"
 msgstr ""
 
-#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:621
-msgid "Unknown"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
+msgid "Key for this domain"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
-#: admin/groups/renater-partage/class_partageGroup.inc:29
-msgid "Partage"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
+msgid "Classes of service"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:30
-msgid "Partage sympa options"
+#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
+msgid ""
+"Possible classes of service for this domain and their ids, separated by "
+"commas. Format is cos1Name|cos1Id,cos2Name|cos2Id."
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:40
-#: admin/groups/renater-partage/class_partageGroup.inc:41
-msgid "Information"
+#: admin/groups/renater-partage/class_partageGroup.inc:29
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
+msgid "Partage"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:43
-msgid "Server"
+#: admin/groups/renater-partage/class_partageGroup.inc:30
+msgid "Partage group options"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:43
-msgid "Email server"
+#: admin/groups/renater-partage/class_partageGroup.inc:42
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:40
+msgid "Information"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:45
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:48
-#: admin/groups/renater-partage/class_partageGroup.inc:44
 msgid "Display name"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:45
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:48
-#: admin/groups/renater-partage/class_partageGroup.inc:44
 msgid "Name to display for this group"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:49
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:52
-#: admin/groups/renater-partage/class_partageGroup.inc:48
 msgid "Hide from global catalog"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:49
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:52
-#: admin/groups/renater-partage/class_partageGroup.inc:48
 msgid "Whether this group should be hidden from the global catalog"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:54
+msgid "Type"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:54
+msgid "Type of PARTAGE group"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:57
+msgid "Distribution list"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:57
+msgid "Group"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:60
+msgid "Alert new members"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:60
+msgid "Send a message to alert new members, they have joined this group"
+msgstr ""
+
+#: admin/groups/renater-partage/class_partageGroup.inc:65
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:65
-#: admin/groups/renater-partage/class_partageGroup.inc:64
 msgid "Notes"
 msgstr ""
 
+#: admin/groups/renater-partage/class_partageGroup.inc:65
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:65
-#: admin/groups/renater-partage/class_partageGroup.inc:64
 msgid "Notes about this group"
 msgstr ""
 
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:30
+msgid "Partage sympa options"
+msgstr ""
+
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:43
+msgid "Server"
+msgstr ""
+
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:43
+msgid "Email server"
+msgstr ""
+
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:70
 msgid "Alternative addresses"
 msgstr ""
@@ -149,131 +183,104 @@ msgstr ""
 msgid "Alternative mail addresses for the list"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:158
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:173
 #, php-format
 msgid "Mail method cannot connect: %s"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:161
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:176
 #, php-format
 msgid "Cannot update mailbox: %s"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:182
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:186
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:197
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:201
 msgid "Mail error"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:182
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:197
 #, php-format
 msgid "Cannot remove mailbox, mail method cannot connect: %s"
 msgstr ""
 
-#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:186
+#: admin/sympa/renater-partage/class_sympaAliasPartage.inc:201
 #, php-format
 msgid "Cannot remove mailbox: %s"
 msgstr ""
 
-#: admin/groups/renater-partage/class_partageGroup.inc:30
-msgid "Partage group options"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:53
-msgid "Type"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:53
-msgid "Type of PARTAGE group"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:56
-msgid "Distribution list"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:56
-msgid "Group"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:59
-msgid "Alert new members"
-msgstr ""
-
-#: admin/groups/renater-partage/class_partageGroup.inc:59
-msgid "Send a message to alert new members, they have joined this group"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:64
+msgid "Server did not return auth token"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:28
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:29
-msgid "Renater Partage"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:129
+msgid "Partage API answer malformated"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:40
-msgid "Settings"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:133
+#, php-format
+msgid "Partage API Auth failed: %s"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
-msgid "URI"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:135
+msgid "Partage API Auth failed with no error message"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
-msgid "URI to contact the Renater Partage API"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:144
+#, php-format
+msgid "Unable to connect to %s: %s"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
-msgid "User Agent"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:146
+#, php-format
+msgid "Unable to connect to %s"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
-msgid "User Agent to use to contact the Renater Partage API"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:172
+#, php-format
+msgid "Email address \"%s\" does not use the correct partage domain \"%s\""
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
-msgid "Mailbox deletion"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:259
+msgid "Warning"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:259
+#, php-format
 msgid ""
-"What to do with the PARTAGE account when mail tab is deactivated or user is "
-"deleted"
-msgstr ""
-
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
-msgid "Delete"
-msgstr ""
-
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
-msgid "Disable"
+"Several addresses were given in gosaMailForwardingAddress but only one is "
+"supported by PARTAGE. %s will be sent to PARTAGE."
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:62
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:85
-msgid "Domains"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:491
+msgid "PARTAGE error"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:67
-msgid "Domains handled by this Renater Partage server"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:492
+#, php-format
+msgid "Several users have uid \"%s\". Ignoring this member."
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
-msgid "Domain"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:531
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:544
+msgid "An account with the same email address already exists in Partage"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
-msgid "Domain handled by this server"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:609
+msgid "Invalid value in fdRenaterPartageServerDeletionType"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
-msgid "Key"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:646
+msgid "Never"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
-msgid "Key for this domain"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:653
+msgid "Last login"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
-msgid "Class of service"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:654
+msgid "Account status"
 msgstr ""
 
-#: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
-msgid "Possible classes of service for this domain, separated by commas"
+#: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:654
+msgid "Unknown"
 msgstr ""
diff --git a/renater-partage/locale/es/fusiondirectory.po b/renater-partage/locale/es/fusiondirectory.po
index 41d139b479..acec791397 100644
--- a/renater-partage/locale/es/fusiondirectory.po
+++ b/renater-partage/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/renater-partage/locale/es_CO/fusiondirectory.po b/renater-partage/locale/es_CO/fusiondirectory.po
index ac0488c414..d074a21084 100644
--- a/renater-partage/locale/es_CO/fusiondirectory.po
+++ b/renater-partage/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/renater-partage/locale/es_VE/fusiondirectory.po b/renater-partage/locale/es_VE/fusiondirectory.po
index a8c91aa0b3..27f4c3f260 100644
--- a/renater-partage/locale/es_VE/fusiondirectory.po
+++ b/renater-partage/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/renater-partage/locale/fa_IR/fusiondirectory.po b/renater-partage/locale/fa_IR/fusiondirectory.po
index d024773d5f..70b7b30f04 100644
--- a/renater-partage/locale/fa_IR/fusiondirectory.po
+++ b/renater-partage/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/fi_FI/fusiondirectory.po b/renater-partage/locale/fi_FI/fusiondirectory.po
index 221ad261e2..e635cd842b 100644
--- a/renater-partage/locale/fi_FI/fusiondirectory.po
+++ b/renater-partage/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/renater-partage/locale/fr/fusiondirectory.po b/renater-partage/locale/fr/fusiondirectory.po
index b6419bf66d..836285dd1d 100644
--- a/renater-partage/locale/fr/fusiondirectory.po
+++ b/renater-partage/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/renater-partage/locale/hu_HU/fusiondirectory.po b/renater-partage/locale/hu_HU/fusiondirectory.po
index 4087bc438e..ca7ed06061 100644
--- a/renater-partage/locale/hu_HU/fusiondirectory.po
+++ b/renater-partage/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/id/fusiondirectory.po b/renater-partage/locale/id/fusiondirectory.po
index 34be9062df..fb2527691e 100644
--- a/renater-partage/locale/id/fusiondirectory.po
+++ b/renater-partage/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index d9939f77dd..6b0dc31812 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/renater-partage/locale/ja/fusiondirectory.po b/renater-partage/locale/ja/fusiondirectory.po
index 4feac6ca7d..939ff25bb9 100644
--- a/renater-partage/locale/ja/fusiondirectory.po
+++ b/renater-partage/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ko/fusiondirectory.po b/renater-partage/locale/ko/fusiondirectory.po
index 86ba4d3f91..388008c837 100644
--- a/renater-partage/locale/ko/fusiondirectory.po
+++ b/renater-partage/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/renater-partage/locale/lv/fusiondirectory.po b/renater-partage/locale/lv/fusiondirectory.po
index 686f011448..1a02ca7a3a 100644
--- a/renater-partage/locale/lv/fusiondirectory.po
+++ b/renater-partage/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/renater-partage/locale/nb/fusiondirectory.po b/renater-partage/locale/nb/fusiondirectory.po
index 62a54c81c1..fb0d33038b 100644
--- a/renater-partage/locale/nb/fusiondirectory.po
+++ b/renater-partage/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/renater-partage/locale/nl/fusiondirectory.po b/renater-partage/locale/nl/fusiondirectory.po
index 734b863514..3baf45dfd6 100644
--- a/renater-partage/locale/nl/fusiondirectory.po
+++ b/renater-partage/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/renater-partage/locale/pl/fusiondirectory.po b/renater-partage/locale/pl/fusiondirectory.po
index 002cdae002..e6268934dd 100644
--- a/renater-partage/locale/pl/fusiondirectory.po
+++ b/renater-partage/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/renater-partage/locale/pt/fusiondirectory.po b/renater-partage/locale/pt/fusiondirectory.po
index 4bf0a24376..6fc55daf8a 100644
--- a/renater-partage/locale/pt/fusiondirectory.po
+++ b/renater-partage/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/renater-partage/locale/pt_BR/fusiondirectory.po b/renater-partage/locale/pt_BR/fusiondirectory.po
index 5916d486e1..4455f80e53 100644
--- a/renater-partage/locale/pt_BR/fusiondirectory.po
+++ b/renater-partage/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/renater-partage/locale/ru/fusiondirectory.po b/renater-partage/locale/ru/fusiondirectory.po
index 6cd15806a5..062d5510b5 100644
--- a/renater-partage/locale/ru/fusiondirectory.po
+++ b/renater-partage/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/renater-partage/locale/ru@petr1708/fusiondirectory.po b/renater-partage/locale/ru@petr1708/fusiondirectory.po
index 25f57cbec8..dec47f884d 100644
--- a/renater-partage/locale/ru@petr1708/fusiondirectory.po
+++ b/renater-partage/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/sv/fusiondirectory.po b/renater-partage/locale/sv/fusiondirectory.po
index 10fbac56fb..b530ef01e7 100644
--- a/renater-partage/locale/sv/fusiondirectory.po
+++ b/renater-partage/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/renater-partage/locale/tr_TR/fusiondirectory.po b/renater-partage/locale/tr_TR/fusiondirectory.po
index 3033f225c9..ba8406eee7 100644
--- a/renater-partage/locale/tr_TR/fusiondirectory.po
+++ b/renater-partage/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ug/fusiondirectory.po b/renater-partage/locale/ug/fusiondirectory.po
index c200d7a7d5..66e9767d69 100644
--- a/renater-partage/locale/ug/fusiondirectory.po
+++ b/renater-partage/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/vi_VN/fusiondirectory.po b/renater-partage/locale/vi_VN/fusiondirectory.po
index 0376e592b8..343c8123b4 100644
--- a/renater-partage/locale/vi_VN/fusiondirectory.po
+++ b/renater-partage/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/renater-partage/locale/zh/fusiondirectory.po b/renater-partage/locale/zh/fusiondirectory.po
index 291a93ad41..c850ed0b55 100644
--- a/renater-partage/locale/zh/fusiondirectory.po
+++ b/renater-partage/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/renater-partage/locale/zh_TW/fusiondirectory.po b/renater-partage/locale/zh_TW/fusiondirectory.po
index 0bea5ccd5f..5c77b1690c 100644
--- a/renater-partage/locale/zh_TW/fusiondirectory.po
+++ b/renater-partage/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/af_ZA/fusiondirectory.po b/repository/locale/af_ZA/fusiondirectory.po
index a90f57e950..2a139d1fec 100644
--- a/repository/locale/af_ZA/fusiondirectory.po
+++ b/repository/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po
index 2d937d0374..7197638b46 100644
--- a/repository/locale/ar/fusiondirectory.po
+++ b/repository/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po
index 8418de1358..9151d2b3d8 100644
--- a/repository/locale/ca/fusiondirectory.po
+++ b/repository/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po
index a7ce5d2b82..cdbd547795 100644
--- a/repository/locale/cs_CZ/fusiondirectory.po
+++ b/repository/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po
index ab1576bb78..b666d5c512 100644
--- a/repository/locale/de/fusiondirectory.po
+++ b/repository/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po
index cd669e816d..f74a09e34d 100644
--- a/repository/locale/el_GR/fusiondirectory.po
+++ b/repository/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/repository/locale/en/fusiondirectory.po b/repository/locale/en/fusiondirectory.po
index 7ddacea0f3..6795f870f3 100644
--- a/repository/locale/en/fusiondirectory.po
+++ b/repository/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -46,29 +46,61 @@ msgstr ""
 msgid "Available repository types"
 msgstr ""
 
-#: admin/repository/class_buildRepository.inc:30
-#: admin/repository/class_buildRepository.inc:31
-#: admin/repository/class_buildRepository.inc:33
-#: admin/repository/class_buildRepository.inc:59
-msgid "Build repository"
+#: admin/repository/class_repositoryDistribution.inc:30
+#: admin/repository/class_repositoryDistribution.inc:31
+#: admin/repository/class_repositoryDistribution.inc:33
+#: admin/repository/class_repositoryDistribution.inc:56
+msgid "Repository distribution"
 msgstr ""
 
-#: admin/repository/class_buildRepository.inc:63
 #: admin/repository/class_repositoryDistribution.inc:60
+#: admin/repository/class_buildRepository.inc:63
 #: admin/repository/class_repositorySection.inc:57
 msgid "Name"
 msgstr ""
 
-#: admin/repository/class_buildRepository.inc:63
-msgid "Unique name for this repository"
+#: admin/repository/class_repositoryDistribution.inc:60
+msgid "Unique name for this distribution"
 msgstr ""
 
-#: admin/repository/class_buildRepository.inc:67
 #: admin/repository/class_repositoryDistribution.inc:64
+#: admin/repository/class_buildRepository.inc:67
 #: admin/repository/class_repositorySection.inc:61
 msgid "Description"
 msgstr ""
 
+#: admin/repository/class_repositoryDistribution.inc:64
+msgid "Description of this distribution"
+msgstr ""
+
+#: admin/repository/class_repositoryDistribution.inc:69
+msgid "Section"
+msgstr ""
+
+#: admin/repository/class_repositoryDistribution.inc:69
+msgid "The sections this distribution contains"
+msgstr ""
+
+#: admin/repository/class_repositoryDistribution.inc:76
+#: admin/repository/class_repositorySection.inc:66
+msgid "Based on"
+msgstr ""
+
+#: admin/repository/class_repositoryDistribution.inc:76
+msgid "The distributions this one is based on"
+msgstr ""
+
+#: admin/repository/class_buildRepository.inc:30
+#: admin/repository/class_buildRepository.inc:31
+#: admin/repository/class_buildRepository.inc:33
+#: admin/repository/class_buildRepository.inc:59
+msgid "Build repository"
+msgstr ""
+
+#: admin/repository/class_buildRepository.inc:63
+msgid "Unique name for this repository"
+msgstr ""
+
 #: admin/repository/class_buildRepository.inc:67
 msgid "Description of this repository"
 msgstr ""
@@ -125,43 +157,6 @@ msgstr ""
 msgid "Users of this repository"
 msgstr ""
 
-#: admin/repository/class_repositoryManagement.inc:28
-#: admin/repository/class_repositoryManagement.inc:29
-msgid "Repository management"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:30
-#: admin/repository/class_repositoryDistribution.inc:31
-#: admin/repository/class_repositoryDistribution.inc:33
-#: admin/repository/class_repositoryDistribution.inc:56
-msgid "Repository distribution"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:60
-msgid "Unique name for this distribution"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:64
-msgid "Description of this distribution"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:69
-msgid "Section"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:69
-msgid "The sections this distribution contains"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:76
-#: admin/repository/class_repositorySection.inc:66
-msgid "Based on"
-msgstr ""
-
-#: admin/repository/class_repositoryDistribution.inc:76
-msgid "The distributions this one is based on"
-msgstr ""
-
 #: admin/repository/class_repositorySection.inc:30
 #: admin/repository/class_repositorySection.inc:31
 #: admin/repository/class_repositorySection.inc:33
@@ -180,3 +175,8 @@ msgstr ""
 #: admin/repository/class_repositorySection.inc:66
 msgid "The sections this one is based on"
 msgstr ""
+
+#: admin/repository/class_repositoryManagement.inc:28
+#: admin/repository/class_repositoryManagement.inc:29
+msgid "Repository management"
+msgstr ""
diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po
index 148659d522..ca5b75337e 100644
--- a/repository/locale/es/fusiondirectory.po
+++ b/repository/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po
index ea2bf8c972..3ac976210d 100644
--- a/repository/locale/es_CO/fusiondirectory.po
+++ b/repository/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po
index 87aee326c0..ee7ea3760e 100644
--- a/repository/locale/es_VE/fusiondirectory.po
+++ b/repository/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po
index ab92aeb11c..baf3068477 100644
--- a/repository/locale/fa_IR/fusiondirectory.po
+++ b/repository/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po
index d14229fa83..14a2fcf056 100644
--- a/repository/locale/fi_FI/fusiondirectory.po
+++ b/repository/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po
index b2439c300c..19359f01a9 100644
--- a/repository/locale/fr/fusiondirectory.po
+++ b/repository/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po
index f547c19fe2..4ce7dd9078 100644
--- a/repository/locale/hu_HU/fusiondirectory.po
+++ b/repository/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po
index 222f2c546f..6aa3f5623e 100644
--- a/repository/locale/id/fusiondirectory.po
+++ b/repository/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po
index 74146e6f11..7159327aeb 100644
--- a/repository/locale/it_IT/fusiondirectory.po
+++ b/repository/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/repository/locale/ja/fusiondirectory.po b/repository/locale/ja/fusiondirectory.po
index e29fbd78f6..6aca57797f 100644
--- a/repository/locale/ja/fusiondirectory.po
+++ b/repository/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ko/fusiondirectory.po b/repository/locale/ko/fusiondirectory.po
index 1d5285d609..4445201e98 100644
--- a/repository/locale/ko/fusiondirectory.po
+++ b/repository/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,19 +24,19 @@ msgstr ""
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
 msgid "Repository management"
-msgstr ""
+msgstr "저장소 관"
 
 #: admin/repository/class_repositoryManagement.inc:34
 #: config/repository/class_repositoryConfig.inc:42
 msgid "Repository"
-msgstr ""
+msgstr "리포지토리"
 
 #: admin/repository/class_buildRepository.inc:30
 #: admin/repository/class_buildRepository.inc:31
 #: admin/repository/class_buildRepository.inc:33
 #: admin/repository/class_buildRepository.inc:59
 msgid "Build repository"
-msgstr ""
+msgstr "빌드 저장"
 
 #: admin/repository/class_buildRepository.inc:63
 #: admin/repository/class_repositoryDistribution.inc:60
@@ -46,7 +46,7 @@ msgstr "명칭"
 
 #: admin/repository/class_buildRepository.inc:63
 msgid "Unique name for this repository"
-msgstr ""
+msgstr "이 저장소의 고유 이름"
 
 #: admin/repository/class_buildRepository.inc:67
 #: admin/repository/class_repositoryDistribution.inc:64
@@ -56,23 +56,23 @@ msgstr "설명"
 
 #: admin/repository/class_buildRepository.inc:67
 msgid "Description of this repository"
-msgstr ""
+msgstr "이 저장소에 대한 설명"
 
 #: admin/repository/class_buildRepository.inc:72
 msgid "Distribution sections"
-msgstr ""
+msgstr "배포 섹션"
 
 #: admin/repository/class_buildRepository.inc:72
 msgid "The distribution sections this repository provides"
-msgstr ""
+msgstr "이 저장소가 제공하는 배포 섹션"
 
 #: admin/repository/class_buildRepository.inc:78
 msgid "Private"
-msgstr ""
+msgstr "프라이"
 
 #: admin/repository/class_buildRepository.inc:78
 msgid "Is this repository private or public?"
-msgstr ""
+msgstr "이 저장소는 개인 또는 공용입니까?"
 
 #: admin/repository/class_buildRepository.inc:82
 msgid "Type"
@@ -80,50 +80,50 @@ msgstr "타입"
 
 #: admin/repository/class_buildRepository.inc:82
 msgid "Repository type"
-msgstr ""
+msgstr "저장소 유형"
 
 #: admin/repository/class_buildRepository.inc:89
 msgid "Members"
-msgstr ""
+msgstr "멤"
 
 #: admin/repository/class_buildRepository.inc:92
 msgid "Admins"
-msgstr ""
+msgstr "관리자"
 
 #: admin/repository/class_buildRepository.inc:92
 msgid "Admins of this repository"
-msgstr ""
+msgstr "이 저장소의 관리자"
 
 #: admin/repository/class_buildRepository.inc:96
 msgid "Uploaders"
-msgstr ""
+msgstr "업로"
 
 #: admin/repository/class_buildRepository.inc:96
 msgid "Uploaders of this repository"
-msgstr ""
+msgstr "이 저장소의 업로더"
 
 #: admin/repository/class_buildRepository.inc:100
 msgid "Users"
-msgstr ""
+msgstr "사용자"
 
 #: admin/repository/class_buildRepository.inc:100
 msgid "Users of this repository"
-msgstr ""
+msgstr "이 저장소의 사용자"
 
 #: admin/repository/class_repositoryDistribution.inc:30
 #: admin/repository/class_repositoryDistribution.inc:31
 #: admin/repository/class_repositoryDistribution.inc:33
 #: admin/repository/class_repositoryDistribution.inc:56
 msgid "Repository distribution"
-msgstr ""
+msgstr "저장소 배포"
 
 #: admin/repository/class_repositoryDistribution.inc:60
 msgid "Unique name for this distribution"
-msgstr ""
+msgstr "이 배포판의 고유 이름"
 
 #: admin/repository/class_repositoryDistribution.inc:64
 msgid "Description of this distribution"
-msgstr ""
+msgstr "이 배포판에 대한 설명"
 
 #: admin/repository/class_repositoryDistribution.inc:69
 msgid "Section"
@@ -131,56 +131,56 @@ msgstr "섹션"
 
 #: admin/repository/class_repositoryDistribution.inc:69
 msgid "The sections this distribution contains"
-msgstr ""
+msgstr "이 배포에 포함된 섹션"
 
 #: admin/repository/class_repositoryDistribution.inc:76
 #: admin/repository/class_repositorySection.inc:66
 msgid "Based on"
-msgstr ""
+msgstr "기"
 
 #: admin/repository/class_repositoryDistribution.inc:76
 msgid "The distributions this one is based on"
-msgstr ""
+msgstr "기반이 되는 배포"
 
 #: admin/repository/class_repositorySection.inc:30
 #: admin/repository/class_repositorySection.inc:31
 #: admin/repository/class_repositorySection.inc:33
 #: admin/repository/class_repositorySection.inc:53
 msgid "Repository section"
-msgstr ""
+msgstr "저장소 섹션"
 
 #: admin/repository/class_repositorySection.inc:57
 msgid "Unique name for this section"
-msgstr ""
+msgstr "이 섹션의 고유 이름"
 
 #: admin/repository/class_repositorySection.inc:61
 msgid "Description of this section"
-msgstr ""
+msgstr "이 섹션에 대한 설명"
 
 #: admin/repository/class_repositorySection.inc:66
 msgid "The sections this one is based on"
-msgstr ""
+msgstr "기반이 되는 섹션"
 
 #: config/repository/class_repositoryConfig.inc:28
 msgid "Repository configuration"
-msgstr ""
+msgstr "저장소 구성"
 
 #: config/repository/class_repositoryConfig.inc:29
 msgid "FusionDirectory repository plugin configuration"
-msgstr ""
+msgstr "FusionDirectory 저장소 플러그인 구성"
 
 #: config/repository/class_repositoryConfig.inc:45
 msgid "Repository RDN"
-msgstr ""
+msgstr "저장소 RDN"
 
 #: config/repository/class_repositoryConfig.inc:45
 msgid "Branch in which repository objects will be stored"
-msgstr ""
+msgstr "저장소 개체가 저장될 브랜치"
 
 #: config/repository/class_repositoryConfig.inc:51
 msgid "Repository types"
-msgstr ""
+msgstr "저장소 유형"
 
 #: config/repository/class_repositoryConfig.inc:51
 msgid "Available repository types"
-msgstr ""
+msgstr "사용 가능한 저장소 유형"
diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po
index 6874505854..e60eddacf9 100644
--- a/repository/locale/lv/fusiondirectory.po
+++ b/repository/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po
index a3cf68fa25..068529f6aa 100644
--- a/repository/locale/nb/fusiondirectory.po
+++ b/repository/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po
index b311c24d40..ace6d528c6 100644
--- a/repository/locale/nl/fusiondirectory.po
+++ b/repository/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po
index b874cdbcf9..10e1a738d8 100644
--- a/repository/locale/pl/fusiondirectory.po
+++ b/repository/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po
index bc2dc35d52..454798dd38 100644
--- a/repository/locale/pt/fusiondirectory.po
+++ b/repository/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po
index fff781ea25..a653a88332 100644
--- a/repository/locale/pt_BR/fusiondirectory.po
+++ b/repository/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po
index 11eb565927..a5b1720e0f 100644
--- a/repository/locale/ru/fusiondirectory.po
+++ b/repository/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po
index ef86b61815..b7fc55fcf3 100644
--- a/repository/locale/ru@petr1708/fusiondirectory.po
+++ b/repository/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po
index f596bcf97e..23e1ec6312 100644
--- a/repository/locale/sv/fusiondirectory.po
+++ b/repository/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/repository/locale/tr_TR/fusiondirectory.po b/repository/locale/tr_TR/fusiondirectory.po
index b544072154..ddfb3ec018 100644
--- a/repository/locale/tr_TR/fusiondirectory.po
+++ b/repository/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po
index 58ade66491..0e32b27ace 100644
--- a/repository/locale/ug/fusiondirectory.po
+++ b/repository/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po
index d9080e27ac..64bda72dbf 100644
--- a/repository/locale/vi_VN/fusiondirectory.po
+++ b/repository/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po
index cf17c4f8ac..aa6d816e26 100644
--- a/repository/locale/zh/fusiondirectory.po
+++ b/repository/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/repository/locale/zh_TW/fusiondirectory.po b/repository/locale/zh_TW/fusiondirectory.po
index c7d4914d4a..0661148635 100644
--- a/repository/locale/zh_TW/fusiondirectory.po
+++ b/repository/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/af_ZA/fusiondirectory.po b/samba/locale/af_ZA/fusiondirectory.po
index 8a8de2cfe1..a22aeba287 100644
--- a/samba/locale/af_ZA/fusiondirectory.po
+++ b/samba/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po
index 51e0948e3e..495b3fb529 100644
--- a/samba/locale/ar/fusiondirectory.po
+++ b/samba/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po
index 443d16c961..efa5b23ec7 100644
--- a/samba/locale/ca/fusiondirectory.po
+++ b/samba/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po
index 4f8cc4b226..2b5f26d954 100644
--- a/samba/locale/cs_CZ/fusiondirectory.po
+++ b/samba/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po
index b7b45ea654..6cc4ed6448 100644
--- a/samba/locale/de/fusiondirectory.po
+++ b/samba/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po
index dc1623457c..c51ef0672c 100644
--- a/samba/locale/el_GR/fusiondirectory.po
+++ b/samba/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/samba/locale/en/fusiondirectory.po b/samba/locale/en/fusiondirectory.po
index aa5aca4677..2a48610f43 100644
--- a/samba/locale/en/fusiondirectory.po
+++ b/samba/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,596 +17,596 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: include/class_smbHash.inc:356
-msgid ""
-"Your PHP install does not have the mhash() nor the hash function. Cannot do "
-"MD4 hashes."
-msgstr ""
-
-#: personal/samba/class_sambaAccount.inc:31
-msgid "Samba Munged Dial"
-msgstr ""
-
-#: personal/samba/class_sambaAccount.inc:158
 #: config/samba/class_sambaPluginConfig.inc:28
-#: admin/groups/samba/class_sambaGroup.inc:29
 #: admin/systems/samba/class_sambaSystemTab.inc:30
+#: admin/groups/samba/class_sambaGroup.inc:29
+#: personal/samba/class_sambaAccount.inc:158
 msgid "Samba"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:159
+#: config/samba/class_sambaPluginConfig.inc:29
+msgid "Samba plugin configuration"
+msgstr ""
+
 #: config/samba/class_sambaPluginConfig.inc:41
+#: personal/samba/class_sambaAccount.inc:159
 msgid "Samba settings"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:183
-msgid "Samba profile"
+#: config/samba/class_sambaPluginConfig.inc:44
+msgid "Samba ID mapping"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:189
-#: personal/samba/class_sambaAccount.inc:222
-msgid "Home directory drive"
+#: config/samba/class_sambaPluginConfig.inc:45
+msgid ""
+"Maintain sambaIdmapEntry objects. Depending on your setup this can "
+"drastically improve the windows login performance."
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:189
-#: personal/samba/class_sambaAccount.inc:222
-msgid "Letter for the home drive"
+#: config/samba/class_sambaPluginConfig.inc:49
+msgid "Samba SID"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:194
-#: personal/samba/class_sambaAccount.inc:227
-msgid "Home directory path"
+#: config/samba/class_sambaPluginConfig.inc:50
+msgid ""
+"A samba SID if not available inside of the LDAP though samba schema. You can "
+"retrieve the current sid by net getlocalsid."
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:194
-#: personal/samba/class_sambaAccount.inc:227
-msgid "UNC path for the home drive"
+#: config/samba/class_sambaPluginConfig.inc:55
+msgid "Samba rid base"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:199
-#: admin/groups/samba/class_sambaGroup.inc:42
-#: admin/groups/samba/class_sambaGroup.inc:45
-#: admin/systems/samba/class_sambaSystemTab.inc:53
-msgid "Domain"
+#: config/samba/class_sambaPluginConfig.inc:56
+msgid ""
+"The base id to add to ordinary sid calculations - if not available inside of "
+"the LDAP though samba schema."
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:199
-#: admin/systems/samba/class_sambaSystemTab.inc:53
-msgid "Samba domain name"
+#: config/samba/class_sambaPluginConfig.inc:61
+msgid "Expiration date synchronisaton"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:203
-msgid "Script path"
+#: config/samba/class_sambaPluginConfig.inc:61
+msgid "Synchronisaton the expiration date with the POSIX one?"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:203
-msgid "Login script path"
+#: config/samba/class_sambaPluginConfig.inc:67
+msgid "Generate sambaLMPassword"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:207
-#: personal/samba/class_sambaAccount.inc:232
-msgid "Profile path"
+#: config/samba/class_sambaPluginConfig.inc:67
+msgid "Needed to be compliant with Windows <= 98 or Samba < 3.2"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:207
-#: personal/samba/class_sambaAccount.inc:232
-msgid "UNC profile path"
+#: config/samba/class_sambaPluginConfig.inc:71
+msgid "Activate primary group warning"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:214
-msgid "Terminal server"
+#: config/samba/class_sambaPluginConfig.inc:71
+msgid ""
+"Issue a warning if POSIX primary group cannot be converted to Samba primary "
+"group when activating the Samba tab of a user"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:218
-msgid "Allow login on terminal server"
+#: include/class_smbHash.inc:369
+msgid ""
+"Your PHP install does not have the mhash() nor the hash function. Cannot do "
+"MD4 hashes."
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:237
-msgid "Inherit client config"
+#: admin/systems/samba/class_sambaSystemTab.inc:31
+msgid "Windows workstation information"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:237
-msgid "Inherit client configuration"
+#: admin/systems/samba/class_sambaSystemTab.inc:44
+#: admin/samba/class_sambaDomain.inc:51
+msgid "Properties"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:241
-msgid "Initial progam"
+#: admin/systems/samba/class_sambaSystemTab.inc:53
+#: admin/groups/samba/class_sambaGroup.inc:43
+#: admin/groups/samba/class_sambaGroup.inc:46
+#: personal/samba/class_sambaAccount.inc:199
+msgid "Domain"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:241
-msgid "Program to start after connecting"
+#: admin/systems/samba/class_sambaSystemTab.inc:53
+#: personal/samba/class_sambaAccount.inc:199
+msgid "Samba domain name"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:245
-msgid "Working directory"
+#: admin/systems/samba/class_argonautEventSambaShares.inc:27
+msgid "Update Samba Shares"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:245
-msgid "Basic working directory"
+#: admin/groups/samba/class_sambaGroup.inc:30
+msgid "Samba group settings"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:249
-msgid "Connection timeout"
+#: admin/groups/samba/class_sambaGroup.inc:46
+msgid "Samba domain"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:249
-msgid "Timeout when connecting to terminal server"
+#: admin/groups/samba/class_sambaGroup.inc:50
+msgid "Samba information"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:254
-msgid "Disconnection timeout"
+#: admin/groups/samba/class_sambaGroup.inc:57
+msgid "Group type"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:254
-msgid "Timeout before disconnecting from terminal server"
+#: admin/groups/samba/class_sambaGroup.inc:57
+msgid "Samba group type"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:259
-msgid "Idle timeout"
+#: admin/groups/samba/class_sambaGroup.inc:61
+#: admin/groups/samba/class_sambaGroup.inc:121
+msgid "Samba group"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:259
-msgid "Idle timeout before disconnecting from terminal server"
+#: admin/groups/samba/class_sambaGroup.inc:61
+#: admin/groups/samba/class_sambaGroup.inc:121
+msgid "Domain admins"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:264
-msgid "Connect client drives at logon"
+#: admin/groups/samba/class_sambaGroup.inc:61
+#: admin/groups/samba/class_sambaGroup.inc:121
+msgid "Domain users"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:264
-msgid "Drive to connect after login"
+#: admin/groups/samba/class_sambaGroup.inc:61
+#: admin/groups/samba/class_sambaGroup.inc:121
+msgid "Domain guests"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:268
-msgid "Connect client printers at logon"
+#: admin/groups/samba/class_sambaGroup.inc:107
+msgid "Configuration error"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:268
-msgid "Printers to connect after login"
+#: admin/groups/samba/class_sambaGroup.inc:107
+msgid "Cannot find group SID in your configuration!"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:272
-msgid "Default to main client printer"
+#: admin/groups/samba/class_sambaGroup.inc:121
+#, php-format
+msgid "Special group (%d)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:272
-msgid "Default printer for this client"
+#: admin/groups/samba/class_sambaGroup.inc:137
+#: personal/samba/class_sambaAccount.inc:516
+#: personal/samba/class_sambaAccount.inc:542
+#: personal/samba/class_sambaAccount.inc:563
+msgid "Warning"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:276
-msgid "Shadowing"
+#: admin/groups/samba/class_sambaGroup.inc:137
+#: personal/samba/class_sambaAccount.inc:516
+msgid "Undefined Samba SID detected. Please fix this problem manually!"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:279
-msgid "disabled"
+#: admin/samba/class_sambaDomain.inc:30 admin/samba/class_sambaDomain.inc:31
+#: admin/samba/class_sambaDomain.inc:34
+msgid "Samba Domain"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:279
-msgid "input on, notify on"
+#: admin/samba/class_sambaDomain.inc:35
+msgid "Samba domain settings"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:279
-msgid "input on, notify off"
+#: admin/samba/class_sambaDomain.inc:54
+msgid "Domain name"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:280
-msgid "input off, notify on"
+#: admin/samba/class_sambaDomain.inc:54
+msgid "Name of this domain"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:280
-msgid "input off, nofify off"
+#: admin/samba/class_sambaDomain.inc:58
+msgid "SID"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:283
-msgid "On broken or timed out"
+#: admin/samba/class_sambaDomain.inc:58
+msgid "SID of this domain"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:283
-msgid "What happen if disconnected or timeout"
+#: admin/samba/class_sambaDomain.inc:62
+msgid "Rid base"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:286
-msgid "disconnect"
+#: admin/samba/class_sambaDomain.inc:62
+msgid "Algorithmic rid base"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:286
-msgid "reset"
+#: admin/samba/class_sambaDomain.inc:66
+msgid "Minimum password age"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:289
-msgid "Reconnect if disconnected"
+#: admin/samba/class_sambaDomain.inc:67
+msgid ""
+"Minimum password age, in seconds (default: 0 => allow immediate password "
+"change)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:292
-msgid "from any client"
+#: admin/samba/class_sambaDomain.inc:72
+msgid "Maximum password age"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:292
-msgid "from previous client only"
+#: admin/samba/class_sambaDomain.inc:73
+msgid ""
+"Maximum password age, in seconds (default: -1 => never expire passwords)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:304
-msgid "Access options"
+#: admin/samba/class_sambaDomain.inc:78
+msgid "Next RID"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:308
-msgid "Enforce password change"
+#: admin/samba/class_sambaDomain.inc:79
+msgid "Next NT rid to give out for anything"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:308
-msgid "Force the user to change his password"
+#: admin/samba/class_sambaDomain.inc:83
+msgid "Next group RID"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:313
-msgid "The password never expire"
+#: admin/samba/class_sambaDomain.inc:84
+msgid "Next NT rid to give out for groups"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:313
-msgid "The password will never expire"
+#: admin/samba/class_sambaDomain.inc:88
+msgid "Next user RID"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:318
-msgid "Login from windows client requires no password"
+#: admin/samba/class_sambaDomain.inc:89
+msgid "Next NT rid to give our for users"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:318
-msgid "Login from a client without a password"
+#: admin/samba/class_sambaDomain.inc:93
+msgid "Minimum password length"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:323
-msgid "Lock samba account"
+#: admin/samba/class_sambaDomain.inc:94
+msgid "Minimal password length (default: 5)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:323
-msgid "Lock the account"
+#: admin/samba/class_sambaDomain.inc:98
+msgid "Password history length"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:328
-msgid "Cannot change password"
+#: admin/samba/class_sambaDomain.inc:99
+msgid "Length of Password History Entries (default: 0 => off)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:328
-msgid "Not allowed to change password"
+#: admin/samba/class_sambaDomain.inc:103
+msgid "Logon to change password"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:332
-msgid "Account expiration"
+#: admin/samba/class_sambaDomain.inc:104
+msgid "Force Users to logon for password change (default: 0 => off, 2 => on)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:332
-msgid "When does the account expire"
+#: admin/samba/class_sambaDomain.inc:108
+msgid "Lockout duration"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:340
-msgid "Samba logon times"
+#: admin/samba/class_sambaDomain.inc:109
+msgid "Lockout duration in minutes (default: 30, -1 => forever)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:340
-msgid "What is the allowed time to connect"
+#: admin/samba/class_sambaDomain.inc:113
+msgid "Lockout observation window"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:341
-msgid "Edit settings"
+#: admin/samba/class_sambaDomain.inc:114
+msgid "Reset time after lockout in minutes (default: 30)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:357
-msgid "System trust"
+#: admin/samba/class_sambaDomain.inc:118
+msgid "Lockout threshold"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:363
-msgid "Allow connection from these workstations only"
+#: admin/samba/class_sambaDomain.inc:119
+msgid "Lockout users after bad logon attempts (default: 0 => off)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:363
-msgid "Only allow this user to connect to this list of hosts"
+#: admin/samba/class_sambaDomain.inc:123
+msgid "Force logoff"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:479
-#: personal/samba/class_sambaAccount.inc:486
-#, php-format
-msgid ""
-"Field \"%s\" is required when \"%s\" is filled! Fill both field or empty "
-"them."
+#: admin/samba/class_sambaDomain.inc:124
+msgid "Disconnect Users outside logon hours (default: -1 => off, 0 => on)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:494
-msgid "The windows user manager allows eight clients at maximum!"
+#: admin/samba/class_sambaDomain.inc:128
+msgid "Refuse machine password change"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:511
-#: personal/samba/class_sambaAccount.inc:537
-#: personal/samba/class_sambaAccount.inc:558
-#: admin/groups/samba/class_sambaGroup.inc:133
-msgid "Warning"
+#: admin/samba/class_sambaDomain.inc:129
+msgid "Allow Machine Password changes (default: 0 => off)"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:511
-#: admin/groups/samba/class_sambaGroup.inc:133
-msgid "Undefined Samba SID detected. Please fix this problem manually!"
+#: admin/samba/class_sambaDomainManagement.inc:34
+msgid "Samba domains"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:538
-msgid ""
-"Cannot convert primary group to samba group: group cannot be identified!"
+#: admin/samba/class_sambaDomainManagement.inc:35
+msgid "Samba domain management"
 msgstr ""
 
-#: personal/samba/class_sambaAccount.inc:559
-msgid ""
-"Cannot convert primary group to samba group: group samba tab is disabled!"
+#: personal/samba/class_sambaAccount.inc:31
+msgid "Samba Munged Dial"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:29
-msgid "Samba plugin configuration"
+#: personal/samba/class_sambaAccount.inc:183
+msgid "Samba profile"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:44
-msgid "Samba ID mapping"
+#: personal/samba/class_sambaAccount.inc:189
+#: personal/samba/class_sambaAccount.inc:222
+msgid "Home directory drive"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:45
-msgid ""
-"Maintain sambaIdmapEntry objects. Depending on your setup this can "
-"drastically improve the windows login performance."
+#: personal/samba/class_sambaAccount.inc:189
+#: personal/samba/class_sambaAccount.inc:222
+msgid "Letter for the home drive"
+msgstr ""
+
+#: personal/samba/class_sambaAccount.inc:194
+#: personal/samba/class_sambaAccount.inc:227
+msgid "Home directory path"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:49
-msgid "Samba SID"
+#: personal/samba/class_sambaAccount.inc:194
+#: personal/samba/class_sambaAccount.inc:227
+msgid "UNC path for the home drive"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:50
-msgid ""
-"A samba SID if not available inside of the LDAP though samba schema. You can "
-"retrieve the current sid by net getlocalsid."
+#: personal/samba/class_sambaAccount.inc:203
+msgid "Script path"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:55
-msgid "Samba rid base"
+#: personal/samba/class_sambaAccount.inc:203
+msgid "Login script path"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:56
-msgid ""
-"The base id to add to ordinary sid calculations - if not available inside of "
-"the LDAP though samba schema."
+#: personal/samba/class_sambaAccount.inc:207
+#: personal/samba/class_sambaAccount.inc:232
+msgid "Profile path"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:61
-msgid "Expiration date synchronisaton"
+#: personal/samba/class_sambaAccount.inc:207
+#: personal/samba/class_sambaAccount.inc:232
+msgid "UNC profile path"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:61
-msgid "Synchronisaton the expiration date with the POSIX one?"
+#: personal/samba/class_sambaAccount.inc:214
+msgid "Terminal server"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:67
-msgid "Generate sambaLMPassword"
+#: personal/samba/class_sambaAccount.inc:218
+msgid "Allow login on terminal server"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:67
-msgid "Needed to be compliant with Windows <= 98 or Samba < 3.2"
+#: personal/samba/class_sambaAccount.inc:237
+msgid "Inherit client config"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:71
-msgid "Activate primary group warning"
+#: personal/samba/class_sambaAccount.inc:237
+msgid "Inherit client configuration"
 msgstr ""
 
-#: config/samba/class_sambaPluginConfig.inc:71
-msgid ""
-"Issue a warning if POSIX primary group cannot be converted to Samba primary "
-"group when activating the Samba tab of a user"
+#: personal/samba/class_sambaAccount.inc:241
+msgid "Initial progam"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:30
-msgid "Samba group settings"
+#: personal/samba/class_sambaAccount.inc:241
+msgid "Program to start after connecting"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:45
-msgid "Samba domain"
+#: personal/samba/class_sambaAccount.inc:245
+msgid "Working directory"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:49
-msgid "Samba information"
+#: personal/samba/class_sambaAccount.inc:245
+msgid "Basic working directory"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:56
-msgid "Group type"
+#: personal/samba/class_sambaAccount.inc:249
+msgid "Connection timeout"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:56
-msgid "Samba group type"
+#: personal/samba/class_sambaAccount.inc:249
+msgid "Timeout when connecting to terminal server"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:60
-#: admin/groups/samba/class_sambaGroup.inc:120
-msgid "Samba group"
+#: personal/samba/class_sambaAccount.inc:254
+msgid "Disconnection timeout"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:60
-#: admin/groups/samba/class_sambaGroup.inc:120
-msgid "Domain admins"
+#: personal/samba/class_sambaAccount.inc:254
+msgid "Timeout before disconnecting from terminal server"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:60
-#: admin/groups/samba/class_sambaGroup.inc:120
-msgid "Domain users"
+#: personal/samba/class_sambaAccount.inc:259
+msgid "Idle timeout"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:60
-#: admin/groups/samba/class_sambaGroup.inc:120
-msgid "Domain guests"
+#: personal/samba/class_sambaAccount.inc:259
+msgid "Idle timeout before disconnecting from terminal server"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:106
-msgid "Configuration error"
+#: personal/samba/class_sambaAccount.inc:264
+msgid "Connect client drives at logon"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:106
-msgid "Cannot find group SID in your configuration!"
+#: personal/samba/class_sambaAccount.inc:264
+msgid "Drive to connect after login"
 msgstr ""
 
-#: admin/groups/samba/class_sambaGroup.inc:120
-#, php-format
-msgid "Special group (%d)"
+#: personal/samba/class_sambaAccount.inc:268
+msgid "Connect client printers at logon"
 msgstr ""
 
-#: admin/samba/class_sambaDomainManagement.inc:34
-msgid "Samba domains"
+#: personal/samba/class_sambaAccount.inc:268
+msgid "Printers to connect after login"
 msgstr ""
 
-#: admin/samba/class_sambaDomainManagement.inc:35
-msgid "Samba domain management"
+#: personal/samba/class_sambaAccount.inc:272
+msgid "Default to main client printer"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:30 admin/samba/class_sambaDomain.inc:31
-#: admin/samba/class_sambaDomain.inc:34
-msgid "Samba Domain"
+#: personal/samba/class_sambaAccount.inc:272
+msgid "Default printer for this client"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:35
-msgid "Samba domain settings"
+#: personal/samba/class_sambaAccount.inc:276
+msgid "Shadowing"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:51
-#: admin/systems/samba/class_sambaSystemTab.inc:44
-msgid "Properties"
+#: personal/samba/class_sambaAccount.inc:279
+msgid "disabled"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:54
-msgid "Domain name"
+#: personal/samba/class_sambaAccount.inc:279
+msgid "input on, notify on"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:54
-msgid "Name of this domain"
+#: personal/samba/class_sambaAccount.inc:279
+msgid "input on, notify off"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:58
-msgid "SID"
+#: personal/samba/class_sambaAccount.inc:280
+msgid "input off, notify on"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:58
-msgid "SID of this domain"
+#: personal/samba/class_sambaAccount.inc:280
+msgid "input off, nofify off"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:62
-msgid "Rid base"
+#: personal/samba/class_sambaAccount.inc:283
+msgid "On broken or timed out"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:62
-msgid "Algorithmic rid base"
+#: personal/samba/class_sambaAccount.inc:283
+msgid "What happen if disconnected or timeout"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:66
-msgid "Minimum password age"
+#: personal/samba/class_sambaAccount.inc:286
+msgid "disconnect"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:67
-msgid ""
-"Minimum password age, in seconds (default: 0 => allow immediate password "
-"change)"
+#: personal/samba/class_sambaAccount.inc:286
+msgid "reset"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:72
-msgid "Maximum password age"
+#: personal/samba/class_sambaAccount.inc:289
+msgid "Reconnect if disconnected"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:73
-msgid ""
-"Maximum password age, in seconds (default: -1 => never expire passwords)"
+#: personal/samba/class_sambaAccount.inc:292
+msgid "from any client"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:78
-msgid "Next RID"
+#: personal/samba/class_sambaAccount.inc:292
+msgid "from previous client only"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:79
-msgid "Next NT rid to give out for anything"
+#: personal/samba/class_sambaAccount.inc:304
+msgid "Access options"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:83
-msgid "Next group RID"
+#: personal/samba/class_sambaAccount.inc:308
+msgid "Enforce password change"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:84
-msgid "Next NT rid to give out for groups"
+#: personal/samba/class_sambaAccount.inc:308
+msgid "Force the user to change his password"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:88
-msgid "Next user RID"
+#: personal/samba/class_sambaAccount.inc:313
+msgid "The password never expire"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:89
-msgid "Next NT rid to give our for users"
+#: personal/samba/class_sambaAccount.inc:313
+msgid "The password will never expire"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:93
-msgid "Minimum password length"
+#: personal/samba/class_sambaAccount.inc:318
+msgid "Login from windows client requires no password"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:94
-msgid "Minimal password length (default: 5)"
+#: personal/samba/class_sambaAccount.inc:318
+msgid "Login from a client without a password"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:98
-msgid "Password history length"
+#: personal/samba/class_sambaAccount.inc:323
+msgid "Lock samba account"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:99
-msgid "Length of Password History Entries (default: 0 => off)"
+#: personal/samba/class_sambaAccount.inc:323
+msgid "Lock the account"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:103
-msgid "Logon to change password"
+#: personal/samba/class_sambaAccount.inc:328
+msgid "Cannot change password"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:104
-msgid "Force Users to logon for password change (default: 0 => off, 2 => on)"
+#: personal/samba/class_sambaAccount.inc:328
+msgid "Not allowed to change password"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:108
-msgid "Lockout duration"
+#: personal/samba/class_sambaAccount.inc:332
+msgid "Account expiration"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:109
-msgid "Lockout duration in minutes (default: 30, -1 => forever)"
+#: personal/samba/class_sambaAccount.inc:332
+msgid "When does the account expire"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:113
-msgid "Lockout observation window"
+#: personal/samba/class_sambaAccount.inc:340
+msgid "Samba logon times"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:114
-msgid "Reset time after lockout in minutes (default: 30)"
+#: personal/samba/class_sambaAccount.inc:340
+msgid "What is the allowed time to connect"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:118
-msgid "Lockout threshold"
+#: personal/samba/class_sambaAccount.inc:341
+msgid "Edit settings"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:119
-msgid "Lockout users after bad logon attempts (default: 0 => off)"
+#: personal/samba/class_sambaAccount.inc:357
+msgid "System trust"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:123
-msgid "Force logoff"
+#: personal/samba/class_sambaAccount.inc:363
+msgid "Allow connection from these workstations only"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:124
-msgid "Disconnect Users outside logon hours (default: -1 => off, 0 => on)"
+#: personal/samba/class_sambaAccount.inc:363
+msgid "Only allow this user to connect to this list of hosts"
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:128
-msgid "Refuse machine password change"
+#: personal/samba/class_sambaAccount.inc:479
+#: personal/samba/class_sambaAccount.inc:486
+#, php-format
+msgid ""
+"Field \"%s\" is required when \"%s\" is filled! Fill both field or empty "
+"them."
 msgstr ""
 
-#: admin/samba/class_sambaDomain.inc:129
-msgid "Allow Machine Password changes (default: 0 => off)"
+#: personal/samba/class_sambaAccount.inc:494
+msgid "The windows user manager allows eight clients at maximum!"
 msgstr ""
 
-#: admin/systems/samba/class_sambaSystemTab.inc:31
-msgid "Windows workstation information"
+#: personal/samba/class_sambaAccount.inc:543
+msgid ""
+"Cannot convert primary group to samba group: group cannot be identified!"
 msgstr ""
 
-#: admin/systems/samba/class_argonautEventSambaShares.inc:27
-msgid "Update Samba Shares"
+#: personal/samba/class_sambaAccount.inc:564
+msgid ""
+"Cannot convert primary group to samba group: group samba tab is disabled!"
 msgstr ""
 
 #: personal/samba/sambaLogonHours.tpl.c:2
diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po
index efa39bb298..538c1cd4e9 100644
--- a/samba/locale/es/fusiondirectory.po
+++ b/samba/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po
index dd3ff4d40d..535907ba72 100644
--- a/samba/locale/es_CO/fusiondirectory.po
+++ b/samba/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po
index 5ad022ca6d..8ed9a9b2d0 100644
--- a/samba/locale/es_VE/fusiondirectory.po
+++ b/samba/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po
index ae78b6f54a..bb5005a23b 100644
--- a/samba/locale/fa_IR/fusiondirectory.po
+++ b/samba/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po
index 3270385b9d..3744927d46 100644
--- a/samba/locale/fi_FI/fusiondirectory.po
+++ b/samba/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po
index b52401d980..9676bec77c 100644
--- a/samba/locale/fr/fusiondirectory.po
+++ b/samba/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po
index f0d0f91ac3..384f63f0ec 100644
--- a/samba/locale/hu_HU/fusiondirectory.po
+++ b/samba/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po
index d991d50150..f8b6a9af35 100644
--- a/samba/locale/id/fusiondirectory.po
+++ b/samba/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po
index 52ee7826de..22395a34e5 100644
--- a/samba/locale/it_IT/fusiondirectory.po
+++ b/samba/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/samba/locale/ja/fusiondirectory.po b/samba/locale/ja/fusiondirectory.po
index c3fd0a75eb..dcf84cf616 100644
--- a/samba/locale/ja/fusiondirectory.po
+++ b/samba/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ko/fusiondirectory.po b/samba/locale/ko/fusiondirectory.po
index 20093b7c09..46ade421e3 100644
--- a/samba/locale/ko/fusiondirectory.po
+++ b/samba/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,24 +25,24 @@ msgstr ""
 msgid ""
 "Your PHP install does not have the mhash() nor the hash function. Cannot do "
 "MD4 hashes."
-msgstr ""
+msgstr "PHP 설치에는 mhash () 또는 해시 함수가 없습니다. MD4 해시를 수행 할 수 없습니다."
 
 #: admin/samba/class_sambaDomainManagement.inc:34
 msgid "Samba domains"
-msgstr ""
+msgstr "삼바 도메인"
 
 #: admin/samba/class_sambaDomainManagement.inc:35
 msgid "Samba domain management"
-msgstr ""
+msgstr "삼바 도메인 관리"
 
 #: admin/samba/class_sambaDomain.inc:30 admin/samba/class_sambaDomain.inc:31
 #: admin/samba/class_sambaDomain.inc:34
 msgid "Samba Domain"
-msgstr ""
+msgstr "삼바 도메인"
 
 #: admin/samba/class_sambaDomain.inc:35
 msgid "Samba domain settings"
-msgstr ""
+msgstr "삼바 도메인 설"
 
 #: admin/samba/class_sambaDomain.inc:51
 #: admin/systems/samba/class_sambaSystemTab.inc:44
@@ -51,50 +51,50 @@ msgstr "설정"
 
 #: admin/samba/class_sambaDomain.inc:54
 msgid "Domain name"
-msgstr ""
+msgstr "도메인 이름"
 
 #: admin/samba/class_sambaDomain.inc:54
 msgid "Name of this domain"
-msgstr ""
+msgstr "이 도메인의 이름"
 
 #: admin/samba/class_sambaDomain.inc:58
 msgid "SID"
-msgstr ""
+msgstr "SID"
 
 #: admin/samba/class_sambaDomain.inc:58
 msgid "SID of this domain"
-msgstr ""
+msgstr "이 도메인의 SID"
 
 #: admin/samba/class_sambaDomain.inc:62
 msgid "Rid base"
-msgstr ""
+msgstr "RID 베이스"
 
 #: admin/samba/class_sambaDomain.inc:62
 msgid "Algorithmic rid base"
-msgstr ""
+msgstr "알고리즘 RID 베이스"
 
 #: admin/samba/class_sambaDomain.inc:66
 msgid "Minimum password age"
-msgstr ""
+msgstr "최소 암호 사용 기간"
 
 #: admin/samba/class_sambaDomain.inc:67
 msgid ""
 "Minimum password age, in seconds (default: 0 => allow immediate password "
 "change)"
-msgstr ""
+msgstr "최소 암호 사용 기간 (초) (기본값 : 0 => 즉시 암호 변경 허용)"
 
 #: admin/samba/class_sambaDomain.inc:72
 msgid "Maximum password age"
-msgstr ""
+msgstr "최대 암호 사용 기간"
 
 #: admin/samba/class_sambaDomain.inc:73
 msgid ""
 "Maximum password age, in seconds (default: -1 => never expire passwords)"
-msgstr ""
+msgstr "최대 비밀번호 사용 기간 (초) (기본값 : -1 => 비밀번호가 만료되지 않음)"
 
 #: admin/samba/class_sambaDomain.inc:78
 msgid "Next RID"
-msgstr ""
+msgstr "다음 RID"
 
 #: admin/samba/class_sambaDomain.inc:79
 msgid "Next NT rid to give out for anything"
@@ -102,94 +102,94 @@ msgstr ""
 
 #: admin/samba/class_sambaDomain.inc:83
 msgid "Next group RID"
-msgstr ""
+msgstr "다음 그룹 RID"
 
 #: admin/samba/class_sambaDomain.inc:84
 msgid "Next NT rid to give out for groups"
-msgstr ""
+msgstr "그룹에게 줄 다음 NT RID"
 
 #: admin/samba/class_sambaDomain.inc:88
 msgid "Next user RID"
-msgstr ""
+msgstr "다음 사용자 RID"
 
 #: admin/samba/class_sambaDomain.inc:89
 msgid "Next NT rid to give our for users"
-msgstr ""
+msgstr "사용자에게 제공 할 다음 NT RID"
 
 #: admin/samba/class_sambaDomain.inc:93
 msgid "Minimum password length"
-msgstr ""
+msgstr "최소 비밀번호 길이"
 
 #: admin/samba/class_sambaDomain.inc:94
 msgid "Minimal password length (default: 5)"
-msgstr ""
+msgstr "최소 비밀번호 길이 (기본값 : 5)"
 
 #: admin/samba/class_sambaDomain.inc:98
 msgid "Password history length"
-msgstr ""
+msgstr "비밀번호 히스토리 개수"
 
 #: admin/samba/class_sambaDomain.inc:99
 msgid "Length of Password History Entries (default: 0 => off)"
-msgstr ""
+msgstr "비밀번호 히스토리 항목 개수 (기본값 : 0 => 꺼짐)"
 
 #: admin/samba/class_sambaDomain.inc:103
 msgid "Logon to change password"
-msgstr ""
+msgstr "비밀번호 변경을 위해 로그온"
 
 #: admin/samba/class_sambaDomain.inc:104
 msgid "Force Users to logon for password change (default: 0 => off, 2 => on)"
-msgstr ""
+msgstr "사용자가 비밀번호 변경을 위해 로그온하도록 강제 실행 (기본값 : 0 => 꺼짐, 2 => 켜짐)"
 
 #: admin/samba/class_sambaDomain.inc:108
 msgid "Lockout duration"
-msgstr ""
+msgstr "잠금 기간"
 
 #: admin/samba/class_sambaDomain.inc:109
 msgid "Lockout duration in minutes (default: 30, -1 => forever)"
-msgstr ""
+msgstr "잠금 시간, 분 (기본값 : 30, -1 => 영원히)"
 
 #: admin/samba/class_sambaDomain.inc:113
 msgid "Lockout observation window"
-msgstr ""
+msgstr "잠금 감시 창"
 
 #: admin/samba/class_sambaDomain.inc:114
 msgid "Reset time after lockout in minutes (default: 30)"
-msgstr ""
+msgstr "잠금 후 시간 재설정, 분 (기본값 : 30)"
 
 #: admin/samba/class_sambaDomain.inc:118
 msgid "Lockout threshold"
-msgstr ""
+msgstr "잠금 임계 값"
 
 #: admin/samba/class_sambaDomain.inc:119
 msgid "Lockout users after bad logon attempts (default: 0 => off)"
-msgstr ""
+msgstr "잘못된 로그온 시도 후 사용자 잠금 (기본값 : 0 => 꺼짐)"
 
 #: admin/samba/class_sambaDomain.inc:123
 msgid "Force logoff"
-msgstr ""
+msgstr "강제 로그오프"
 
 #: admin/samba/class_sambaDomain.inc:124
 msgid "Disconnect Users outside logon hours (default: -1 => off, 0 => on)"
-msgstr ""
+msgstr "로그온 시간 이외의 사용자 연결 끊기 (기본값 : -1 => 꺼짐, 0 => 켜짐)"
 
 #: admin/samba/class_sambaDomain.inc:128
 msgid "Refuse machine password change"
-msgstr ""
+msgstr "컴퓨터 비밀번호 변경 거부"
 
 #: admin/samba/class_sambaDomain.inc:129
 msgid "Allow Machine Password changes (default: 0 => off)"
-msgstr ""
+msgstr "컴퓨터 암호 변경 허용 (기본값 : 0 => 꺼짐)"
 
 #: admin/groups/samba/class_sambaGroup.inc:29
 #: admin/systems/samba/class_sambaSystemTab.inc:30
 #: config/samba/class_sambaPluginConfig.inc:28
 #: personal/samba/class_sambaAccount.inc:158
 msgid "Samba"
-msgstr ""
+msgstr "삼바"
 
 #: admin/groups/samba/class_sambaGroup.inc:30
 msgid "Samba group settings"
-msgstr ""
+msgstr "삼바 그룹 설정"
 
 #: admin/groups/samba/class_sambaGroup.inc:43
 #: admin/groups/samba/class_sambaGroup.inc:46
@@ -200,39 +200,39 @@ msgstr "도메"
 
 #: admin/groups/samba/class_sambaGroup.inc:46
 msgid "Samba domain"
-msgstr ""
+msgstr "삼바 도메인"
 
 #: admin/groups/samba/class_sambaGroup.inc:50
 msgid "Samba information"
-msgstr ""
+msgstr "삼바 정보"
 
 #: admin/groups/samba/class_sambaGroup.inc:57
 msgid "Group type"
-msgstr ""
+msgstr "그룹 유형"
 
 #: admin/groups/samba/class_sambaGroup.inc:57
 msgid "Samba group type"
-msgstr ""
+msgstr "삼바 그룹 유형"
 
 #: admin/groups/samba/class_sambaGroup.inc:61
 #: admin/groups/samba/class_sambaGroup.inc:121
 msgid "Samba group"
-msgstr ""
+msgstr "삼바 그룹"
 
 #: admin/groups/samba/class_sambaGroup.inc:61
 #: admin/groups/samba/class_sambaGroup.inc:121
 msgid "Domain admins"
-msgstr ""
+msgstr "도메인 관리자"
 
 #: admin/groups/samba/class_sambaGroup.inc:61
 #: admin/groups/samba/class_sambaGroup.inc:121
 msgid "Domain users"
-msgstr ""
+msgstr "도메인 사용자"
 
 #: admin/groups/samba/class_sambaGroup.inc:61
 #: admin/groups/samba/class_sambaGroup.inc:121
 msgid "Domain guests"
-msgstr ""
+msgstr "도메인 게스트"
 
 #: admin/groups/samba/class_sambaGroup.inc:107
 msgid "Configuration error"
@@ -240,12 +240,12 @@ msgstr "설정 에러"
 
 #: admin/groups/samba/class_sambaGroup.inc:107
 msgid "Cannot find group SID in your configuration!"
-msgstr ""
+msgstr "구성에서 그룹 SID를 찾을 수 없습니다!"
 
 #: admin/groups/samba/class_sambaGroup.inc:121
 #, php-format
 msgid "Special group (%d)"
-msgstr ""
+msgstr "특수 그룹 (%d)"
 
 #: admin/groups/samba/class_sambaGroup.inc:137
 #: personal/samba/class_sambaAccount.inc:516
@@ -257,131 +257,135 @@ msgstr "ã…—"
 #: admin/groups/samba/class_sambaGroup.inc:137
 #: personal/samba/class_sambaAccount.inc:516
 msgid "Undefined Samba SID detected. Please fix this problem manually!"
-msgstr ""
+msgstr "정의되지 않은 Samba SID가 감지되었습니다. 이 문제를 수동으로 수정하십시오!"
 
 #: admin/systems/samba/class_argonautEventSambaShares.inc:27
 msgid "Update Samba Shares"
-msgstr ""
+msgstr "삼바 공유 업데이트"
 
 #: admin/systems/samba/class_sambaSystemTab.inc:31
 msgid "Windows workstation information"
-msgstr ""
+msgstr "Windows 워크스테이션 정보"
 
 #: admin/systems/samba/class_sambaSystemTab.inc:53
 #: personal/samba/class_sambaAccount.inc:199
 msgid "Samba domain name"
-msgstr ""
+msgstr "삼바 도메인 이름"
 
 #: config/samba/class_sambaPluginConfig.inc:29
 msgid "Samba plugin configuration"
-msgstr ""
+msgstr "삼바 플러그인 구성"
 
 #: config/samba/class_sambaPluginConfig.inc:41
 #: personal/samba/class_sambaAccount.inc:159
 msgid "Samba settings"
-msgstr ""
+msgstr "삼바 설정"
 
 #: config/samba/class_sambaPluginConfig.inc:44
 msgid "Samba ID mapping"
-msgstr ""
+msgstr "삼바 ID 매핑"
 
 #: config/samba/class_sambaPluginConfig.inc:45
 msgid ""
 "Maintain sambaIdmapEntry objects. Depending on your setup this can "
 "drastically improve the windows login performance."
 msgstr ""
+"sambaIdmapEntry 오브젝트를 유지보수 하십시오. 설정에 따라 Windows 로그인 성능을 크게 향상시킬 수 있습니다."
 
 #: config/samba/class_sambaPluginConfig.inc:49
 msgid "Samba SID"
-msgstr ""
+msgstr "삼바 SID"
 
 #: config/samba/class_sambaPluginConfig.inc:50
 msgid ""
 "A samba SID if not available inside of the LDAP though samba schema. You can"
 " retrieve the current sid by net getlocalsid."
 msgstr ""
+"Samba 스키마를 통해 LDAP 내부에서 사용할 수없는 경우 Samba SID net getlocalsid로 현재 sid를 검색 할 수"
+" 있습니다."
 
 #: config/samba/class_sambaPluginConfig.inc:55
 msgid "Samba rid base"
-msgstr ""
+msgstr "삼바 RID 베이스"
 
 #: config/samba/class_sambaPluginConfig.inc:56
 msgid ""
 "The base id to add to ordinary sid calculations - if not available inside of"
 " the LDAP though samba schema."
-msgstr ""
+msgstr "samba 스키마를 통해 LDAP 내부에서 사용할 수 없는 경우 일반 sid 계산에 추가 할 기본 ID입니다."
 
 #: config/samba/class_sambaPluginConfig.inc:61
 msgid "Expiration date synchronisaton"
-msgstr ""
+msgstr "만료 날짜 동기화"
 
 #: config/samba/class_sambaPluginConfig.inc:61
 msgid "Synchronisaton the expiration date with the POSIX one?"
-msgstr ""
+msgstr "만료 날짜를 POSIX 날짜와 동기화 하시겠습니까?"
 
 #: config/samba/class_sambaPluginConfig.inc:67
 msgid "Generate sambaLMPassword"
-msgstr ""
+msgstr "sambaLMPassword 생성"
 
 #: config/samba/class_sambaPluginConfig.inc:67
 msgid "Needed to be compliant with Windows <= 98 or Samba < 3.2"
-msgstr ""
+msgstr "Windows <= 98 또는 Samba <3.2 를 준수해야 합니다."
 
 #: config/samba/class_sambaPluginConfig.inc:71
 msgid "Activate primary group warning"
-msgstr ""
+msgstr "기본 그룹 경고 활성화"
 
 #: config/samba/class_sambaPluginConfig.inc:71
 msgid ""
 "Issue a warning if POSIX primary group cannot be converted to Samba primary "
 "group when activating the Samba tab of a user"
 msgstr ""
+"사용자의 Samba 탭을 활성화 할 때 POSIX 기본 그룹을 Samba 기본 그룹으로 변환 할 수 없는 경우 경고를 발생하십시오."
 
 #: personal/samba/class_sambaAccount.inc:31
 msgid "Samba Munged Dial"
-msgstr ""
+msgstr "삼바 Munged Dial"
 
 #: personal/samba/class_sambaAccount.inc:183
 msgid "Samba profile"
-msgstr ""
+msgstr "삼바 프로필"
 
 #: personal/samba/class_sambaAccount.inc:189
 #: personal/samba/class_sambaAccount.inc:222
 msgid "Home directory drive"
-msgstr ""
+msgstr "홈 디렉토리 드라이브"
 
 #: personal/samba/class_sambaAccount.inc:189
 #: personal/samba/class_sambaAccount.inc:222
 msgid "Letter for the home drive"
-msgstr ""
+msgstr "홈 드라이브 문자"
 
 #: personal/samba/class_sambaAccount.inc:194
 #: personal/samba/class_sambaAccount.inc:227
 msgid "Home directory path"
-msgstr ""
+msgstr "홈 디렉토리 경로"
 
 #: personal/samba/class_sambaAccount.inc:194
 #: personal/samba/class_sambaAccount.inc:227
 msgid "UNC path for the home drive"
-msgstr ""
+msgstr "홈 드라이브의 UNC 경로"
 
 #: personal/samba/class_sambaAccount.inc:203
 msgid "Script path"
-msgstr ""
+msgstr "스크립트 경로"
 
 #: personal/samba/class_sambaAccount.inc:203
 msgid "Login script path"
-msgstr ""
+msgstr "로그인 스크립트 경로"
 
 #: personal/samba/class_sambaAccount.inc:207
 #: personal/samba/class_sambaAccount.inc:232
 msgid "Profile path"
-msgstr ""
+msgstr "프로필 경로"
 
 #: personal/samba/class_sambaAccount.inc:207
 #: personal/samba/class_sambaAccount.inc:232
 msgid "UNC profile path"
-msgstr ""
+msgstr "UNC 프로파일 경로"
 
 #: personal/samba/class_sambaAccount.inc:214
 msgid "Terminal server"
@@ -389,83 +393,83 @@ msgstr "터미널 서버"
 
 #: personal/samba/class_sambaAccount.inc:218
 msgid "Allow login on terminal server"
-msgstr ""
+msgstr "터미널 서버에서 로그인 허용"
 
 #: personal/samba/class_sambaAccount.inc:237
 msgid "Inherit client config"
-msgstr ""
+msgstr "클라이언트 구성 상속"
 
 #: personal/samba/class_sambaAccount.inc:237
 msgid "Inherit client configuration"
-msgstr ""
+msgstr "클라이언트 구성 상속"
 
 #: personal/samba/class_sambaAccount.inc:241
 msgid "Initial progam"
-msgstr ""
+msgstr "초기화 프로그램"
 
 #: personal/samba/class_sambaAccount.inc:241
 msgid "Program to start after connecting"
-msgstr ""
+msgstr "연결 후 시작되는 프로그램"
 
 #: personal/samba/class_sambaAccount.inc:245
 msgid "Working directory"
-msgstr ""
+msgstr "작업 디렉토리"
 
 #: personal/samba/class_sambaAccount.inc:245
 msgid "Basic working directory"
-msgstr ""
+msgstr "기본 작업 디렉토리"
 
 #: personal/samba/class_sambaAccount.inc:249
 msgid "Connection timeout"
-msgstr ""
+msgstr "접속 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:249
 msgid "Timeout when connecting to terminal server"
-msgstr ""
+msgstr "터미널 서버에 연결할 때 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:254
 msgid "Disconnection timeout"
-msgstr ""
+msgstr "연결 끊기 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:254
 msgid "Timeout before disconnecting from terminal server"
-msgstr ""
+msgstr "터미널 서버에서 연결을 끊기 전 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:259
 msgid "Idle timeout"
-msgstr ""
+msgstr "유휴 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:259
 msgid "Idle timeout before disconnecting from terminal server"
-msgstr ""
+msgstr "터미널 서버에서 연결을 끊기 전에 유휴 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:264
 msgid "Connect client drives at logon"
-msgstr ""
+msgstr "로그온시 클라이언트 드라이브 연결"
 
 #: personal/samba/class_sambaAccount.inc:264
 msgid "Drive to connect after login"
-msgstr ""
+msgstr "로그인 후 연결할 드라이브"
 
 #: personal/samba/class_sambaAccount.inc:268
 msgid "Connect client printers at logon"
-msgstr ""
+msgstr "로그온 시 클라이언트 프린터 연결"
 
 #: personal/samba/class_sambaAccount.inc:268
 msgid "Printers to connect after login"
-msgstr ""
+msgstr "로그인 후 연결할 프린터"
 
 #: personal/samba/class_sambaAccount.inc:272
 msgid "Default to main client printer"
-msgstr ""
+msgstr "기본 클라이언트 프린터로 기본 설정"
 
 #: personal/samba/class_sambaAccount.inc:272
 msgid "Default printer for this client"
-msgstr ""
+msgstr "이 클라이언트의 기본 프린터"
 
 #: personal/samba/class_sambaAccount.inc:276
 msgid "Shadowing"
-msgstr ""
+msgstr "쉐도"
 
 #: personal/samba/class_sambaAccount.inc:279
 msgid "disabled"
diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po
index 24a33a4afe..abeb90df65 100644
--- a/samba/locale/lv/fusiondirectory.po
+++ b/samba/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po
index b4cd4bc981..e9e816822d 100644
--- a/samba/locale/nb/fusiondirectory.po
+++ b/samba/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po
index 4a37f8c3dc..16d74bb816 100644
--- a/samba/locale/nl/fusiondirectory.po
+++ b/samba/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po
index 69211c7c95..4d44780d55 100644
--- a/samba/locale/pl/fusiondirectory.po
+++ b/samba/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po
index e5736d2ac2..ab40ee7247 100644
--- a/samba/locale/pt/fusiondirectory.po
+++ b/samba/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po
index 332eb05ef4..92f1f1864c 100644
--- a/samba/locale/pt_BR/fusiondirectory.po
+++ b/samba/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po
index 8ff65ed1e3..53d56e1093 100644
--- a/samba/locale/ru/fusiondirectory.po
+++ b/samba/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po
index c2aeb47de8..612313ae0d 100644
--- a/samba/locale/ru@petr1708/fusiondirectory.po
+++ b/samba/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po
index ca948d90f9..a6cf2434b8 100644
--- a/samba/locale/sv/fusiondirectory.po
+++ b/samba/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/samba/locale/tr_TR/fusiondirectory.po b/samba/locale/tr_TR/fusiondirectory.po
index 6fc54daca8..5ab178b22a 100644
--- a/samba/locale/tr_TR/fusiondirectory.po
+++ b/samba/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po
index 32f4ef5259..32b51d2ba0 100644
--- a/samba/locale/ug/fusiondirectory.po
+++ b/samba/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po
index 9270f5d678..639bb633ee 100644
--- a/samba/locale/vi_VN/fusiondirectory.po
+++ b/samba/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po
index a200a2ddca..af9746d611 100644
--- a/samba/locale/zh/fusiondirectory.po
+++ b/samba/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/samba/locale/zh_TW/fusiondirectory.po b/samba/locale/zh_TW/fusiondirectory.po
index 305bb0e070..a81918f29a 100644
--- a/samba/locale/zh_TW/fusiondirectory.po
+++ b/samba/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/af_ZA/fusiondirectory.po b/sinaps/locale/af_ZA/fusiondirectory.po
index 5c44b50807..c4cd191f14 100644
--- a/sinaps/locale/af_ZA/fusiondirectory.po
+++ b/sinaps/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ar/fusiondirectory.po b/sinaps/locale/ar/fusiondirectory.po
index 4d41e9d632..c0ad13cc65 100644
--- a/sinaps/locale/ar/fusiondirectory.po
+++ b/sinaps/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ca/fusiondirectory.po b/sinaps/locale/ca/fusiondirectory.po
index 3db8c4a3b6..b34a020453 100644
--- a/sinaps/locale/ca/fusiondirectory.po
+++ b/sinaps/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sinaps/locale/cs_CZ/fusiondirectory.po b/sinaps/locale/cs_CZ/fusiondirectory.po
index 9a4b76c3c9..175a9fa8fd 100644
--- a/sinaps/locale/cs_CZ/fusiondirectory.po
+++ b/sinaps/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sinaps/locale/de/fusiondirectory.po b/sinaps/locale/de/fusiondirectory.po
index 280bafebdf..85bf661583 100644
--- a/sinaps/locale/de/fusiondirectory.po
+++ b/sinaps/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sinaps/locale/el_GR/fusiondirectory.po b/sinaps/locale/el_GR/fusiondirectory.po
index b1914643a8..7b41b00c13 100644
--- a/sinaps/locale/el_GR/fusiondirectory.po
+++ b/sinaps/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sinaps/locale/en/fusiondirectory.po b/sinaps/locale/en/fusiondirectory.po
index 7791d458aa..c3e5020388 100644
--- a/sinaps/locale/en/fusiondirectory.po
+++ b/sinaps/locale/en/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2018-12-10 23:16+0100\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,35 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:294
-#: include/class_sinapsDiffusionHandlerJob.inc:315
-#, php-format
-msgid ""
-"Failed to get password method for account \"%s\". It has not been locked!"
-msgstr ""
-
-#: include/class_sinapsDiffusionHandlerJob.inc:311
-#, php-format
-msgid ""
-"Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
-msgstr ""
-
-#: include/class_sinapsDiffusionHandlerJob.inc:318
-#, php-format
-msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
-msgstr ""
-
-#: personal/sinaps/class_sinapsUser.inc:26
-#: personal/sinaps/class_sinapsUser.inc:27
-#: config/sinaps/class_sinapsConfig.inc:43
-#: config/sinaps/class_sinapsConfig.inc:155
-msgid "Sinaps"
-msgstr ""
-
-#: personal/sinaps/class_sinapsUser.inc:28
-msgid "Used to send acquisition request for users"
-msgstr ""
-
 #: config/sinaps/class_sinapsConfig.inc:28
 msgid "SINAPS configuration"
 msgstr ""
@@ -54,6 +25,14 @@ msgstr ""
 msgid "FusionDirectory SINAPS plugin configuration"
 msgstr ""
 
+#: config/sinaps/class_sinapsConfig.inc:43
+#: config/sinaps/class_sinapsConfig.inc:227
+#: personal/sinaps/class_sinapsUser.inc:27
+#: personal/sinaps/class_sinapsUser.inc:28
+#: personal/sinaps/class_sinapsUser.inc:44
+msgid "Sinaps"
+msgstr ""
+
 #: config/sinaps/class_sinapsConfig.inc:46
 msgid "Enable SINAPS integration"
 msgstr ""
@@ -71,127 +50,210 @@ msgid "Do not insert data in FusionDirectory, dump it to a file"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:56
-msgid "Acknowledgement URL"
-msgstr ""
-
-#: config/sinaps/class_sinapsConfig.inc:56
-msgid "Full URL to which functionnal acknowledgement should be sent"
-msgstr ""
-
-#: config/sinaps/class_sinapsConfig.inc:60
 msgid "Dump folder"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:60
+#: config/sinaps/class_sinapsConfig.inc:56
 msgid ""
 "Folder in which received transactions should be dumped (leave empty to "
 "disable)"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:64
+#: config/sinaps/class_sinapsConfig.inc:60
 msgid "Application identifier"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:64
+#: config/sinaps/class_sinapsConfig.inc:60
 msgid "Application identifier present in cross references with FusionDirectory"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:70
-msgid "Applications identifiers to sync"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "UUID prefix"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:70
-msgid ""
-"List of applications identifiers for which cross references should be synced "
-"from SINAPS"
+#: config/sinaps/class_sinapsConfig.inc:65
+msgid "Prefix used for UUID in supannRefId"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:72
+msgid "Diffusion"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:76
-msgid "UUID prefix"
+msgid "Applications identifiers to sync"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:76
-msgid "Prefix used for UUID in supannRefId"
+msgid ""
+"List of applications identifiers for which cross references should be synced "
+"from SINAPS"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:81
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "User base"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:81
+#: config/sinaps/class_sinapsConfig.inc:82
 msgid "Base in which users should be created when receiving a SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:86
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:86
+#: config/sinaps/class_sinapsConfig.inc:87
 msgid "User template to use for user creation from SINAPS diffusion"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:91
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid "API Tokens"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:91
+#: config/sinaps/class_sinapsConfig.inc:92
 msgid ""
 "One of these API tokens will need to be present in the diffusion URL used by "
 "SINAPS"
 msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:98
+msgid "User roles"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:98
+msgid "Roles which means a user still exists if present"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:136
+msgid "Which field to sync in diffusion"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:109
+#: config/sinaps/class_sinapsConfig.inc:140
+msgid "XPath for the XML value to fetch"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:113
+#: config/sinaps/class_sinapsConfig.inc:144
+msgid "Name of the FD tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:117
+#: config/sinaps/class_sinapsConfig.inc:148
+msgid "Name of the FD field"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:122
+msgid "User field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:153
+msgid "Structure field mapping"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:170
 msgid "Sinaps Acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
-msgid "Acquisiton URL"
+#: config/sinaps/class_sinapsConfig.inc:173
+msgid "Acquisition URL"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:101
-msgid "Full URL to which acquisiton events should be sent"
+#: config/sinaps/class_sinapsConfig.inc:173
+msgid "Full URL to which acquisition events should be sent"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:105
+#: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:110
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:110
+#: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:114
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Acquisition external type"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:114
+#: config/sinaps/class_sinapsConfig.inc:186
 msgid "Set in typeExterne tag when sending acquisition data"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:120
+#: config/sinaps/class_sinapsConfig.inc:192
 msgid "Which field to sync as contact methods in acquisition"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:124
+#: config/sinaps/class_sinapsConfig.inc:196
 msgid "Name of an LDAP attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:128
+#: config/sinaps/class_sinapsConfig.inc:200
 msgid "Name of the Sinaps attribute"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:133
+#: config/sinaps/class_sinapsConfig.inc:205
 msgid "Contact methods"
 msgstr ""
 
-#: config/sinaps/class_sinapsConfig.inc:155
+#: config/sinaps/class_sinapsConfig.inc:227
 msgid "LDAP"
 msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "XPath"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Tab"
+msgstr ""
+
+#: config/sinaps/class_sinapsConfig.inc:228
+#: config/sinaps/class_sinapsConfig.inc:229
+msgid "Field"
+msgstr ""
+
+#: include/class_sinapsDiffusionHandlerJob.inc:313
+#: include/class_sinapsDiffusionHandlerJob.inc:334
+#, php-format
+msgid ""
+"Failed to get password method for account \"%s\". It has not been locked!"
+msgstr ""
+
+#: include/class_sinapsDiffusionHandlerJob.inc:330
+#, php-format
+msgid ""
+"Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
+msgstr ""
+
+#: include/class_sinapsDiffusionHandlerJob.inc:337
+#, php-format
+msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
+msgstr ""
+
+#: personal/sinaps/class_sinapsUser.inc:29
+msgid "Used to send acquisition request for users"
+msgstr ""
+
+#: personal/sinaps/class_sinapsUser.inc:50
+msgid ""
+"This tab takes care of sending Acquisition event to Sinaps whenever a user "
+"is modified."
+msgstr ""
+
+#: personal/sinaps/class_sinapsUser.inc:53
+msgid "Force Sinaps Acquisition"
+msgstr ""
+
+#: personal/sinaps/class_sinapsUser.inc:53
+msgid "Send Acquisition data even if data was not modified in FusionDirectory"
+msgstr ""
diff --git a/sinaps/locale/es/fusiondirectory.po b/sinaps/locale/es/fusiondirectory.po
index 410ee16cec..79c0fff426 100644
--- a/sinaps/locale/es/fusiondirectory.po
+++ b/sinaps/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sinaps/locale/es_CO/fusiondirectory.po b/sinaps/locale/es_CO/fusiondirectory.po
index e95ae0b70b..da82df48cc 100644
--- a/sinaps/locale/es_CO/fusiondirectory.po
+++ b/sinaps/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sinaps/locale/es_VE/fusiondirectory.po b/sinaps/locale/es_VE/fusiondirectory.po
index 7fef0c4c62..ba9ec3f712 100644
--- a/sinaps/locale/es_VE/fusiondirectory.po
+++ b/sinaps/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sinaps/locale/fa_IR/fusiondirectory.po b/sinaps/locale/fa_IR/fusiondirectory.po
index d7f9dcebde..68d71feeda 100644
--- a/sinaps/locale/fa_IR/fusiondirectory.po
+++ b/sinaps/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/fi_FI/fusiondirectory.po b/sinaps/locale/fi_FI/fusiondirectory.po
index 17353c13bf..de01a5b0a5 100644
--- a/sinaps/locale/fi_FI/fusiondirectory.po
+++ b/sinaps/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sinaps/locale/fr/fusiondirectory.po b/sinaps/locale/fr/fusiondirectory.po
index c8cc872c5b..06d9490298 100644
--- a/sinaps/locale/fr/fusiondirectory.po
+++ b/sinaps/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sinaps/locale/hu_HU/fusiondirectory.po b/sinaps/locale/hu_HU/fusiondirectory.po
index 2df63d1907..527f4453b9 100644
--- a/sinaps/locale/hu_HU/fusiondirectory.po
+++ b/sinaps/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/id/fusiondirectory.po b/sinaps/locale/id/fusiondirectory.po
index 6e1c6bc142..2459df1e70 100644
--- a/sinaps/locale/id/fusiondirectory.po
+++ b/sinaps/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index d97e957b4a..34a597a26d 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sinaps/locale/ja/fusiondirectory.po b/sinaps/locale/ja/fusiondirectory.po
index 498039545b..94ab6177e3 100644
--- a/sinaps/locale/ja/fusiondirectory.po
+++ b/sinaps/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ko/fusiondirectory.po b/sinaps/locale/ko/fusiondirectory.po
index e325c34f1d..ad0b608d49 100644
--- a/sinaps/locale/ko/fusiondirectory.po
+++ b/sinaps/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -187,7 +187,7 @@ msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login"
-msgstr ""
+msgstr "로그인"
 
 #: config/sinaps/class_sinapsConfig.inc:177
 msgid "Login to use for Basic Auth when contacting SINAPS services"
diff --git a/sinaps/locale/lv/fusiondirectory.po b/sinaps/locale/lv/fusiondirectory.po
index b3edcf14ac..f69b6550f7 100644
--- a/sinaps/locale/lv/fusiondirectory.po
+++ b/sinaps/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nb/fusiondirectory.po b/sinaps/locale/nb/fusiondirectory.po
index 74650a77b2..a1c8fee5f3 100644
--- a/sinaps/locale/nb/fusiondirectory.po
+++ b/sinaps/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nl/fusiondirectory.po b/sinaps/locale/nl/fusiondirectory.po
index 63c59544a7..fc6aba6bda 100644
--- a/sinaps/locale/nl/fusiondirectory.po
+++ b/sinaps/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2019\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sinaps/locale/pl/fusiondirectory.po b/sinaps/locale/pl/fusiondirectory.po
index 7b89ca579e..efaa09d017 100644
--- a/sinaps/locale/pl/fusiondirectory.po
+++ b/sinaps/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sinaps/locale/pt/fusiondirectory.po b/sinaps/locale/pt/fusiondirectory.po
index 535f3d960b..6e651eb897 100644
--- a/sinaps/locale/pt/fusiondirectory.po
+++ b/sinaps/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sinaps/locale/pt_BR/fusiondirectory.po b/sinaps/locale/pt_BR/fusiondirectory.po
index 6989e1522c..6cb30d6dcc 100644
--- a/sinaps/locale/pt_BR/fusiondirectory.po
+++ b/sinaps/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sinaps/locale/ru/fusiondirectory.po b/sinaps/locale/ru/fusiondirectory.po
index b496aad2a0..07b2aa7e6a 100644
--- a/sinaps/locale/ru/fusiondirectory.po
+++ b/sinaps/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sinaps/locale/ru@petr1708/fusiondirectory.po b/sinaps/locale/ru@petr1708/fusiondirectory.po
index 9f5ee19e99..2238bf1736 100644
--- a/sinaps/locale/ru@petr1708/fusiondirectory.po
+++ b/sinaps/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/sv/fusiondirectory.po b/sinaps/locale/sv/fusiondirectory.po
index 978129b68d..2bdf451d97 100644
--- a/sinaps/locale/sv/fusiondirectory.po
+++ b/sinaps/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sinaps/locale/tr_TR/fusiondirectory.po b/sinaps/locale/tr_TR/fusiondirectory.po
index db9d87636c..c27c0abd1d 100644
--- a/sinaps/locale/tr_TR/fusiondirectory.po
+++ b/sinaps/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ug/fusiondirectory.po b/sinaps/locale/ug/fusiondirectory.po
index afb9215c3b..1b50339c7d 100644
--- a/sinaps/locale/ug/fusiondirectory.po
+++ b/sinaps/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/vi_VN/fusiondirectory.po b/sinaps/locale/vi_VN/fusiondirectory.po
index d48a29b067..c6a4baf726 100644
--- a/sinaps/locale/vi_VN/fusiondirectory.po
+++ b/sinaps/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sinaps/locale/zh/fusiondirectory.po b/sinaps/locale/zh/fusiondirectory.po
index ac7833daa9..01a6714207 100644
--- a/sinaps/locale/zh/fusiondirectory.po
+++ b/sinaps/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sinaps/locale/zh_TW/fusiondirectory.po b/sinaps/locale/zh_TW/fusiondirectory.po
index b0947f6a3e..b76704cdf8 100644
--- a/sinaps/locale/zh_TW/fusiondirectory.po
+++ b/sinaps/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/af_ZA/fusiondirectory.po b/sogo/locale/af_ZA/fusiondirectory.po
index 6cbe71fb71..d1aace244d 100644
--- a/sogo/locale/af_ZA/fusiondirectory.po
+++ b/sogo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po
index 709d9478dc..c23f1345ba 100644
--- a/sogo/locale/ar/fusiondirectory.po
+++ b/sogo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po
index 759bc8fdc5..43d41754bd 100644
--- a/sogo/locale/ca/fusiondirectory.po
+++ b/sogo/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po
index cd5c6f5b10..b07dcfd749 100644
--- a/sogo/locale/cs_CZ/fusiondirectory.po
+++ b/sogo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po
index 56513a923f..2d8637c363 100644
--- a/sogo/locale/de/fusiondirectory.po
+++ b/sogo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po
index 6471a3b9f2..e8670c596e 100644
--- a/sogo/locale/el_GR/fusiondirectory.po
+++ b/sogo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sogo/locale/en/fusiondirectory.po b/sogo/locale/en/fusiondirectory.po
index 70c927d053..91a4244e84 100644
--- a/sogo/locale/en/fusiondirectory.po
+++ b/sogo/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po
index 4964cda886..13f51fc072 100644
--- a/sogo/locale/es/fusiondirectory.po
+++ b/sogo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po
index e3bef2d4f6..c514a3099c 100644
--- a/sogo/locale/es_CO/fusiondirectory.po
+++ b/sogo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po
index 97ce9b1dc9..ac06e1cedb 100644
--- a/sogo/locale/es_VE/fusiondirectory.po
+++ b/sogo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po
index 01b7f34809..bae71683cb 100644
--- a/sogo/locale/fa_IR/fusiondirectory.po
+++ b/sogo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po
index 95389af828..2d11741b16 100644
--- a/sogo/locale/fi_FI/fusiondirectory.po
+++ b/sogo/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po
index 37c2817915..a5f66414a8 100644
--- a/sogo/locale/fr/fusiondirectory.po
+++ b/sogo/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po
index 8fb63e8fbc..8c5470e36b 100644
--- a/sogo/locale/hu_HU/fusiondirectory.po
+++ b/sogo/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po
index 670ce0da89..39495b1f37 100644
--- a/sogo/locale/id/fusiondirectory.po
+++ b/sogo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po
index a68b034d5e..7423a1bb2b 100644
--- a/sogo/locale/it_IT/fusiondirectory.po
+++ b/sogo/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sogo/locale/ja/fusiondirectory.po b/sogo/locale/ja/fusiondirectory.po
index 4e1f6a2b45..0b2e8a35ae 100644
--- a/sogo/locale/ja/fusiondirectory.po
+++ b/sogo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ko/fusiondirectory.po b/sogo/locale/ko/fusiondirectory.po
index 4a981abc95..2fbd25f1f9 100644
--- a/sogo/locale/ko/fusiondirectory.po
+++ b/sogo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po
index 448ef5f12f..8e0c50771b 100644
--- a/sogo/locale/lv/fusiondirectory.po
+++ b/sogo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po
index 8dd1b945e4..0fdd125adb 100644
--- a/sogo/locale/nb/fusiondirectory.po
+++ b/sogo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po
index 667920a9fe..5feaa94b0c 100644
--- a/sogo/locale/nl/fusiondirectory.po
+++ b/sogo/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po
index c1cc2fbf64..e821a0e7d7 100644
--- a/sogo/locale/pl/fusiondirectory.po
+++ b/sogo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po
index 8ad9331191..d6cab7c030 100644
--- a/sogo/locale/pt/fusiondirectory.po
+++ b/sogo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po
index 1b7680d70d..63e1fd82d6 100644
--- a/sogo/locale/pt_BR/fusiondirectory.po
+++ b/sogo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po
index 24d191c950..d40ceba9d7 100644
--- a/sogo/locale/ru/fusiondirectory.po
+++ b/sogo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po
index a4605d9599..e1e51f4eb4 100644
--- a/sogo/locale/ru@petr1708/fusiondirectory.po
+++ b/sogo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po
index 260f918a9c..68ee8f13ec 100644
--- a/sogo/locale/sv/fusiondirectory.po
+++ b/sogo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sogo/locale/tr_TR/fusiondirectory.po b/sogo/locale/tr_TR/fusiondirectory.po
index 283d772d32..f2eee8f0aa 100644
--- a/sogo/locale/tr_TR/fusiondirectory.po
+++ b/sogo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po
index 4a5e2e1494..4129611511 100644
--- a/sogo/locale/ug/fusiondirectory.po
+++ b/sogo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po
index cc1226866e..a9acef5430 100644
--- a/sogo/locale/vi_VN/fusiondirectory.po
+++ b/sogo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po
index e4238a5df8..854940ea04 100644
--- a/sogo/locale/zh/fusiondirectory.po
+++ b/sogo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sogo/locale/zh_TW/fusiondirectory.po b/sogo/locale/zh_TW/fusiondirectory.po
index e0d2eb8fac..a3c8513480 100644
--- a/sogo/locale/zh_TW/fusiondirectory.po
+++ b/sogo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/af_ZA/fusiondirectory.po b/spamassassin/locale/af_ZA/fusiondirectory.po
index fe1a7749aa..fe34d93e09 100644
--- a/spamassassin/locale/af_ZA/fusiondirectory.po
+++ b/spamassassin/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po
index 149347ebb4..2853b142cf 100644
--- a/spamassassin/locale/ar/fusiondirectory.po
+++ b/spamassassin/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po
index 1e289db5fd..234a749f85 100644
--- a/spamassassin/locale/ca/fusiondirectory.po
+++ b/spamassassin/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po
index e3801c3451..fc4fc2804d 100644
--- a/spamassassin/locale/cs_CZ/fusiondirectory.po
+++ b/spamassassin/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po
index 37d959181e..ebe7f7be0f 100644
--- a/spamassassin/locale/de/fusiondirectory.po
+++ b/spamassassin/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po
index 6d13566281..aaec213c4e 100644
--- a/spamassassin/locale/el_GR/fusiondirectory.po
+++ b/spamassassin/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/spamassassin/locale/en/fusiondirectory.po b/spamassassin/locale/en/fusiondirectory.po
index 56a3e0d53a..9e8edf615e 100644
--- a/spamassassin/locale/en/fusiondirectory.po
+++ b/spamassassin/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,42 +17,6 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/spamassassin/class_spamAssassinAccount.inc:31
-msgid "Spam rules"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:38
-msgid "SpamAssassin user preferences settings"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:42
-msgid "Directive"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:42
-msgid "The name of a SpamAssassin configuration directive"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:47
-msgid "Value"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:47
-msgid "The value for the directive"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:54
-msgid "SpamAssassin user rules"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:65
-msgid "SpamAssassin"
-msgstr ""
-
-#: personal/spamassassin/class_spamAssassinAccount.inc:66
-msgid "Edit user's spam rules"
-msgstr ""
-
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
 msgid "Spamassassin service"
@@ -126,3 +90,39 @@ msgstr ""
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:117
 msgid "Rule"
 msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:31
+msgid "Spam rules"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:38
+msgid "SpamAssassin user preferences settings"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:42
+msgid "Directive"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:42
+msgid "The name of a SpamAssassin configuration directive"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:47
+msgid "Value"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:47
+msgid "The value for the directive"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:54
+msgid "SpamAssassin user rules"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:65
+msgid "SpamAssassin"
+msgstr ""
+
+#: personal/spamassassin/class_spamAssassinAccount.inc:66
+msgid "Edit user's spam rules"
+msgstr ""
diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po
index 341ce209a8..3d7e679b5e 100644
--- a/spamassassin/locale/es/fusiondirectory.po
+++ b/spamassassin/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po
index 673163611c..1974829170 100644
--- a/spamassassin/locale/es_CO/fusiondirectory.po
+++ b/spamassassin/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po
index 18b6162484..9fb9fca4b1 100644
--- a/spamassassin/locale/es_VE/fusiondirectory.po
+++ b/spamassassin/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po
index fd24590091..a8917c67c3 100644
--- a/spamassassin/locale/fa_IR/fusiondirectory.po
+++ b/spamassassin/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po
index a2a8df5504..e6c331fdd9 100644
--- a/spamassassin/locale/fi_FI/fusiondirectory.po
+++ b/spamassassin/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po
index dd88d36e25..5f5072e770 100644
--- a/spamassassin/locale/fr/fusiondirectory.po
+++ b/spamassassin/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po
index a7162d6461..65b8003a92 100644
--- a/spamassassin/locale/hu_HU/fusiondirectory.po
+++ b/spamassassin/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po
index c3a1ea5dad..1491f20868 100644
--- a/spamassassin/locale/id/fusiondirectory.po
+++ b/spamassassin/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po
index 6d868a6cf3..cb8f46bffc 100644
--- a/spamassassin/locale/it_IT/fusiondirectory.po
+++ b/spamassassin/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/spamassassin/locale/ja/fusiondirectory.po b/spamassassin/locale/ja/fusiondirectory.po
index 839598c021..fcae62f41a 100644
--- a/spamassassin/locale/ja/fusiondirectory.po
+++ b/spamassassin/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ko/fusiondirectory.po b/spamassassin/locale/ko/fusiondirectory.po
index dd02dbc6d9..700817c982 100644
--- a/spamassassin/locale/ko/fusiondirectory.po
+++ b/spamassassin/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po
index 0eff02b638..1ba6e81ddf 100644
--- a/spamassassin/locale/lv/fusiondirectory.po
+++ b/spamassassin/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po
index f874425f42..b7fb92ddd5 100644
--- a/spamassassin/locale/nb/fusiondirectory.po
+++ b/spamassassin/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po
index 93a907a600..b0949a4ac8 100644
--- a/spamassassin/locale/nl/fusiondirectory.po
+++ b/spamassassin/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po
index 3b6dbbce17..2ff9697cad 100644
--- a/spamassassin/locale/pl/fusiondirectory.po
+++ b/spamassassin/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po
index 931d7ea875..e21397eb26 100644
--- a/spamassassin/locale/pt/fusiondirectory.po
+++ b/spamassassin/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po
index 87c42f9f98..94146a8d22 100644
--- a/spamassassin/locale/pt_BR/fusiondirectory.po
+++ b/spamassassin/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po
index f8e56679ce..5c4ac38457 100644
--- a/spamassassin/locale/ru/fusiondirectory.po
+++ b/spamassassin/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po
index e285e1d49b..5f1c87ad32 100644
--- a/spamassassin/locale/ru@petr1708/fusiondirectory.po
+++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po
index 7aa6144969..145afe3394 100644
--- a/spamassassin/locale/sv/fusiondirectory.po
+++ b/spamassassin/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/spamassassin/locale/tr_TR/fusiondirectory.po b/spamassassin/locale/tr_TR/fusiondirectory.po
index 4f4305255f..418d998f74 100644
--- a/spamassassin/locale/tr_TR/fusiondirectory.po
+++ b/spamassassin/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po
index 33cc971612..c88e329811 100644
--- a/spamassassin/locale/ug/fusiondirectory.po
+++ b/spamassassin/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po
index c05ccebfee..9ac730351b 100644
--- a/spamassassin/locale/vi_VN/fusiondirectory.po
+++ b/spamassassin/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po
index cef6be0fa3..42280b2bb3 100644
--- a/spamassassin/locale/zh/fusiondirectory.po
+++ b/spamassassin/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/spamassassin/locale/zh_TW/fusiondirectory.po b/spamassassin/locale/zh_TW/fusiondirectory.po
index bdab35248b..2bbad37c22 100644
--- a/spamassassin/locale/zh_TW/fusiondirectory.po
+++ b/spamassassin/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/af_ZA/fusiondirectory.po b/squid/locale/af_ZA/fusiondirectory.po
index 23f68555eb..8fe61e39e0 100644
--- a/squid/locale/af_ZA/fusiondirectory.po
+++ b/squid/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po
index 95a8bc2334..15b2ba4e2b 100644
--- a/squid/locale/ar/fusiondirectory.po
+++ b/squid/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po
index c459edff61..ba0b024a8b 100644
--- a/squid/locale/ca/fusiondirectory.po
+++ b/squid/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po
index 1cfd050d63..b48873c059 100644
--- a/squid/locale/cs_CZ/fusiondirectory.po
+++ b/squid/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po
index 81f4535c7b..47cc5001e2 100644
--- a/squid/locale/de/fusiondirectory.po
+++ b/squid/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po
index 92034d04fb..3e421158cf 100644
--- a/squid/locale/el_GR/fusiondirectory.po
+++ b/squid/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/squid/locale/en/fusiondirectory.po b/squid/locale/en/fusiondirectory.po
index dd474ceb60..b848260164 100644
--- a/squid/locale/en/fusiondirectory.po
+++ b/squid/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po
index 11227dd4ee..daac41fc95 100644
--- a/squid/locale/es/fusiondirectory.po
+++ b/squid/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po
index 91dae81cc3..3b6ea46796 100644
--- a/squid/locale/es_CO/fusiondirectory.po
+++ b/squid/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po
index 71ae410eb7..6b23b73c47 100644
--- a/squid/locale/es_VE/fusiondirectory.po
+++ b/squid/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po
index deece7227e..4c80d08fd8 100644
--- a/squid/locale/fa_IR/fusiondirectory.po
+++ b/squid/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po
index a1666d60db..8c2b5a8770 100644
--- a/squid/locale/fi_FI/fusiondirectory.po
+++ b/squid/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po
index 3ce1fdf1f4..868eec5d74 100644
--- a/squid/locale/fr/fusiondirectory.po
+++ b/squid/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po
index fe50f3064d..a9b0b6a6ef 100644
--- a/squid/locale/hu_HU/fusiondirectory.po
+++ b/squid/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po
index 5440ae2eda..500dccc935 100644
--- a/squid/locale/id/fusiondirectory.po
+++ b/squid/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po
index 8aa0988d71..734f6904e0 100644
--- a/squid/locale/it_IT/fusiondirectory.po
+++ b/squid/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/squid/locale/ja/fusiondirectory.po b/squid/locale/ja/fusiondirectory.po
index e62f9b2610..952192473e 100644
--- a/squid/locale/ja/fusiondirectory.po
+++ b/squid/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ko/fusiondirectory.po b/squid/locale/ko/fusiondirectory.po
index 423e048a5b..b34216a37c 100644
--- a/squid/locale/ko/fusiondirectory.po
+++ b/squid/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po
index e0489df428..5186e08b15 100644
--- a/squid/locale/lv/fusiondirectory.po
+++ b/squid/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po
index abacefc62c..d87cdcfa93 100644
--- a/squid/locale/nb/fusiondirectory.po
+++ b/squid/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po
index 0b7a440f0d..8234ea2f59 100644
--- a/squid/locale/nl/fusiondirectory.po
+++ b/squid/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po
index 3b000c4b4f..74c250cdcc 100644
--- a/squid/locale/pl/fusiondirectory.po
+++ b/squid/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po
index 469e3f0ee8..719e45a3b3 100644
--- a/squid/locale/pt/fusiondirectory.po
+++ b/squid/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po
index 89e8c41799..44942ca83a 100644
--- a/squid/locale/pt_BR/fusiondirectory.po
+++ b/squid/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po
index a29555b534..00035e3df7 100644
--- a/squid/locale/ru/fusiondirectory.po
+++ b/squid/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po
index 712ad559b6..571cb102df 100644
--- a/squid/locale/ru@petr1708/fusiondirectory.po
+++ b/squid/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po
index 8084484b7d..5693e4223b 100644
--- a/squid/locale/sv/fusiondirectory.po
+++ b/squid/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/squid/locale/tr_TR/fusiondirectory.po b/squid/locale/tr_TR/fusiondirectory.po
index ac7826ec98..8f1cda1222 100644
--- a/squid/locale/tr_TR/fusiondirectory.po
+++ b/squid/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po
index 235044b3e6..c8facb13ec 100644
--- a/squid/locale/ug/fusiondirectory.po
+++ b/squid/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po
index c18af219cb..587da4c627 100644
--- a/squid/locale/vi_VN/fusiondirectory.po
+++ b/squid/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po
index 9ae2f2a6fa..d7456a54c8 100644
--- a/squid/locale/zh/fusiondirectory.po
+++ b/squid/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/squid/locale/zh_TW/fusiondirectory.po b/squid/locale/zh_TW/fusiondirectory.po
index 52a8c282c9..480d0289f8 100644
--- a/squid/locale/zh_TW/fusiondirectory.po
+++ b/squid/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/af_ZA/fusiondirectory.po b/ssh/locale/af_ZA/fusiondirectory.po
index 267a6f261c..575cdce67c 100644
--- a/ssh/locale/af_ZA/fusiondirectory.po
+++ b/ssh/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po
index c0fccde244..896eb626d7 100644
--- a/ssh/locale/ar/fusiondirectory.po
+++ b/ssh/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po
index 99dae2b6d5..a599d4cfde 100644
--- a/ssh/locale/ca/fusiondirectory.po
+++ b/ssh/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po
index f07cb397d0..d7ddd6ecb9 100644
--- a/ssh/locale/cs_CZ/fusiondirectory.po
+++ b/ssh/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po
index a03a0f5aee..09d03968a8 100644
--- a/ssh/locale/de/fusiondirectory.po
+++ b/ssh/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po
index 53e5507631..f5ff390c6c 100644
--- a/ssh/locale/el_GR/fusiondirectory.po
+++ b/ssh/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ssh/locale/en/fusiondirectory.po b/ssh/locale/en/fusiondirectory.po
index faf62411e6..fa377c9722 100644
--- a/ssh/locale/en/fusiondirectory.po
+++ b/ssh/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,31 +17,31 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/ssh/class_sshAccount.inc:58
+#: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:58
+#: personal/ssh/class_sshAccount.inc:61
 msgid "Unknown public key format!"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:81
+#: personal/ssh/class_sshAccount.inc:84
 msgid "SSH Keys"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:87
+#: personal/ssh/class_sshAccount.inc:90
 msgid "SSH public keys for this user"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:104
+#: personal/ssh/class_sshAccount.inc:107
 msgid "SSH"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:105
+#: personal/ssh/class_sshAccount.inc:108
 msgid "Edit user's SSH public keys"
 msgstr ""
 
-#: personal/ssh/class_sshAccount.inc:127
+#: personal/ssh/class_sshAccount.inc:130
 #, php-format
 msgid "Error : there are several keys with fingerprint %s"
 msgstr ""
diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po
index f82b4b347b..48771d8fdc 100644
--- a/ssh/locale/es/fusiondirectory.po
+++ b/ssh/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po
index 3aa67d37a9..b66e986967 100644
--- a/ssh/locale/es_CO/fusiondirectory.po
+++ b/ssh/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po
index 91ae341b9e..34396af5a1 100644
--- a/ssh/locale/es_VE/fusiondirectory.po
+++ b/ssh/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po
index eaa3fd3191..2a0d2893e4 100644
--- a/ssh/locale/fa_IR/fusiondirectory.po
+++ b/ssh/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po
index d91a70c34e..b7c8b189c0 100644
--- a/ssh/locale/fi_FI/fusiondirectory.po
+++ b/ssh/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po
index bcb27c25db..7d0c8baf5f 100644
--- a/ssh/locale/fr/fusiondirectory.po
+++ b/ssh/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po
index dbdc5fe721..2d2c541b05 100644
--- a/ssh/locale/hu_HU/fusiondirectory.po
+++ b/ssh/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po
index c637242fda..365693a9ab 100644
--- a/ssh/locale/id/fusiondirectory.po
+++ b/ssh/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po
index f7f18f27c9..10659019de 100644
--- a/ssh/locale/it_IT/fusiondirectory.po
+++ b/ssh/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ssh/locale/ja/fusiondirectory.po b/ssh/locale/ja/fusiondirectory.po
index 9aa0ec011f..3e87461e62 100644
--- a/ssh/locale/ja/fusiondirectory.po
+++ b/ssh/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ko/fusiondirectory.po b/ssh/locale/ko/fusiondirectory.po
index 7a548475d9..d45e128f79 100644
--- a/ssh/locale/ko/fusiondirectory.po
+++ b/ssh/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po
index 7f3e2b361f..2223efc4ed 100644
--- a/ssh/locale/lv/fusiondirectory.po
+++ b/ssh/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po
index 084d8af92f..f64ec72a15 100644
--- a/ssh/locale/nb/fusiondirectory.po
+++ b/ssh/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po
index c6f052f1da..6fabb8ee50 100644
--- a/ssh/locale/nl/fusiondirectory.po
+++ b/ssh/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po
index 283912a0bd..2dcbe557ce 100644
--- a/ssh/locale/pl/fusiondirectory.po
+++ b/ssh/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po
index 4c77ca0fa4..35cfdab5b5 100644
--- a/ssh/locale/pt/fusiondirectory.po
+++ b/ssh/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po
index 39522b61e2..097d7aec50 100644
--- a/ssh/locale/pt_BR/fusiondirectory.po
+++ b/ssh/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po
index faf54a923e..f81ea971bb 100644
--- a/ssh/locale/ru/fusiondirectory.po
+++ b/ssh/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po
index a27ab7f17e..13f95f4e10 100644
--- a/ssh/locale/ru@petr1708/fusiondirectory.po
+++ b/ssh/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po
index e127c9ff39..96742280ef 100644
--- a/ssh/locale/sv/fusiondirectory.po
+++ b/ssh/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/tr_TR/fusiondirectory.po b/ssh/locale/tr_TR/fusiondirectory.po
index 8c304db763..60dfc8bf9b 100644
--- a/ssh/locale/tr_TR/fusiondirectory.po
+++ b/ssh/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po
index 781cf35217..8098e3bae3 100644
--- a/ssh/locale/ug/fusiondirectory.po
+++ b/ssh/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po
index 656b18aac7..a186c86946 100644
--- a/ssh/locale/vi_VN/fusiondirectory.po
+++ b/ssh/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po
index bae7d61d97..0858e24c17 100644
--- a/ssh/locale/zh/fusiondirectory.po
+++ b/ssh/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh_TW/fusiondirectory.po b/ssh/locale/zh_TW/fusiondirectory.po
index 5517a54cec..604944f413 100644
--- a/ssh/locale/zh_TW/fusiondirectory.po
+++ b/ssh/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/af_ZA/fusiondirectory.po b/subcontracting/locale/af_ZA/fusiondirectory.po
index 568d084d29..23e51d96eb 100644
--- a/subcontracting/locale/af_ZA/fusiondirectory.po
+++ b/subcontracting/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po
index 7226addf1b..23f3ce33c2 100644
--- a/subcontracting/locale/ar/fusiondirectory.po
+++ b/subcontracting/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po
index 0a8def202e..dd161cc1c1 100644
--- a/subcontracting/locale/ca/fusiondirectory.po
+++ b/subcontracting/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po
index 33b41e46c9..edf69cbd4c 100644
--- a/subcontracting/locale/cs_CZ/fusiondirectory.po
+++ b/subcontracting/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po
index 46a2ae22b3..faf59eea46 100644
--- a/subcontracting/locale/de/fusiondirectory.po
+++ b/subcontracting/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po
index bbe5b67253..183731a29e 100644
--- a/subcontracting/locale/el_GR/fusiondirectory.po
+++ b/subcontracting/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/subcontracting/locale/en/fusiondirectory.po b/subcontracting/locale/en/fusiondirectory.po
index c8f376cb78..76e84ff3f6 100644
--- a/subcontracting/locale/en/fusiondirectory.po
+++ b/subcontracting/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po
index a17708705b..ac685cc2ae 100644
--- a/subcontracting/locale/es/fusiondirectory.po
+++ b/subcontracting/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po
index 040988a3c8..0b1b260e8d 100644
--- a/subcontracting/locale/es_CO/fusiondirectory.po
+++ b/subcontracting/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po
index deccbbc027..5cf7933abd 100644
--- a/subcontracting/locale/es_VE/fusiondirectory.po
+++ b/subcontracting/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po
index 932853eb82..b0168d8684 100644
--- a/subcontracting/locale/fa_IR/fusiondirectory.po
+++ b/subcontracting/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po
index a080a02fac..f09c2fc9ac 100644
--- a/subcontracting/locale/fi_FI/fusiondirectory.po
+++ b/subcontracting/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po
index 6b9126711a..6b110c1072 100644
--- a/subcontracting/locale/fr/fusiondirectory.po
+++ b/subcontracting/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po
index ef76960302..f7b4f437c3 100644
--- a/subcontracting/locale/hu_HU/fusiondirectory.po
+++ b/subcontracting/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po
index 4943d6ba1f..1fbdc1604a 100644
--- a/subcontracting/locale/id/fusiondirectory.po
+++ b/subcontracting/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po
index c919038726..727da6deed 100644
--- a/subcontracting/locale/it_IT/fusiondirectory.po
+++ b/subcontracting/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/subcontracting/locale/ja/fusiondirectory.po b/subcontracting/locale/ja/fusiondirectory.po
index 361b411f2d..b35dba4e16 100644
--- a/subcontracting/locale/ja/fusiondirectory.po
+++ b/subcontracting/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ko/fusiondirectory.po b/subcontracting/locale/ko/fusiondirectory.po
index 7b0435cd3b..c115a36666 100644
--- a/subcontracting/locale/ko/fusiondirectory.po
+++ b/subcontracting/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po
index 42fc4a51c1..f723a60adf 100644
--- a/subcontracting/locale/lv/fusiondirectory.po
+++ b/subcontracting/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po
index 186143a731..024de881a5 100644
--- a/subcontracting/locale/nb/fusiondirectory.po
+++ b/subcontracting/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po
index 851117d240..c23472114b 100644
--- a/subcontracting/locale/nl/fusiondirectory.po
+++ b/subcontracting/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po
index 9a394c8a03..7c4223e752 100644
--- a/subcontracting/locale/pl/fusiondirectory.po
+++ b/subcontracting/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po
index 43869aee3b..a98bc879f8 100644
--- a/subcontracting/locale/pt/fusiondirectory.po
+++ b/subcontracting/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po
index 51f9d2aa06..bc15f1a651 100644
--- a/subcontracting/locale/pt_BR/fusiondirectory.po
+++ b/subcontracting/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po
index bcfee817ee..e08cf72fe6 100644
--- a/subcontracting/locale/ru/fusiondirectory.po
+++ b/subcontracting/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po
index 6aec32a0c9..fa43ca7f79 100644
--- a/subcontracting/locale/ru@petr1708/fusiondirectory.po
+++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po
index 9610e4021a..5560cfdb92 100644
--- a/subcontracting/locale/sv/fusiondirectory.po
+++ b/subcontracting/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/subcontracting/locale/tr_TR/fusiondirectory.po b/subcontracting/locale/tr_TR/fusiondirectory.po
index 54a002d889..9036783cd9 100644
--- a/subcontracting/locale/tr_TR/fusiondirectory.po
+++ b/subcontracting/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po
index 9962d521a9..56bb5e99f1 100644
--- a/subcontracting/locale/ug/fusiondirectory.po
+++ b/subcontracting/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po
index 74e5f83eb5..6d8fb83278 100644
--- a/subcontracting/locale/vi_VN/fusiondirectory.po
+++ b/subcontracting/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po
index 9ef065050e..a915d603c7 100644
--- a/subcontracting/locale/zh/fusiondirectory.po
+++ b/subcontracting/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/subcontracting/locale/zh_TW/fusiondirectory.po b/subcontracting/locale/zh_TW/fusiondirectory.po
index 1864526a70..b93daeb852 100644
--- a/subcontracting/locale/zh_TW/fusiondirectory.po
+++ b/subcontracting/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/af_ZA/fusiondirectory.po b/sudo/locale/af_ZA/fusiondirectory.po
index 1af851c899..4a79d670ae 100644
--- a/sudo/locale/af_ZA/fusiondirectory.po
+++ b/sudo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po
index 23258aa76a..732f04dda4 100644
--- a/sudo/locale/ar/fusiondirectory.po
+++ b/sudo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po
index faf8a4a4ad..e49efe0d76 100644
--- a/sudo/locale/ca/fusiondirectory.po
+++ b/sudo/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po
index 490976e420..4b1dc6cfb2 100644
--- a/sudo/locale/cs_CZ/fusiondirectory.po
+++ b/sudo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po
index a0b8d25db8..0b9dff1825 100644
--- a/sudo/locale/de/fusiondirectory.po
+++ b/sudo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po
index cd9e9acc5b..a70b5bab0c 100644
--- a/sudo/locale/el_GR/fusiondirectory.po
+++ b/sudo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sudo/locale/en/fusiondirectory.po b/sudo/locale/en/fusiondirectory.po
index 53e791290e..07bf20fafd 100644
--- a/sudo/locale/en/fusiondirectory.po
+++ b/sudo/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -25,8 +25,8 @@ msgstr ""
 msgid "FusionDirectory sudo plugin configuration"
 msgstr ""
 
-#: config/sudo/class_sudoConfig.inc:42 admin/sudo/class_sudoManagement.inc:32
-#: admin/sudo/class_sudoGeneric.inc:123
+#: config/sudo/class_sudoConfig.inc:42 admin/sudo/class_sudoGeneric.inc:124
+#: admin/sudo/class_sudoManagement.inc:32
 msgid "Sudo"
 msgstr ""
 
@@ -38,10 +38,6 @@ msgstr ""
 msgid "Branch in which sudoers will be stored"
 msgstr ""
 
-#: admin/sudo/class_sudoManagement.inc:33
-msgid "Sudo management"
-msgstr ""
-
 #: admin/sudo/class_sudoOption.inc:77
 msgid "Unknown option"
 msgstr ""
@@ -51,124 +47,433 @@ msgstr ""
 msgid "The sudo option '%s' is invalid!"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:273
+#: admin/sudo/class_sudoOption.inc:138
 #, php-format
 msgid "%s (%s)"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:476
+#: admin/sudo/class_sudoOption.inc:341
 msgid "Available options"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:479
+#: admin/sudo/class_sudoOption.inc:344
 msgid "Option"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:479
+#: admin/sudo/class_sudoOption.inc:344
 msgid "Add a new sudo option"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:484 admin/sudo/class_sudoOption.inc:486
+#: admin/sudo/class_sudoOption.inc:349 admin/sudo/class_sudoOption.inc:351
 msgid "Used sudo role options"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:553
+#: admin/sudo/class_sudoOption.inc:418
 msgid "Options"
 msgstr ""
 
-#: admin/sudo/class_sudoOption.inc:554
+#: admin/sudo/class_sudoOption.inc:419
 msgid "Sudo options"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:124 admin/sudo/class_sudoGeneric.inc:128
+#: admin/sudo/class_sudoGeneric.inc:125 admin/sudo/class_sudoGeneric.inc:129
 msgid "Sudo role"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:154
+#: admin/sudo/class_sudoGeneric.inc:155
 msgid "Role settings"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:160
+#: admin/sudo/class_sudoGeneric.inc:161
 msgid "Name"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:160
+#: admin/sudo/class_sudoGeneric.inc:161
 msgid "Name of the role"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:165
+#: admin/sudo/class_sudoGeneric.inc:166
 msgid "Description"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:165
+#: admin/sudo/class_sudoGeneric.inc:166
 msgid "Description for the new sudo role"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:170
+#: admin/sudo/class_sudoGeneric.inc:171
 msgid "Commands"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:171
+#: admin/sudo/class_sudoGeneric.inc:172
 msgid ""
 "A Unix command with optional command line arguments, potentially including "
 "globbing characters (aka wild cards)"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:177
+#: admin/sudo/class_sudoGeneric.inc:178
 msgid "Run as (user)"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:178
+#: admin/sudo/class_sudoGeneric.inc:179
 msgid "User(s) impersonated by sudo"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:185
+#: admin/sudo/class_sudoGeneric.inc:186
 msgid "Run as (group)"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:186
+#: admin/sudo/class_sudoGeneric.inc:187
 msgid "Group(s) impersonated by sudo"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:192
+#: admin/sudo/class_sudoGeneric.inc:193
 msgid "Systems"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:192
+#: admin/sudo/class_sudoGeneric.inc:193
 msgid "A host name, IP address or IP network"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:197
+#: admin/sudo/class_sudoGeneric.inc:198
 msgid "Users and groups"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:198
+#: admin/sudo/class_sudoGeneric.inc:199
 msgid ""
 "A user name, user ID (prefixed with '#'), Unix group (prefixed with '%')"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:202
+#: admin/sudo/class_sudoGeneric.inc:203
 msgid "Priority"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:202
+#: admin/sudo/class_sudoGeneric.inc:203
 msgid "This rule priority compared to others"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:207
+#: admin/sudo/class_sudoGeneric.inc:208
 msgid "Valid starting from"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:207
+#: admin/sudo/class_sudoGeneric.inc:208
 msgid ""
 "Start of time interval for which the entry is valid (leave empty to disable)"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:212
+#: admin/sudo/class_sudoGeneric.inc:213
 msgid "Valid until"
 msgstr ""
 
-#: admin/sudo/class_sudoGeneric.inc:212
+#: admin/sudo/class_sudoGeneric.inc:213
 msgid ""
 "End of time interval for which the entry is valid (leave empty to disable)"
 msgstr ""
+
+#: admin/sudo/class_sudoManagement.inc:33
+msgid "Sudo management"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:52
+msgid ""
+"When validating with a One Time Password (OTP) scheme such as S/Key or OPIE, "
+"a two-line prompt is used to make it easier to cut and paste the challenge "
+"to a local window"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:57
+msgid ""
+"If set, sudo will ignore '.' or '' (current dir) in the PATH environment "
+"variable"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:62
+msgid "Send mail to the mailto user every time a users runs sudo"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:67
+msgid ""
+"Send mail to the mailto user if the user running sudo does not enter the "
+"correct password"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:72
+msgid ""
+"If set, mail will be sent to the mailto user if the invoking user is not in "
+"the sudoers file"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:77
+msgid ""
+"If set, mail will be sent to the mailto user if the invoking user exists in "
+"the sudoers file, but is not allowed to run commands on the current host"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:82
+msgid ""
+"If set, mail will be sent to the mailto user if the invoking user is allowed "
+"to use sudo but not for this command"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:87
+msgid "If set, users must authenticate on a per-tty basis"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:92
+msgid ""
+"If set, users must authenticate themselves via a password (or other means of "
+"authentication)"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:97
+msgid "If set, root is allowed to run sudo too"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:102
+msgid "If set, the host name will be logged in the (non-syslog) sudo log file"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:107
+msgid ""
+"If set, the four-digit year will be logged in the (non-syslog) sudo log file"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:112
+msgid ""
+"If set and sudo is invoked with no arguments it acts as if the -s option had "
+"been given"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:117
+msgid ""
+"If enabled and sudo is invoked with the -s option the HOME environment "
+"variable will be set to the home directory of the target user (usually root)"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:122
+msgid ""
+"If enabled, sudo will set the HOME environment variable to the home "
+"directory of the target user (usually root)"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:127
+msgid ""
+"If the executable is simply not in the user's PATH, sudo will tell the user "
+"that they are not allowed to run it"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:132
+msgid "If set, the user's existing group vector is left unaltered"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:137
+msgid ""
+"Set this flag if you want to put fully qualified host names in the sudoers "
+"file"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:142
+msgid "If set, sudo will insult users when they enter an incorrect password"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:147
+msgid "If set, sudo will only run when the user is logged in to a real tty"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:152
+msgid ""
+"If set, visudo will use the value of the EDITOR or VISUAL environment "
+"variables before falling back on the default editor list"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:157
+msgid ""
+"If set, sudo will prompt for the root password instead of the password of "
+"the invoking user"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:162
+msgid ""
+"If set, sudo will prompt for the password of the user defined by the "
+"runas_default option (defaults to root) instead of the password of the "
+"invoking user"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:167
+msgid ""
+"If set, sudo will prompt for the password of the user specified by the -u "
+"option (defaults to root) instead of the password of the invoking user"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:172
+msgid ""
+"If set, sudo will set the LOGNAME environment variables to the name of the "
+"target user"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:182
+msgid ""
+"If set, sudo will run the command in a minimal environment containing the "
+"TERM, PATH, HOME, MAIL, SHELL, LOGNAME, USER, USERNAME and SUDO_ variables"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:187
+msgid ""
+"If set, sudo will apply the defaults specified for the target user's login "
+"class if one exists"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:192
+msgid ""
+"If set, all commands run via sudo will behave as if the NOEXEC tag has been "
+"set, unless overridden by a EXEC tag"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:197
+msgid "If set, parsing of /etc/sudoers file will be skipped."
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:202
+msgid ""
+"The number of tries a user gets to enter his/her password before sudo logs "
+"the failure and exits"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:207
+msgid "Number of characters per line for the file log"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:212
+msgid ""
+"Number of minutes that can elapse before sudo will ask for a passwd again"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:217
+msgid ""
+"Number of minutes before the sudo password prompt times out, or 0 for no "
+"timeout"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:222
+msgid ""
+"Umask to use when running the command. Set to FALSE to preserve the user's "
+"umask"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:227
+msgid ""
+"Subject of the mail sent to the mailto user. The escape %h will expand to "
+"the host name of the machine"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:232
+msgid "Message that is displayed if a user enters an incorrect password"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:237
+msgid "The directory in which sudo stores its timestamp files"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:242
+msgid "The owner of the timestamp directory and the timestamps stored therein"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:247
+msgid ""
+"The default prompt to use when asking for a password; can be overridden via "
+"the -p option or the SUDO_PROMPT environment variable"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:252
+msgid ""
+"The default user to run commands as if the -u option is not specified on the "
+"command line"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:257
+msgid "Syslog priority to use when user authenticates successfully"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:262
+msgid "Syslog priority to use when user authenticates unsuccessfully"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:267
+msgid "A colon separated list of editors allowed to be used with visudo"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:277
+msgid ""
+"Path used for every command run from sudo. If you don't trust the people "
+"running sudo to have a sane PATH environment variable you may want to use "
+"this."
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:282
+msgid ""
+"This option controls when a short lecture will be printed along with the "
+"password prompt"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:287
+msgid ""
+"Path to a file containing an alternate sudo lecture that will be used in "
+"place of the standard lecture"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:292
+msgid "Path to the sudo log file (not the syslog log file)"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:297
+msgid "Syslog facility if syslog is being used for logging"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:302
+msgid "Path to mail program used to send warning mail"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:307
+msgid "Flags to use when invoking mailer"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:312
+msgid "Address to send warning and error mail to"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:317
+msgid "Users in this group are exempt from password and PATH requirements"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:322
+msgid ""
+"This option controls when a password will be required when a user runs sudo "
+"with the -v option"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:327
+msgid ""
+"This option controls when a password will be required when a user runs sudo "
+"with the -l option"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:332 admin/sudo/class_sudoOptions.inc:347
+#: admin/sudo/class_sudoOptions.inc:362
+#, php-format
+msgid ""
+"Environment variables to be removed from the user's environment if the "
+"variable's value contains % or / characters"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:337 admin/sudo/class_sudoOptions.inc:352
+#: admin/sudo/class_sudoOptions.inc:367
+msgid ""
+"Environment variables to be removed from the user's environment when the "
+"env_reset option is not in effect"
+msgstr ""
+
+#: admin/sudo/class_sudoOptions.inc:342 admin/sudo/class_sudoOptions.inc:357
+#: admin/sudo/class_sudoOptions.inc:372
+msgid ""
+"Environment variables to be preserved in the user's environment when the "
+"env_reset option is in effect"
+msgstr ""
diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po
index 01f6b0abe4..aafafdf7bf 100644
--- a/sudo/locale/es/fusiondirectory.po
+++ b/sudo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po
index 07d3a4de92..016597c29d 100644
--- a/sudo/locale/es_CO/fusiondirectory.po
+++ b/sudo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po
index 14fb69b7d6..f032ef6d65 100644
--- a/sudo/locale/es_VE/fusiondirectory.po
+++ b/sudo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po
index 8640019e4a..1e87d9db85 100644
--- a/sudo/locale/fa_IR/fusiondirectory.po
+++ b/sudo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po
index cec9d353c8..2d7665ffd6 100644
--- a/sudo/locale/fi_FI/fusiondirectory.po
+++ b/sudo/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po
index 555030489a..26050c31d6 100644
--- a/sudo/locale/fr/fusiondirectory.po
+++ b/sudo/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po
index eda7d2018f..135fc5dfd6 100644
--- a/sudo/locale/hu_HU/fusiondirectory.po
+++ b/sudo/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po
index ef76007bf9..3b27f42649 100644
--- a/sudo/locale/id/fusiondirectory.po
+++ b/sudo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index a84a66b9f6..204cd2b8e4 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sudo/locale/ja/fusiondirectory.po b/sudo/locale/ja/fusiondirectory.po
index fa5b8d98e4..d1c393befd 100644
--- a/sudo/locale/ja/fusiondirectory.po
+++ b/sudo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ko/fusiondirectory.po b/sudo/locale/ko/fusiondirectory.po
index e66e0607a1..a48363e0b6 100644
--- a/sudo/locale/ko/fusiondirectory.po
+++ b/sudo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po
index 7d3b77a3b0..8369717b27 100644
--- a/sudo/locale/lv/fusiondirectory.po
+++ b/sudo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po
index 3ea10a9d31..2787eca9a5 100644
--- a/sudo/locale/nb/fusiondirectory.po
+++ b/sudo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po
index c77c7e00ee..6ccd03050c 100644
--- a/sudo/locale/nl/fusiondirectory.po
+++ b/sudo/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po
index aa68747808..c719cd1857 100644
--- a/sudo/locale/pl/fusiondirectory.po
+++ b/sudo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po
index 0cdfa354d2..b763d51aca 100644
--- a/sudo/locale/pt/fusiondirectory.po
+++ b/sudo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po
index 69187f17c3..cc49e66696 100644
--- a/sudo/locale/pt_BR/fusiondirectory.po
+++ b/sudo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po
index cffba12104..865bed5682 100644
--- a/sudo/locale/ru/fusiondirectory.po
+++ b/sudo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po
index f6e80b9e92..08ead5ed93 100644
--- a/sudo/locale/ru@petr1708/fusiondirectory.po
+++ b/sudo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po
index 2cf4d92f54..17c413c310 100644
--- a/sudo/locale/sv/fusiondirectory.po
+++ b/sudo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sudo/locale/tr_TR/fusiondirectory.po b/sudo/locale/tr_TR/fusiondirectory.po
index e6d7c84b87..93c3f66027 100644
--- a/sudo/locale/tr_TR/fusiondirectory.po
+++ b/sudo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po
index 183e00fa3c..23ca388ca4 100644
--- a/sudo/locale/ug/fusiondirectory.po
+++ b/sudo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po
index 5ffe56c426..42f366705b 100644
--- a/sudo/locale/vi_VN/fusiondirectory.po
+++ b/sudo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po
index ceff83560f..6524fde010 100644
--- a/sudo/locale/zh/fusiondirectory.po
+++ b/sudo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sudo/locale/zh_TW/fusiondirectory.po b/sudo/locale/zh_TW/fusiondirectory.po
index a2609b2d11..5df6e4cbee 100644
--- a/sudo/locale/zh_TW/fusiondirectory.po
+++ b/sudo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann-ext/locale/en/fusiondirectory.po b/supann-ext/locale/en/fusiondirectory.po
index 34127ebd39..d970d8f2b8 100644
--- a/supann-ext/locale/en/fusiondirectory.po
+++ b/supann-ext/locale/en/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2018-06-25 10:51+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -64,3 +64,7 @@ msgstr ""
 #: admin/supannStructures/class_supannStructureExt.inc:82
 msgid "Entity"
 msgstr ""
+
+#: admin/supannStructures/class_supannStructureExt.inc:136
+msgid "Start date must be smaller than end date"
+msgstr ""
diff --git a/supann/locale/af_ZA/fusiondirectory.po b/supann/locale/af_ZA/fusiondirectory.po
index 1179e5db13..9468155832 100644
--- a/supann/locale/af_ZA/fusiondirectory.po
+++ b/supann/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po
index e99a22a7f3..f10761d5a4 100644
--- a/supann/locale/ar/fusiondirectory.po
+++ b/supann/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po
index 1397d467a7..8f566e25c3 100644
--- a/supann/locale/ca/fusiondirectory.po
+++ b/supann/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po
index 1d342e526b..41c3e91c1c 100644
--- a/supann/locale/cs_CZ/fusiondirectory.po
+++ b/supann/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po
index ec69cf0d5c..26d291fafc 100644
--- a/supann/locale/de/fusiondirectory.po
+++ b/supann/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po
index e67e4d67b5..a2f04cbfa3 100644
--- a/supann/locale/el_GR/fusiondirectory.po
+++ b/supann/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/supann/locale/en/fusiondirectory.po b/supann/locale/en/fusiondirectory.po
index 873e4e574c..5e7e633fe6 100644
--- a/supann/locale/en/fusiondirectory.po
+++ b/supann/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -17,630 +17,650 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: personal/supann/class_supannAccount.inc:36
-#: personal/supann/class_supannAccount.inc:111
-msgid "None"
+#: config/supann/class_supannConfig.inc:28
+msgid "SupAnn configuration"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:108
-msgid "Licence"
+#: config/supann/class_supannConfig.inc:29
+msgid "FusionDirectory SupAnn plugin configuration"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:108
-msgid "Master"
+#: config/supann/class_supannConfig.inc:41
+#: personal/supann/class_supannAccount.inc:224
+msgid "SupAnn"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:108
-msgid "Ph.D."
+#: config/supann/class_supannConfig.inc:44
+msgid "SupAnn RDN"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:108
-msgid "Another class of degree"
+#: config/supann/class_supannConfig.inc:44
+msgid "Branch in which SupAnn structures will be stored"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:108
-msgid "post-graduate year"
+#: config/supann/class_supannConfig.inc:49
+msgid "SupAnn mail for recovery"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:111
-msgid "1st year"
+#: config/supann/class_supannConfig.inc:49
+msgid ""
+"Allow the use of mail addresses from the personal mail address field from "
+"SupAnn account for password recovery"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:111
-msgid "2nd year"
+#: admin/supannStructures/class_etablissement.inc:32
+#: personal/supann/class_supannAccount.inc:335
+#: personal/supann/class_supannAccount.inc:374
+msgid "Establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:111
-msgid "3rd year"
+#: admin/supannStructures/class_etablissement.inc:33
+msgid "SupAnn Establishment Settings"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:112
-msgid "4th year"
+#: admin/supannStructures/class_etablissement.inc:35
+msgid "SupAnn Establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:112
-msgid "5th year"
+#: admin/supannStructures/class_etablissement.inc:52
+msgid "Properties"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:112
-msgid "6th year"
+#: admin/supannStructures/class_etablissement.inc:55
+msgid "Root establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:113
-msgid "7th year"
+#: admin/supannStructures/class_etablissement.inc:55
+msgid "Set this establishment as the root one"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:113
-msgid "8th year"
+#: admin/supannStructures/class_etablissement.inc:59
+#: admin/supannStructures/class_entite.inc:55
+msgid "Name"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:113
-msgid "9th year"
+#: admin/supannStructures/class_etablissement.inc:59
+msgid "The name to write in the o attribute for this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:216
-msgid "SupAnn"
+#: admin/supannStructures/class_etablissement.inc:63
+#: admin/supannStructures/class_entite.inc:59
+msgid "Description"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:217
-msgid "SupAnn information management plugin"
+#: admin/supannStructures/class_etablissement.inc:63
+msgid "A short description of this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:234
-msgid "Identity"
+#: admin/supannStructures/class_etablissement.inc:69
+#: admin/supannStructures/class_etablissement.inc:72
+msgid "Location"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:237
-msgid "Civilite"
+#: admin/supannStructures/class_etablissement.inc:72
+msgid "Usually the city where this establishment is"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:237
-msgid "supannCivilite - Civility for this person"
+#: admin/supannStructures/class_etablissement.inc:76
+msgid "Address"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:242
-msgid "Alias login"
+#: admin/supannStructures/class_etablissement.inc:76
+msgid "The postal address of this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:242
-msgid "supannAliasLogin - An alias for the login of this user"
+#: admin/supannStructures/class_etablissement.inc:80
+#: admin/supannStructures/class_entite.inc:68
+msgid "Telephone"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:246
-msgid "eduPersonPrincipalName"
+#: admin/supannStructures/class_etablissement.inc:80
+msgid "Phone number of this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:246
-msgid ""
-"eduPersonPrincipalName - A name that look like <id>@<domain> which is unique "
-"for this domain, and has not be assigned to anyone else recently"
+#: admin/supannStructures/class_etablissement.inc:84
+#: admin/supannStructures/class_entite.inc:72
+msgid "Fax"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:250
-msgid "Nick name"
+#: admin/supannStructures/class_etablissement.inc:84
+msgid "Fax number of this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:250
-msgid "eduPersonNickname - Can contain a nick name for this user"
+#: admin/supannStructures/class_etablissement.inc:90
+msgid "SupAnn properties"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:255
-msgid "Ref ids"
+#: admin/supannStructures/class_etablissement.inc:93
+msgid "Establishment code"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:255
-msgid "supannRefId - IDs/links for this user on other systems"
+#: admin/supannStructures/class_etablissement.inc:93
+msgid "The code of this establishment (must have a prefix between {})"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:265
-msgid "Contact"
+#: admin/supannStructures/class_etablissement.inc:98
+msgid "Establishment type"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:269
-msgid "Other phone numbers"
+#: admin/supannStructures/class_etablissement.inc:98
+msgid "The SupAnn type that best fits this Establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:269
-msgid "supannAutreTelephone - Other phone numbers for this user"
+#: admin/supannStructures/class_etablissement.inc:102
+msgid "SupAnn code"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:275
-msgid "Other mail addresses"
+#: admin/supannStructures/class_etablissement.inc:102
+msgid "The SupAnn code for this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:275
-msgid ""
-"supannAutreMail - Other mail addresses for this user. Each must be unique"
+#: admin/supannStructures/class_etablissement.inc:108
+#: admin/supannStructures/class_entite.inc:95
+msgid "Parent entities"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:281
-msgid "Personal mail addresses"
+#: admin/supannStructures/class_etablissement.inc:108
+#: admin/supannStructures/class_entite.inc:95
+msgid "The parent entities of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:281
-msgid "supannMailPerso - Personal mail addresses for this user"
+#: admin/supannStructures/class_etablissement.inc:114
+#: admin/supannStructures/class_entite.inc:101
+msgid "Reference IDs"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:286
-msgid "red List"
+#: admin/supannStructures/class_etablissement.inc:114
+#: admin/supannStructures/class_entite.inc:101
+msgid "supannRefId - IDs/links for this entity on other systems"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:286
-msgid "supannListeRouge - Should this person be on the red list"
+#: admin/supannStructures/class_etablissement.inc:122
+msgid "Legal name"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:292
-msgid "Affectation"
+#: admin/supannStructures/class_etablissement.inc:122
+msgid "The legal name of this establishment"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:295
-msgid "Entity primary assignment"
+#: admin/supannStructures/class_etablissement.inc:126
+msgid "Home page URI"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:295
-msgid "supannEntiteAffectationPrincipale - Main assignment of the person"
+#: admin/supannStructures/class_etablissement.inc:126
+msgid "The URI of this establishment website home page"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:300
-#: personal/supann/class_supannAccount.inc:391
-#: personal/supann/class_supannAccount.inc:455
-msgid "Entity assignment"
+#: admin/supannStructures/class_etablissement.inc:130
+msgid "Institution URI"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:300
-#: personal/supann/class_supannAccount.inc:455
-msgid ""
-"supannEntiteAffectation - represents assignments of the person in an "
-"institution, a component, service, etc."
+#: admin/supannStructures/class_etablissement.inc:130
+msgid "The URI of this establishment institution website"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:306
-msgid "Entity type assignment"
+#: admin/supannStructures/class_etablissement.inc:134
+msgid "White pages URI"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:306
-#: personal/supann/class_supannAccount.inc:451
-msgid "supannTypeEntiteAffectation"
+#: admin/supannStructures/class_etablissement.inc:134
+msgid "The URI of this establishment white pages"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:313
-msgid "Affiliation"
+#: admin/supannStructures/class_etablissement.inc:186
+#: admin/supannStructures/class_etablissement.inc:259
+msgid "LDAP error"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:316
-msgid "Primary affiliation"
+#: admin/supannStructures/class_supannStructuresManagement.inc:35
+msgid "SupAnn structures"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:316
-msgid "eduPersonPrimaryAffiliation - Main status of the person"
+#: admin/supannStructures/class_supannStructuresManagement.inc:36
+msgid "SupAnn structures management"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:321
-msgid "Affiliations"
+#: admin/supannStructures/class_entite.inc:32
+#: admin/supannStructures/class_entite.inc:52
+#: personal/supann/class_supannAccount.inc:463
+msgid "Entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:321
-msgid ""
-"eduPersonAffiliation - status of the person: student, BIATOSS, teacher, "
-"contract, retired, hosted staff (CNRS, INSERM, etc.), a former student, etc."
+#: admin/supannStructures/class_entite.inc:33
+msgid "SupAnn Entity Settings"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:327
-#: personal/supann/class_supannAccount.inc:366
-#: admin/supannStructures/class_etablissement.inc:31
-msgid "Establishment"
+#: admin/supannStructures/class_entite.inc:35
+msgid "SupAnn Entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:327
-msgid ""
-"supannEtablissement - institution or unit of administrative attachment of "
-"the person"
+#: admin/supannStructures/class_entite.inc:55
+msgid "The name to write in the ou attribute for this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:334
-msgid "Student profile"
+#: admin/supannStructures/class_entite.inc:59
+msgid "Short description of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:337
-msgid "INE code"
+#: admin/supannStructures/class_entite.inc:65
+msgid "Administrative information"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:337
-msgid "supannCodeINE - INE code of this student"
+#: admin/supannStructures/class_entite.inc:68
+msgid "Phone number of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:341
-msgid "Student ID"
+#: admin/supannStructures/class_entite.inc:72
+msgid "Fax number of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:341
-msgid "supannEtuId - Scolarity id"
+#: admin/supannStructures/class_entite.inc:76
+msgid "Postal address"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:347
-msgid "Student subscriptions"
+#: admin/supannStructures/class_entite.inc:76
+msgid "Postal address of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:362
-msgid "supannEtuInscription - Subscriptions for this student"
+#: admin/supannStructures/class_entite.inc:82
+msgid "SupAnn information"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:366
-msgid "supannEtablissement - Etablissement in which this subscription was done"
+#: admin/supannStructures/class_entite.inc:85
+#: personal/supann/class_supannAccount.inc:459
+msgid "Entity type"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:370
-msgid "Year"
+#: admin/supannStructures/class_entite.inc:85
+msgid "The SupAnn type that best fits this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:370
-msgid "supannEtuAnneeInscription - The year this subscription will begin"
+#: admin/supannStructures/class_entite.inc:89
+msgid "Entity code"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:375
-msgid "Subscription type"
+#: admin/supannStructures/class_entite.inc:89
+msgid "The SupAnn code of this entity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:375
-msgid "supannEtuRegimeInscription - The type of this subscription"
+#: admin/supannStructures/class_supann.inc:53
+msgid "File error"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:379
-msgid "Disciplinary Sector"
+#: admin/supannStructures/class_supann.inc:54
+#, php-format
+msgid "Cannot read file: '%s'"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:379
-msgid "supannEtuSecteurDisciplinaire - Disciplinary sector education diploma"
+#: personal/supann/class_supannAccount.inc:36
+#: personal/supann/class_supannAccount.inc:119
+msgid "None"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:383
-msgid "Diploma type"
+#: personal/supann/class_supannAccount.inc:116
+msgid "Licence"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:383
-msgid "supannEtuTypeDiplome - Type of diploma"
+#: personal/supann/class_supannAccount.inc:116
+msgid "Master"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:387
-msgid "Curriculum year "
+#: personal/supann/class_supannAccount.inc:116
+msgid "Ph.D."
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:387
-msgid ""
-"supannEtuCursusAnnee - type of curriculum (L, M, D or X, ...) and the year "
-"in the diploma."
+#: personal/supann/class_supannAccount.inc:116
+msgid "Another class of degree"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:391
-msgid "supannEntiteAffectation_affect"
+#: personal/supann/class_supannAccount.inc:116
+msgid "Post-graduate year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:395
-msgid "Diploma"
+#: personal/supann/class_supannAccount.inc:119
+msgid "1st year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:395
-msgid "supannEtuDiplome - Diploma prepared by the student"
+#: personal/supann/class_supannAccount.inc:119
+msgid "2nd year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:399
-msgid "Step"
+#: personal/supann/class_supannAccount.inc:119
+msgid "3rd year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:399
-msgid ""
-"supannEtuEtape - Step can be considered a split (semester, year, etc.) in "
-"time of education leading to a diploma"
+#: personal/supann/class_supannAccount.inc:120
+msgid "4th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:403
-msgid "educational element"
+#: personal/supann/class_supannAccount.inc:120
+msgid "5th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:403
-msgid ""
-"supannEtuElementPedagogique - Generic description of the content of "
-"education with a high level of granularity"
+#: personal/supann/class_supannAccount.inc:120
+msgid "6th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:417
-msgid "Personal profile"
+#: personal/supann/class_supannAccount.inc:121
+msgid "7th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:420
-msgid "Personal ID"
+#: personal/supann/class_supannAccount.inc:121
+msgid "8th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:420
-msgid "supannEmpId - Employee identifier"
+#: personal/supann/class_supannAccount.inc:121
+msgid "9th year"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:424
-msgid "Personal corps"
+#: personal/supann/class_supannAccount.inc:225
+msgid "SupAnn information management plugin"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:424
-msgid "supannEmpCorps"
+#: personal/supann/class_supannAccount.inc:242
+msgid "Identity"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:429
-msgid "Activity"
+#: personal/supann/class_supannAccount.inc:245
+msgid "Civilite"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:429
-msgid "supannActivite - category of profession"
+#: personal/supann/class_supannAccount.inc:245
+msgid "supannCivilite - Civility for this person"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:436
-msgid "Roles"
+#: personal/supann/class_supannAccount.inc:250
+msgid "Alias login"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:443
-msgid "supannRoleEntite"
+#: personal/supann/class_supannAccount.inc:250
+msgid "supannAliasLogin - An alias for the login of this user"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:447
-msgid "Generic role"
+#: personal/supann/class_supannAccount.inc:254
+msgid "eduPersonPrincipalName"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:447
-msgid "supannRoleGenerique - Generics Roles of the person in the facility"
+#: personal/supann/class_supannAccount.inc:254
+msgid ""
+"eduPersonPrincipalName - A name that looks like <id>@<domain> which is "
+"unique for this domain, and has not be assigned to anyone else recently"
 msgstr ""
 
-#: personal/supann/class_supannAccount.inc:451
-msgid "Entity assignment type"
+#: personal/supann/class_supannAccount.inc:258
+msgid "Nickname"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:28
-msgid "SUPANN configuration"
+#: personal/supann/class_supannAccount.inc:258
+msgid "eduPersonNickname - Can contain a nickname for this user"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:29
-msgid "FusionDirectory SUPANN plugin configuration"
+#: personal/supann/class_supannAccount.inc:263
+msgid "Ref ids"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:41
-msgid "SUPANN"
+#: personal/supann/class_supannAccount.inc:263
+msgid "supannRefId - IDs/links for this user on other systems"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:44
-msgid "SUPANN RDN"
+#: personal/supann/class_supannAccount.inc:273
+msgid "Contact"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:44
-msgid "Branch in which SUPANN structures will be stored"
+#: personal/supann/class_supannAccount.inc:277
+msgid "Other phone numbers"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:49
-msgid "SUPANN mail for recovery"
+#: personal/supann/class_supannAccount.inc:277
+msgid "supannAutreTelephone - Other phone numbers for this user"
 msgstr ""
 
-#: config/supann/class_supannConfig.inc:49
+#: personal/supann/class_supannAccount.inc:283
+msgid "Other mail addresses"
+msgstr ""
+
+#: personal/supann/class_supannAccount.inc:283
 msgid ""
-"Allow the use of mail addresses from the personal mail address field from "
-"SUPANN account for password recovery"
+"supannAutreMail - Other mail addresses for this user. Each must be unique"
 msgstr ""
 
-#: admin/supannStructures/class_supannStructuresManagement.inc:35
-msgid "Supann structures"
+#: personal/supann/class_supannAccount.inc:289
+msgid "Personal mail addresses"
 msgstr ""
 
-#: admin/supannStructures/class_supannStructuresManagement.inc:36
-msgid "Supann structures management"
+#: personal/supann/class_supannAccount.inc:289
+msgid "supannMailPerso - Personal mail addresses for this user"
 msgstr ""
 
-#: admin/supannStructures/class_supann.inc:53
-msgid "File error"
+#: personal/supann/class_supannAccount.inc:294
+msgid "Red list"
 msgstr ""
 
-#: admin/supannStructures/class_supann.inc:54
-#, php-format
-msgid "Cannot read file: '%s'"
+#: personal/supann/class_supannAccount.inc:294
+msgid "supannListeRouge - Should this person be on the red list"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:32
-msgid "SUPANN Establishment Settings"
+#: personal/supann/class_supannAccount.inc:300
+msgid "Assignment"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:35
-msgid "SUPANN Establishment"
+#: personal/supann/class_supannAccount.inc:303
+msgid "Primary assignment"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:52
-msgid "Properties"
+#: personal/supann/class_supannAccount.inc:303
+msgid "supannEntiteAffectationPrincipale - Main assignment of the person"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:55
-msgid "Root Establishment"
+#: personal/supann/class_supannAccount.inc:308
+msgid "Assignments"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:55
-msgid "Set this Establishment as the root one"
+#: personal/supann/class_supannAccount.inc:308
+#: personal/supann/class_supannAccount.inc:463
+msgid ""
+"supannEntiteAffectation - Represents assignments of the person in an "
+"institution, a component, service, etc."
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:59
-#: admin/supannStructures/class_entite.inc:55
-msgid "Name"
+#: personal/supann/class_supannAccount.inc:314
+msgid "Entity types"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:59
-msgid "The name to write in the o attribute for this Establishment"
+#: personal/supann/class_supannAccount.inc:314
+msgid ""
+"supannTypeEntiteAffectation - Types of the entities this person is assigned "
+"to"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:63
-#: admin/supannStructures/class_entite.inc:76
-msgid "Description"
+#: personal/supann/class_supannAccount.inc:321
+msgid "Affiliation"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:63
-msgid "A short description of this Establishment"
+#: personal/supann/class_supannAccount.inc:324
+msgid "Primary affiliation"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:69
-#: admin/supannStructures/class_etablissement.inc:72
-msgid "Location"
+#: personal/supann/class_supannAccount.inc:324
+msgid "eduPersonPrimaryAffiliation - Main status of the person"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:72
-msgid "Usually the city where this Establishment is"
+#: personal/supann/class_supannAccount.inc:329
+msgid "Affiliations"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:76
-msgid "Address"
+#: personal/supann/class_supannAccount.inc:329
+msgid ""
+"eduPersonAffiliation - Status of the person: student, BIATOSS, teacher, "
+"contract, retired, hosted staff (CNRS, INSERM, etc.), a former student, etc."
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:76
-msgid "The postal address of this Establishment"
+#: personal/supann/class_supannAccount.inc:335
+msgid ""
+"supannEtablissement - Institution or unit of administrative attachment of "
+"the person"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:80
-#: admin/supannStructures/class_entite.inc:64
-msgid "Telephone"
+#: personal/supann/class_supannAccount.inc:342
+msgid "Student profile"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:80
-msgid "Phone number for this Establishment"
+#: personal/supann/class_supannAccount.inc:345
+msgid "INE code"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:84
-#: admin/supannStructures/class_entite.inc:68
-msgid "Fax"
+#: personal/supann/class_supannAccount.inc:345
+msgid "supannCodeINE - INE code of this student"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:84
-msgid "Fax number for this Establishment"
+#: personal/supann/class_supannAccount.inc:349
+msgid "Student ID"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:90
-msgid "SUPANN properties"
+#: personal/supann/class_supannAccount.inc:349
+msgid "supannEtuId - Scolarity id"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:93
-msgid "Establishment code"
+#: personal/supann/class_supannAccount.inc:355
+msgid "Student registrations"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:93
-msgid "The code of this Establishment (must have a prefix between {})"
+#: personal/supann/class_supannAccount.inc:370
+msgid "supannEtuInscription - Registrations for this student"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:98
-msgid "SUPANN code"
+#: personal/supann/class_supannAccount.inc:374
+msgid "supannEtablissement - Etablissement in which this registration was done"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:98
-msgid "The SUPANN code for this Establishment"
+#: personal/supann/class_supannAccount.inc:378
+msgid "Year"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:103
-msgid "Legal name"
+#: personal/supann/class_supannAccount.inc:378
+msgid "supannEtuAnneeInscription - The year this registration will begin"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:103
-msgid "The legal name of this Establishment"
+#: personal/supann/class_supannAccount.inc:383
+msgid "Registration type"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:107
-msgid "Home page URI"
+#: personal/supann/class_supannAccount.inc:383
+msgid "supannEtuRegimeInscription - The type of this registration"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:107
-msgid "The URI of this Establishment website home page"
+#: personal/supann/class_supannAccount.inc:387
+msgid "Disciplinary Sector"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:111
-msgid "Institution URI"
+#: personal/supann/class_supannAccount.inc:387
+msgid "supannEtuSecteurDisciplinaire - Disciplinary sector education diploma"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:111
-msgid "The URI of this Establishment institution website"
+#: personal/supann/class_supannAccount.inc:391
+msgid "Diploma type"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:115
-msgid "White pages URI"
+#: personal/supann/class_supannAccount.inc:391
+msgid "supannEtuTypeDiplome - Type of diploma"
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:115
-msgid "The URI of this Establishment white pages"
+#: personal/supann/class_supannAccount.inc:395
+msgid "Curriculum year "
 msgstr ""
 
-#: admin/supannStructures/class_etablissement.inc:152
-#: admin/supannStructures/class_etablissement.inc:218
-msgid "LDAP error"
+#: personal/supann/class_supannAccount.inc:395
+msgid ""
+"supannEtuCursusAnnee - Type of curriculum (L, M, D or X, ...) and the year "
+"in the diploma."
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:31
-#: admin/supannStructures/class_entite.inc:52
-msgid "Entity"
+#: personal/supann/class_supannAccount.inc:399
+msgid "Entity assignment"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:32
-msgid "SUPANN Entity Settings"
+#: personal/supann/class_supannAccount.inc:399
+msgid "supannEntiteAffectation - To wich entities does this user belong to"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:35
-msgid "SUPANN Entity"
+#: personal/supann/class_supannAccount.inc:403
+msgid "Diploma"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:55
-msgid "The name to write in the ou attribute for this entity"
+#: personal/supann/class_supannAccount.inc:403
+msgid "supannEtuDiplome - Diploma prepared by the student"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:61
-msgid "Administrative information"
+#: personal/supann/class_supannAccount.inc:407
+msgid "Step"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:64
-msgid "Phone number for this entity"
+#: personal/supann/class_supannAccount.inc:407
+msgid ""
+"supannEtuEtape - Step can be considered a split (semester, year, etc.) in "
+"time of education leading to a diploma"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:68
-msgid "Fax number for this entity"
+#: personal/supann/class_supannAccount.inc:411
+msgid "educational element"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:72
-msgid "Postal address"
+#: personal/supann/class_supannAccount.inc:411
+msgid ""
+"supannEtuElementPedagogique - Generic description of the content of "
+"education with a high level of granularity"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:72
-msgid "Postal address of this entity"
+#: personal/supann/class_supannAccount.inc:425
+msgid "Personal profile"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:76
-msgid "Short description of this entity"
+#: personal/supann/class_supannAccount.inc:428
+msgid "Personal ID"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:82
-msgid "SUPANN information"
+#: personal/supann/class_supannAccount.inc:428
+msgid "supannEmpId - Employee identifier"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:85
-msgid "Entity type"
+#: personal/supann/class_supannAccount.inc:432
+msgid "Personal corps"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:85
-msgid "The best SUPANN type that fits this entity"
+#: personal/supann/class_supannAccount.inc:432
+msgid "supannEmpCorps"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:89
-msgid "Entity code"
+#: personal/supann/class_supannAccount.inc:437
+msgid "Activity"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:89
-msgid "The SUPANN code of this entity"
+#: personal/supann/class_supannAccount.inc:437
+msgid "supannActivite - Category of profession"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:94
-msgid "Parent entity"
+#: personal/supann/class_supannAccount.inc:444
+msgid "Roles"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:94
-msgid "The parent entity of this entity"
+#: personal/supann/class_supannAccount.inc:451
+msgid "supannRoleEntite"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:98
-msgid "Reference ID"
+#: personal/supann/class_supannAccount.inc:455
+msgid "Generic role"
 msgstr ""
 
-#: admin/supannStructures/class_entite.inc:98
-msgid "SUPANN reference ID of this entity"
+#: personal/supann/class_supannAccount.inc:455
+msgid "supannRoleGenerique - Generic role of the person in the facility"
+msgstr ""
+
+#: personal/supann/class_supannAccount.inc:459
+msgid "supannTypeEntiteAffectation - type of the assigned entity"
+msgstr ""
+
+#: personal/supann/class_supannAccount.inc:569
+msgid ""
+"\"member\" and \"affiliate\" values are incompatible for "
+"eduPersonAffiliation. Please remove one of them."
 msgstr ""
diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po
index 34a15433ed..b206ea3651 100644
--- a/supann/locale/es/fusiondirectory.po
+++ b/supann/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po
index 066194c9c6..6dbfbf9c4c 100644
--- a/supann/locale/es_CO/fusiondirectory.po
+++ b/supann/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po
index 7a9d6e63f5..d649dc06d5 100644
--- a/supann/locale/es_VE/fusiondirectory.po
+++ b/supann/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po
index 9812db1270..7fc890169b 100644
--- a/supann/locale/fa_IR/fusiondirectory.po
+++ b/supann/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po
index 4d5536a7b2..fbbb3a2845 100644
--- a/supann/locale/fi_FI/fusiondirectory.po
+++ b/supann/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po
index 461815dcd5..2563a0f3bb 100644
--- a/supann/locale/fr/fusiondirectory.po
+++ b/supann/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po
index 89eb11f5da..ef9e32ecaf 100644
--- a/supann/locale/hu_HU/fusiondirectory.po
+++ b/supann/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po
index b9560e22c8..ee18c442c2 100644
--- a/supann/locale/id/fusiondirectory.po
+++ b/supann/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index c1e849b51a..07b06a116e 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/supann/locale/ja/fusiondirectory.po b/supann/locale/ja/fusiondirectory.po
index 9fbb69ef8a..569bff78c0 100644
--- a/supann/locale/ja/fusiondirectory.po
+++ b/supann/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ko/fusiondirectory.po b/supann/locale/ko/fusiondirectory.po
index e2309024a6..6c3ce712b1 100644
--- a/supann/locale/ko/fusiondirectory.po
+++ b/supann/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2019
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -141,16 +141,16 @@ msgstr ""
 #: admin/supannStructures/class_etablissement.inc:114
 #: admin/supannStructures/class_entite.inc:101
 msgid "Reference IDs"
-msgstr ""
+msgstr "참조 ID"
 
 #: admin/supannStructures/class_etablissement.inc:114
 #: admin/supannStructures/class_entite.inc:101
 msgid "supannRefId - IDs/links for this entity on other systems"
-msgstr ""
+msgstr "supannRefId - 다른 시스템에서 이 엔티티에 대한 ID / 링크"
 
 #: admin/supannStructures/class_etablissement.inc:122
 msgid "Legal name"
-msgstr ""
+msgstr "법적 이름"
 
 #: admin/supannStructures/class_etablissement.inc:122
 msgid "The legal name of this establishment"
@@ -158,7 +158,7 @@ msgstr ""
 
 #: admin/supannStructures/class_etablissement.inc:126
 msgid "Home page URI"
-msgstr ""
+msgstr "홈페이지 URI"
 
 #: admin/supannStructures/class_etablissement.inc:126
 msgid "The URI of this establishment website home page"
@@ -166,7 +166,7 @@ msgstr ""
 
 #: admin/supannStructures/class_etablissement.inc:130
 msgid "Institution URI"
-msgstr ""
+msgstr "기관 URI"
 
 #: admin/supannStructures/class_etablissement.inc:130
 msgid "The URI of this establishment institution website"
@@ -174,7 +174,7 @@ msgstr ""
 
 #: admin/supannStructures/class_etablissement.inc:134
 msgid "White pages URI"
-msgstr ""
+msgstr "화이트 페이지 URI"
 
 #: admin/supannStructures/class_etablissement.inc:134
 msgid "The URI of this establishment white pages"
@@ -195,18 +195,18 @@ msgstr ""
 
 #: admin/supannStructures/class_supann.inc:53
 msgid "File error"
-msgstr ""
+msgstr "파일 오류"
 
 #: admin/supannStructures/class_supann.inc:54
 #, php-format
 msgid "Cannot read file: '%s'"
-msgstr ""
+msgstr "파일을 읽을 수 없습니다 : '%s'"
 
 #: admin/supannStructures/class_entite.inc:32
 #: admin/supannStructures/class_entite.inc:52
 #: personal/supann/class_supannAccount.inc:463
 msgid "Entity"
-msgstr ""
+msgstr "엔티티"
 
 #: admin/supannStructures/class_entite.inc:33
 msgid "SupAnn Entity Settings"
@@ -218,15 +218,15 @@ msgstr ""
 
 #: admin/supannStructures/class_entite.inc:55
 msgid "The name to write in the ou attribute for this entity"
-msgstr ""
+msgstr "이 엔티티의 ou 속성에 쓸 이름"
 
 #: admin/supannStructures/class_entite.inc:59
 msgid "Short description of this entity"
-msgstr ""
+msgstr "이 엔티티에 대한 간단한 설명"
 
 #: admin/supannStructures/class_entite.inc:65
 msgid "Administrative information"
-msgstr ""
+msgstr "관리적인 정보"
 
 #: admin/supannStructures/class_entite.inc:68
 msgid "Phone number of this entity"
@@ -238,11 +238,11 @@ msgstr ""
 
 #: admin/supannStructures/class_entite.inc:76
 msgid "Postal address"
-msgstr ""
+msgstr "우편 주소"
 
 #: admin/supannStructures/class_entite.inc:76
 msgid "Postal address of this entity"
-msgstr ""
+msgstr "이 엔티티의 우편 주소"
 
 #: admin/supannStructures/class_entite.inc:82
 msgid "SupAnn information"
@@ -251,7 +251,7 @@ msgstr ""
 #: admin/supannStructures/class_entite.inc:85
 #: personal/supann/class_supannAccount.inc:459
 msgid "Entity type"
-msgstr ""
+msgstr "엔터티 유형"
 
 #: admin/supannStructures/class_entite.inc:85
 msgid "The SupAnn type that best fits this entity"
@@ -259,7 +259,7 @@ msgstr ""
 
 #: admin/supannStructures/class_entite.inc:89
 msgid "Entity code"
-msgstr ""
+msgstr "엔티티 코드"
 
 #: admin/supannStructures/class_entite.inc:89
 msgid "The SupAnn code of this entity"
@@ -276,7 +276,7 @@ msgstr ""
 #: config/supann/class_supannConfig.inc:41
 #: personal/supann/class_supannAccount.inc:224
 msgid "SupAnn"
-msgstr ""
+msgstr "SupAnn"
 
 #: config/supann/class_supannConfig.inc:44
 msgid "SupAnn RDN"
@@ -303,19 +303,21 @@ msgstr "없음"
 
 #: personal/supann/class_supannAccount.inc:116
 msgid "Licence"
-msgstr ""
+msgstr "라이선스"
 
 #: personal/supann/class_supannAccount.inc:116
 msgid "Master"
-msgstr ""
+msgstr "마스터"
 
 #: personal/supann/class_supannAccount.inc:116
 msgid "Ph.D."
-msgstr ""
+msgstr "박사"
 
 #: personal/supann/class_supannAccount.inc:116
 msgid "Another class of degree"
 msgstr ""
+"다른 등급의 학위\n"
+" "
 
 #: personal/supann/class_supannAccount.inc:116
 msgid "Post-graduate year"
@@ -323,67 +325,67 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:119
 msgid "1st year"
-msgstr ""
+msgstr "1 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:119
 msgid "2nd year"
-msgstr ""
+msgstr "2 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:119
 msgid "3rd year"
-msgstr ""
+msgstr "3 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:120
 msgid "4th year"
-msgstr ""
+msgstr "4 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:120
 msgid "5th year"
-msgstr ""
+msgstr "5 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:120
 msgid "6th year"
-msgstr ""
+msgstr "6ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:121
 msgid "7th year"
-msgstr ""
+msgstr "7 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:121
 msgid "8th year"
-msgstr ""
+msgstr "8 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:121
 msgid "9th year"
-msgstr ""
+msgstr "9 ë…„ì°¨"
 
 #: personal/supann/class_supannAccount.inc:225
 msgid "SupAnn information management plugin"
-msgstr ""
+msgstr "SupAnn 정보 관리 플러그인"
 
 #: personal/supann/class_supannAccount.inc:242
 msgid "Identity"
-msgstr ""
+msgstr "신원"
 
 #: personal/supann/class_supannAccount.inc:245
 msgid "Civilite"
-msgstr ""
+msgstr "호칭"
 
 #: personal/supann/class_supannAccount.inc:245
 msgid "supannCivilite - Civility for this person"
-msgstr ""
+msgstr "supannCivilite - 이 사람에 대한 호칭"
 
 #: personal/supann/class_supannAccount.inc:250
 msgid "Alias login"
-msgstr ""
+msgstr "별칭 로그인"
 
 #: personal/supann/class_supannAccount.inc:250
 msgid "supannAliasLogin - An alias for the login of this user"
-msgstr ""
+msgstr "supannAliasLogin - 이 사용자의 로그인 별칭"
 
 #: personal/supann/class_supannAccount.inc:254
 msgid "eduPersonPrincipalName"
-msgstr ""
+msgstr "eduPersonPrincipalName"
 
 #: personal/supann/class_supannAccount.inc:254
 msgid ""
@@ -401,11 +403,11 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:263
 msgid "Ref ids"
-msgstr ""
+msgstr "참조 ID"
 
 #: personal/supann/class_supannAccount.inc:263
 msgid "supannRefId - IDs/links for this user on other systems"
-msgstr ""
+msgstr "supannRefId - 다른 시스템에서 이 사용자에 대한 ID / 링크"
 
 #: personal/supann/class_supannAccount.inc:273
 msgid "Contact"
@@ -413,28 +415,28 @@ msgstr "연락처"
 
 #: personal/supann/class_supannAccount.inc:277
 msgid "Other phone numbers"
-msgstr ""
+msgstr "다른 전화 번호"
 
 #: personal/supann/class_supannAccount.inc:277
 msgid "supannAutreTelephone - Other phone numbers for this user"
-msgstr ""
+msgstr "supannAutreTelephone - 이 사용자의 다른 전화 번호"
 
 #: personal/supann/class_supannAccount.inc:283
 msgid "Other mail addresses"
-msgstr ""
+msgstr "다른 메일 주소"
 
 #: personal/supann/class_supannAccount.inc:283
 msgid ""
 "supannAutreMail - Other mail addresses for this user. Each must be unique"
-msgstr ""
+msgstr "supannAutreMail - 이 사용자의 다른 메일 주소. 각각 고유해야 합니다"
 
 #: personal/supann/class_supannAccount.inc:289
 msgid "Personal mail addresses"
-msgstr ""
+msgstr "개인 메일 주소"
 
 #: personal/supann/class_supannAccount.inc:289
 msgid "supannMailPerso - Personal mail addresses for this user"
-msgstr ""
+msgstr "supannMailPerso - 이 사용자의 개인 메일 주소"
 
 #: personal/supann/class_supannAccount.inc:294
 msgid "Red list"
@@ -442,7 +444,7 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:294
 msgid "supannListeRouge - Should this person be on the red list"
-msgstr ""
+msgstr "supannListeRouge - 이 사람은 적색 목록에 있어야 합니다"
 
 #: personal/supann/class_supannAccount.inc:300
 msgid "Assignment"
@@ -454,7 +456,7 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:303
 msgid "supannEntiteAffectationPrincipale - Main assignment of the person"
-msgstr ""
+msgstr "supannEntiteAffectationPrincipale - 사람의 주요 임무"
 
 #: personal/supann/class_supannAccount.inc:308
 msgid "Assignments"
@@ -479,19 +481,19 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:321
 msgid "Affiliation"
-msgstr ""
+msgstr "Affiliation"
 
 #: personal/supann/class_supannAccount.inc:324
 msgid "Primary affiliation"
-msgstr ""
+msgstr "기본 제휴"
 
 #: personal/supann/class_supannAccount.inc:324
 msgid "eduPersonPrimaryAffiliation - Main status of the person"
-msgstr ""
+msgstr "eduPersonPrimaryAffiliation - 개인의 기본 상태"
 
 #: personal/supann/class_supannAccount.inc:329
 msgid "Affiliations"
-msgstr ""
+msgstr "Affiliations"
 
 #: personal/supann/class_supannAccount.inc:329
 msgid ""
@@ -507,23 +509,23 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:342
 msgid "Student profile"
-msgstr ""
+msgstr "학생 프로필"
 
 #: personal/supann/class_supannAccount.inc:345
 msgid "INE code"
-msgstr ""
+msgstr "INE 코드"
 
 #: personal/supann/class_supannAccount.inc:345
 msgid "supannCodeINE - INE code of this student"
-msgstr ""
+msgstr "supannCodeINE - 이 학생의 INE 코드"
 
 #: personal/supann/class_supannAccount.inc:349
 msgid "Student ID"
-msgstr ""
+msgstr "학생 아이디"
 
 #: personal/supann/class_supannAccount.inc:349
 msgid "supannEtuId - Scolarity id"
-msgstr ""
+msgstr "supannEtuId - 장학생 ID"
 
 #: personal/supann/class_supannAccount.inc:355
 msgid "Student registrations"
@@ -540,7 +542,7 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:378
 msgid "Year"
-msgstr ""
+msgstr "í•´"
 
 #: personal/supann/class_supannAccount.inc:378
 msgid "supannEtuAnneeInscription - The year this registration will begin"
@@ -556,23 +558,23 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:387
 msgid "Disciplinary Sector"
-msgstr ""
+msgstr "징계 분야"
 
 #: personal/supann/class_supannAccount.inc:387
 msgid "supannEtuSecteurDisciplinaire - Disciplinary sector education diploma"
-msgstr ""
+msgstr "supannEtuSecteurDisciplinaire - 징계 분야 교육 디플로마"
 
 #: personal/supann/class_supannAccount.inc:391
 msgid "Diploma type"
-msgstr ""
+msgstr "디플로마 유형"
 
 #: personal/supann/class_supannAccount.inc:391
 msgid "supannEtuTypeDiplome - Type of diploma"
-msgstr ""
+msgstr "supannEtuTypeDiplome - 디플로마 유형"
 
 #: personal/supann/class_supannAccount.inc:395
 msgid "Curriculum year "
-msgstr ""
+msgstr "커리큘럼 년도"
 
 #: personal/supann/class_supannAccount.inc:395
 msgid ""
@@ -582,7 +584,7 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:399
 msgid "Entity assignment"
-msgstr ""
+msgstr "엔터티 할당"
 
 #: personal/supann/class_supannAccount.inc:399
 msgid "supannEntiteAffectation - To wich entities does this user belong to"
@@ -590,55 +592,55 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:403
 msgid "Diploma"
-msgstr ""
+msgstr "Diploma"
 
 #: personal/supann/class_supannAccount.inc:403
 msgid "supannEtuDiplome - Diploma prepared by the student"
-msgstr ""
+msgstr "supannEtuDiplome - 학생이 준비한 졸업장"
 
 #: personal/supann/class_supannAccount.inc:407
 msgid "Step"
-msgstr ""
+msgstr "단계"
 
 #: personal/supann/class_supannAccount.inc:407
 msgid ""
 "supannEtuEtape - Step can be considered a split (semester, year, etc.) in "
 "time of education leading to a diploma"
-msgstr ""
+msgstr "supannEtuEtape - 단계는 졸업장으로 이어지는 교육 시간의 분할 (학기, 연도 등)로 간주 될 수 있습니다"
 
 #: personal/supann/class_supannAccount.inc:411
 msgid "educational element"
-msgstr ""
+msgstr "교육 요소"
 
 #: personal/supann/class_supannAccount.inc:411
 msgid ""
 "supannEtuElementPedagogique - Generic description of the content of "
 "education with a high level of granularity"
-msgstr ""
+msgstr "supannEtuElementPedagogique - 세분화 수준이 높은 교육 내용에 대한 일반적인 설명"
 
 #: personal/supann/class_supannAccount.inc:425
 msgid "Personal profile"
-msgstr ""
+msgstr "개인 프로필"
 
 #: personal/supann/class_supannAccount.inc:428
 msgid "Personal ID"
-msgstr ""
+msgstr "개인 ID"
 
 #: personal/supann/class_supannAccount.inc:428
 msgid "supannEmpId - Employee identifier"
-msgstr ""
+msgstr "supannEmpId - 직원 식별자"
 
 #: personal/supann/class_supannAccount.inc:432
 msgid "Personal corps"
-msgstr ""
+msgstr "개인 단쳋"
 
 #: personal/supann/class_supannAccount.inc:432
 msgid "supannEmpCorps"
-msgstr ""
+msgstr "supannEmpCorps"
 
 #: personal/supann/class_supannAccount.inc:437
 msgid "Activity"
-msgstr ""
+msgstr "Activity"
 
 #: personal/supann/class_supannAccount.inc:437
 msgid "supannActivite - Category of profession"
@@ -646,15 +648,15 @@ msgstr ""
 
 #: personal/supann/class_supannAccount.inc:444
 msgid "Roles"
-msgstr ""
+msgstr "ì—­í• "
 
 #: personal/supann/class_supannAccount.inc:451
 msgid "supannRoleEntite"
-msgstr ""
+msgstr "supannRoleEntite"
 
 #: personal/supann/class_supannAccount.inc:455
 msgid "Generic role"
-msgstr ""
+msgstr "일반적인 역할"
 
 #: personal/supann/class_supannAccount.inc:455
 msgid "supannRoleGenerique - Generic role of the person in the facility"
@@ -668,4 +670,4 @@ msgstr ""
 msgid ""
 "\"member\" and \"affiliate\" values are incompatible for "
 "eduPersonAffiliation. Please remove one of them."
-msgstr ""
+msgstr "\"member\"및 \"affiliate\"값은 eduPersonAffiliation과 호환되지 않습니다. 그중 하나를 제거하십시오."
diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po
index 62eb0d8327..ee98bf0ad7 100644
--- a/supann/locale/lv/fusiondirectory.po
+++ b/supann/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po
index d4b2926003..26c92ec5fd 100644
--- a/supann/locale/nb/fusiondirectory.po
+++ b/supann/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po
index 7076a3e2b4..51de50b633 100644
--- a/supann/locale/nl/fusiondirectory.po
+++ b/supann/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po
index 06cd8241a0..08c3169298 100644
--- a/supann/locale/pl/fusiondirectory.po
+++ b/supann/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po
index e18aa0aee6..628e0db66e 100644
--- a/supann/locale/pt/fusiondirectory.po
+++ b/supann/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po
index 85c25df2ca..629c9b33ae 100644
--- a/supann/locale/pt_BR/fusiondirectory.po
+++ b/supann/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po
index 724068e5e7..fb9b5427d4 100644
--- a/supann/locale/ru/fusiondirectory.po
+++ b/supann/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po
index 25968ed515..2ab80fe040 100644
--- a/supann/locale/ru@petr1708/fusiondirectory.po
+++ b/supann/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po
index 4ce22ff65b..c6d35956eb 100644
--- a/supann/locale/sv/fusiondirectory.po
+++ b/supann/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/supann/locale/tr_TR/fusiondirectory.po b/supann/locale/tr_TR/fusiondirectory.po
index 24bd107181..da9eb55420 100644
--- a/supann/locale/tr_TR/fusiondirectory.po
+++ b/supann/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po
index 3808eb9f01..6273acd35d 100644
--- a/supann/locale/ug/fusiondirectory.po
+++ b/supann/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po
index 748af12bb9..78a3d04b23 100644
--- a/supann/locale/vi_VN/fusiondirectory.po
+++ b/supann/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po
index ee121b0258..42fafbc0b0 100644
--- a/supann/locale/zh/fusiondirectory.po
+++ b/supann/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/supann/locale/zh_TW/fusiondirectory.po b/supann/locale/zh_TW/fusiondirectory.po
index 8c93ebfaae..ec2318497e 100644
--- a/supann/locale/zh_TW/fusiondirectory.po
+++ b/supann/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/af_ZA/fusiondirectory.po b/sympa/locale/af_ZA/fusiondirectory.po
index b1ac671b5a..8d824c7c90 100644
--- a/sympa/locale/af_ZA/fusiondirectory.po
+++ b/sympa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po
index 68f2bfe1c4..0d8d17994f 100644
--- a/sympa/locale/ar/fusiondirectory.po
+++ b/sympa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po
index 21c092dd9d..5cb0bc0f74 100644
--- a/sympa/locale/ca/fusiondirectory.po
+++ b/sympa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po
index 6993c8d8af..3c9b508026 100644
--- a/sympa/locale/cs_CZ/fusiondirectory.po
+++ b/sympa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po
index ee7e388b58..94ad9ad874 100644
--- a/sympa/locale/de/fusiondirectory.po
+++ b/sympa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po
index 6abb0a1bb3..1b730d9393 100644
--- a/sympa/locale/el_GR/fusiondirectory.po
+++ b/sympa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sympa/locale/en/fusiondirectory.po b/sympa/locale/en/fusiondirectory.po
index 83f4b8fa37..608de738c9 100644
--- a/sympa/locale/en/fusiondirectory.po
+++ b/sympa/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -38,73 +38,73 @@ msgstr ""
 msgid "Branch in which Sympa objects will be stored"
 msgstr ""
 
-#: admin/sympa/class_sympaManagement.inc:34
-msgid "Sympa management"
+#: admin/systems/services/sympa/class_serviceSympa.inc:31
+#: admin/systems/services/sympa/class_serviceSympa.inc:32
+msgid "Sympa Server"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:29 admin/sympa/class_sympaAlias.inc:30
-#: admin/sympa/class_sympaAlias.inc:33 admin/sympa/class_sympaAlias.inc:49
-msgid "Sympa list alias"
+#: admin/systems/services/sympa/class_serviceSympa.inc:32
+msgid "Services"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:52
-msgid "Name"
+#: admin/systems/services/sympa/class_serviceSympa.inc:46
+#: admin/sympa/class_sympaAlias.inc:64
+msgid "Sympa server"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:52
-msgid "Name to identify this alias"
+#: admin/systems/services/sympa/class_serviceSympa.inc:49
+msgid "URL"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:54
-msgid "Description"
+#: admin/systems/services/sympa/class_serviceSympa.inc:49
+msgid "URL to access the sympa server"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:54
-msgid "Description of this alias"
+#: admin/systems/services/sympa/class_serviceSympa.inc:53
+msgid "User"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:59
-msgid "Email address"
+#: admin/systems/services/sympa/class_serviceSympa.inc:53
+msgid "User to access sympa server SOAP API."
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:64
-#: admin/systems/services/sympa/class_serviceSympa.inc:46
-msgid "Sympa server"
+#: admin/systems/services/sympa/class_serviceSympa.inc:57
+msgid "Password"
 msgstr ""
 
-#: admin/sympa/class_sympaAlias.inc:64
-msgid "Sympa server for this alias"
+#: admin/systems/services/sympa/class_serviceSympa.inc:57
+msgid "Password to access sympa server SOAP API."
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:31
-#: admin/systems/services/sympa/class_serviceSympa.inc:32
-msgid "Sympa Server"
+#: admin/sympa/class_sympaAlias.inc:29 admin/sympa/class_sympaAlias.inc:30
+#: admin/sympa/class_sympaAlias.inc:33 admin/sympa/class_sympaAlias.inc:49
+msgid "Sympa list alias"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:32
-msgid "Services"
+#: admin/sympa/class_sympaAlias.inc:52
+msgid "Name"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:49
-msgid "URL"
+#: admin/sympa/class_sympaAlias.inc:52
+msgid "Name to identify this alias"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:49
-msgid "URL to access the sympa server"
+#: admin/sympa/class_sympaAlias.inc:54
+msgid "Description"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:53
-msgid "User"
+#: admin/sympa/class_sympaAlias.inc:54
+msgid "Description of this alias"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:53
-msgid "User to access sympa server SOAP API."
+#: admin/sympa/class_sympaAlias.inc:59
+msgid "Email address"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:57
-msgid "Password"
+#: admin/sympa/class_sympaAlias.inc:64
+msgid "Sympa server for this alias"
 msgstr ""
 
-#: admin/systems/services/sympa/class_serviceSympa.inc:57
-msgid "Password to access sympa server SOAP API."
+#: admin/sympa/class_sympaManagement.inc:34
+msgid "Sympa management"
 msgstr ""
diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po
index 679ef7d572..95aec0e55c 100644
--- a/sympa/locale/es/fusiondirectory.po
+++ b/sympa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po
index 5d0c7749be..fb03edf226 100644
--- a/sympa/locale/es_CO/fusiondirectory.po
+++ b/sympa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po
index a1a91ffefa..8bbaa69d82 100644
--- a/sympa/locale/es_VE/fusiondirectory.po
+++ b/sympa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po
index 1f8b8ca3fb..4546c778f5 100644
--- a/sympa/locale/fa_IR/fusiondirectory.po
+++ b/sympa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po
index 385a3ca183..7fdcdb65cd 100644
--- a/sympa/locale/fi_FI/fusiondirectory.po
+++ b/sympa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po
index ece33500a3..8dcaf18601 100644
--- a/sympa/locale/fr/fusiondirectory.po
+++ b/sympa/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po
index c89de944fe..26dbc5b7f5 100644
--- a/sympa/locale/hu_HU/fusiondirectory.po
+++ b/sympa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po
index 6b95a87555..7018eabfd4 100644
--- a/sympa/locale/id/fusiondirectory.po
+++ b/sympa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po
index 88a9321a18..d0d71f1ea5 100644
--- a/sympa/locale/it_IT/fusiondirectory.po
+++ b/sympa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sympa/locale/ja/fusiondirectory.po b/sympa/locale/ja/fusiondirectory.po
index 608e7ca161..59185e05a8 100644
--- a/sympa/locale/ja/fusiondirectory.po
+++ b/sympa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ko/fusiondirectory.po b/sympa/locale/ko/fusiondirectory.po
index b916a295f1..3ebaa8fa61 100644
--- a/sympa/locale/ko/fusiondirectory.po
+++ b/sympa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po
index ca23d16e58..3448499da3 100644
--- a/sympa/locale/lv/fusiondirectory.po
+++ b/sympa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po
index 7183576595..7bf133fad7 100644
--- a/sympa/locale/nb/fusiondirectory.po
+++ b/sympa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po
index d8c26d517a..3b96030f9c 100644
--- a/sympa/locale/nl/fusiondirectory.po
+++ b/sympa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po
index 50c9740333..7e0aafea2a 100644
--- a/sympa/locale/pl/fusiondirectory.po
+++ b/sympa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po
index b0d82f8877..320792c752 100644
--- a/sympa/locale/pt/fusiondirectory.po
+++ b/sympa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po
index 25d341920a..9cfce2ccaa 100644
--- a/sympa/locale/pt_BR/fusiondirectory.po
+++ b/sympa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po
index 09132b927c..3e6ec56f93 100644
--- a/sympa/locale/ru/fusiondirectory.po
+++ b/sympa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po
index 732f2d89fb..0521012d1b 100644
--- a/sympa/locale/ru@petr1708/fusiondirectory.po
+++ b/sympa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po
index b28b3423ef..51ec963af6 100644
--- a/sympa/locale/sv/fusiondirectory.po
+++ b/sympa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sympa/locale/tr_TR/fusiondirectory.po b/sympa/locale/tr_TR/fusiondirectory.po
index 6605ab28f8..46a0776ea8 100644
--- a/sympa/locale/tr_TR/fusiondirectory.po
+++ b/sympa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po
index 9bf407f8f7..352a0c32d9 100644
--- a/sympa/locale/ug/fusiondirectory.po
+++ b/sympa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po
index ba146f3d33..48ac1a2546 100644
--- a/sympa/locale/vi_VN/fusiondirectory.po
+++ b/sympa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po
index 33b04e98a8..ee139b180d 100644
--- a/sympa/locale/zh/fusiondirectory.po
+++ b/sympa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sympa/locale/zh_TW/fusiondirectory.po b/sympa/locale/zh_TW/fusiondirectory.po
index 271ee7b067..984f1e0c78 100644
--- a/sympa/locale/zh_TW/fusiondirectory.po
+++ b/sympa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/af_ZA/fusiondirectory.po b/systems/locale/af_ZA/fusiondirectory.po
index 94197ca5b2..ec08f493a6 100644
--- a/systems/locale/af_ZA/fusiondirectory.po
+++ b/systems/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po
index 480e9a3ad7..d1c0b972b7 100644
--- a/systems/locale/ar/fusiondirectory.po
+++ b/systems/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po
index ea54abd1ef..2a3f932f9d 100644
--- a/systems/locale/ca/fusiondirectory.po
+++ b/systems/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po
index 5d1e36d7c6..0eacf2d7a6 100644
--- a/systems/locale/cs_CZ/fusiondirectory.po
+++ b/systems/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po
index 30c484c3c4..de59f1280a 100644
--- a/systems/locale/de/fusiondirectory.po
+++ b/systems/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po
index 106618bd0e..af42e4354d 100644
--- a/systems/locale/el_GR/fusiondirectory.po
+++ b/systems/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/systems/locale/en/fusiondirectory.po b/systems/locale/en/fusiondirectory.po
index d2512cc6b0..e86049d0ab 100644
--- a/systems/locale/en/fusiondirectory.po
+++ b/systems/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -18,662 +18,739 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: addons/dashboard/class_dashBoardNetwork.inc:28
-msgid "Network"
+#: config/systems/class_systemsPluginConfig.inc:30
+#: addons/dashboard/class_dashBoardSystems.inc:30
+#: admin/systems/class_systemManagement.inc:43
+#: admin/systems/class_systemManagement.inc:47
+msgid "Systems"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardNetwork.inc:29
-msgid "Statistics and various information"
+#: config/systems/class_systemsPluginConfig.inc:31
+msgid "Systems plugin configuration"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardNetwork.inc:40
-msgid "DHCP"
+#: config/systems/class_systemsPluginConfig.inc:42
+msgid "LDAP tree for systems"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardNetwork.inc:45
-msgid "DNS"
+#: config/systems/class_systemsPluginConfig.inc:45
+msgid "Systems RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:30
-#: config/systems/class_systemsPluginConfig.inc:28
-#: admin/systems/class_systemManagement.inc:43
-#: admin/systems/class_systemManagement.inc:47
-msgid "Systems"
+#: config/systems/class_systemsPluginConfig.inc:45
+msgid "Branch in which systems will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:31
-msgid "Statistics and information about systems"
+#: config/systems/class_systemsPluginConfig.inc:50
+msgid "Server RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:42
-msgid "Statistics"
+#: config/systems/class_systemsPluginConfig.inc:50
+msgid "Branch in which servers will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:47
-msgid "Computer name to use by unit"
+#: config/systems/class_systemsPluginConfig.inc:55
+msgid "Workstations RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:72
-msgid "Workstations"
+#: config/systems/class_systemsPluginConfig.inc:55
+msgid "Branch in which workstations will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:76
-msgid "Servers"
+#: config/systems/class_systemsPluginConfig.inc:60
+msgid "Terminal RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:80
-msgid "Windows Workstations"
+#: config/systems/class_systemsPluginConfig.inc:60
+msgid "Branch in which terminals will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:84
-msgid "Terminals"
+#: config/systems/class_systemsPluginConfig.inc:65
+msgid "Printer RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:88
-msgid "Printers"
+#: config/systems/class_systemsPluginConfig.inc:65
+msgid "Branch in which printers will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:92
-msgid "Phones"
+#: config/systems/class_systemsPluginConfig.inc:70
+msgid "Component RDN"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:96
-msgid "Components"
+#: config/systems/class_systemsPluginConfig.inc:70
+msgid "Branch in which network devices will be stored"
 msgstr ""
 
-#: addons/dashboard/class_dashBoardSystems.inc:100
-msgid "Mobile phones"
+#: config/systems/class_systemsPluginConfig.inc:75
+msgid "Phone RDN"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:29
-msgid "Systems plugin configuration"
+#: config/systems/class_systemsPluginConfig.inc:75
+msgid "Branch in which phones will be stored"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:40
-msgid "LDAP tree for systems"
+#: config/systems/class_systemsPluginConfig.inc:80
+msgid "Mobile phone RDN"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:43
-msgid "Systems RDN"
+#: config/systems/class_systemsPluginConfig.inc:80
+msgid "Branch in which mobile phones will be stored"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:43
-msgid "Branch in which systems will be stored"
+#: config/systems/class_systemsPluginConfig.inc:87
+msgid "Miscellaneous"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:48
-msgid "Server RDN"
+#: config/systems/class_systemsPluginConfig.inc:91
+msgid "Available encodings for share services"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:48
-msgid "Branch in which servers will be stored"
+#: config/systems/class_systemsPluginConfig.inc:95
+msgid "Encoding"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:53
-msgid "Workstations RDN"
+#: config/systems/class_systemsPluginConfig.inc:95
+msgid "The encoding code name"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:53
-msgid "Branch in which workstations will be stored"
+#: config/systems/class_systemsPluginConfig.inc:100
+msgid "Label"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:58
-msgid "Terminal RDN"
+#: config/systems/class_systemsPluginConfig.inc:100
+msgid "The encoding displayed name"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:58
-msgid "Branch in which terminals will be stored"
+#: config/systems/class_systemsPluginConfig.inc:108
+msgid "Encodings"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:63
-msgid "Printer RDN"
+#: config/systems/class_systemsPluginConfig.inc:121
+msgid "Mandatory IP"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:63
-msgid "Branch in which printers will be stored"
+#: config/systems/class_systemsPluginConfig.inc:121
+msgid "Object types tabs for which IP field should be mandatory"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:68
-msgid "Component RDN"
+#: addons/dashboard/class_dashBoardNetwork.inc:28
+msgid "Network"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:68
-msgid "Branch in which network devices will be stored"
+#: addons/dashboard/class_dashBoardNetwork.inc:29
+msgid "Statistics and various information"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:73
-msgid "Phone RDN"
+#: addons/dashboard/class_dashBoardNetwork.inc:41
+msgid "DHCP"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:73
-msgid "Branch in which phones will be stored"
+#: addons/dashboard/class_dashBoardNetwork.inc:46
+msgid "DNS"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:78
-msgid "Mobile phone RDN"
+#: addons/dashboard/class_dashBoardNetwork.inc:81
+#: admin/systems/class_serverService.inc:226
+#: admin/systems/class_serverService.inc:294
+#: admin/systems/services/shares/class_serviceShare.inc:105
+msgid "Error"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:78
-msgid "Branch in which mobile phones will be stored"
+#: addons/dashboard/class_dashBoardNetwork.inc:82
+#, php-format
+msgid ""
+"Statistics for DHCP could not be computed because of the following error: %s"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:85
-msgid "Miscellaneous"
+#: addons/dashboard/class_dashBoardSystems.inc:31
+msgid "Statistics and information about systems"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:89
-msgid "Available encodings for share services"
+#: addons/dashboard/class_dashBoardSystems.inc:43
+msgid "Statistics"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:93
-msgid "Encoding"
+#: addons/dashboard/class_dashBoardSystems.inc:48
+msgid "Computer name to use by unit"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:93
-msgid "The encoding code name"
+#: addons/dashboard/class_dashBoardSystems.inc:73
+msgid "Workstations"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:98
-msgid "Label"
+#: addons/dashboard/class_dashBoardSystems.inc:77
+msgid "Servers"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:98
-msgid "The encoding displayed name"
+#: addons/dashboard/class_dashBoardSystems.inc:81
+msgid "Windows Workstations"
 msgstr ""
 
-#: config/systems/class_systemsPluginConfig.inc:106
-msgid "Encodings"
+#: addons/dashboard/class_dashBoardSystems.inc:86
+msgid "Terminals"
 msgstr ""
 
-#: admin/systems/class_serverGeneric.inc:28
-msgid "server"
+#: addons/dashboard/class_dashBoardSystems.inc:90
+msgid "Printers"
+msgstr ""
+
+#: addons/dashboard/class_dashBoardSystems.inc:94
+msgid "Phones"
+msgstr ""
+
+#: addons/dashboard/class_dashBoardSystems.inc:98
+msgid "Components"
 msgstr ""
 
+#: addons/dashboard/class_dashBoardSystems.inc:102
+msgid "Mobile phones"
+msgstr ""
+
+#: addons/dashboard/class_dashBoardSystems.inc:116
+msgid "LDAP error"
+msgstr ""
+
+#: addons/dashboard/class_dashBoardSystems.inc:117
+#, php-format
+msgid ""
+"Statistics for type \"%s\" could not be computed because of the following "
+"error: %s"
+msgstr ""
+
+#: admin/systems/class_systemImport.inc:39
+#: admin/systems/class_systemImport.inc:59
+msgid "Import"
+msgstr ""
+
+#: admin/systems/class_systemImport.inc:43
 #: admin/systems/class_serverGeneric.inc:39
 #: admin/systems/class_serverGeneric.inc:44
 #: admin/systems/class_serverGeneric.inc:45
-#: admin/systems/class_systemImport.inc:173
 msgid "Server"
 msgstr ""
 
-#: admin/systems/class_serverGeneric.inc:40
-msgid "Server information"
+#: admin/systems/class_systemImport.inc:43
+msgid "The server you wish to import hosts from"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:10
-msgid "List of services"
+#: admin/systems/class_systemImport.inc:47
+#: admin/systems/services/shares/class_serviceShare.inc:59
+msgid "Type"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:14
-msgid "Service"
+#: admin/systems/class_systemImport.inc:47
+msgid "Type of objects you wish to import"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:27
-msgid "!"
+#: admin/systems/class_systemImport.inc:52
+msgid "Template"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:35
-#: admin/systems/class_componentGeneric.inc:62
-#: admin/systems/class_mobilePhoneGeneric.inc:64
-#: admin/systems/class_workstationGeneric.inc:68
-#: admin/systems/services/shares/class_serviceShare.inc:55
-#: admin/systems/system-list.xml:55 admin/systems/class_phoneGeneric.inc:59
-#: admin/systems/class_printGeneric.inc:66
-msgid "Description"
+#: admin/systems/class_systemImport.inc:52
+msgid "Select a template to apply to imported entries"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:43 admin/systems/system-list.xml:79
-msgid "Actions"
+#: admin/systems/class_systemImport.inc:105
+#, php-format
+msgid "Could not parse %s"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:54 admin/systems/system-list.xml:90
-msgid "Create"
+#: admin/systems/class_systemImport.inc:178
+#, php-format
+msgid "No DHCP server found for IPs %s"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:69 admin/systems/system-list.xml:119
-msgid "Remove"
+#: admin/systems/class_systemImport.inc:197
+#, php-format
+msgid "No DNS server found for zone %s"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:89
-msgid "Get status"
+#: admin/systems/class_serverService.inc:61 admin/systems/system-list.xml:63
+#: admin/systems/services/ldap/class_serviceLDAP.inc:97
+#: admin/systems/services/shares/class_serviceShare.inc:30
+#: admin/systems/services/terminal/class_serviceTerminal.inc:30
+msgid "Services"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:97
-msgid "Start"
+#: admin/systems/class_serverService.inc:62
+msgid "Server services"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:105
-msgid "Stop"
+#: admin/systems/class_serverService.inc:288
+msgid "Information"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:113
-msgid "Restart"
+#: admin/systems/class_serverService.inc:288
+msgid "Cannot update service status until it has been saved!"
 msgstr ""
 
-#: admin/systems/serverService-list.xml:121
-msgid "Edit service"
+#: admin/systems/class_serverService.inc:294
+#, php-format
+msgid "Unknown action \"%s\""
 msgstr ""
 
-#: admin/systems/serverService-list.xml:129
-msgid "Remove service"
+#: admin/systems/class_serverService.inc:315
+#: admin/systems/class_serverService.inc:322
+#: admin/systems/class_serverService.inc:335
+#: admin/systems/class_serverService.inc:346
+#, php-format
+msgid "Could not get execute action %s on service %s."
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:31
+#: admin/systems/class_serverService.inc:323
+msgid "This server has no mac address."
+msgstr ""
+
+#: admin/systems/class_componentGeneric.inc:30
 msgid "Component"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:32
+#: admin/systems/class_componentGeneric.inc:31
 msgid "Component information"
 msgstr ""
 
+#: admin/systems/class_componentGeneric.inc:35
 #: admin/systems/class_componentGeneric.inc:36
-#: admin/systems/class_componentGeneric.inc:37
 msgid "Network device"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:55
-#: admin/systems/class_mobilePhoneGeneric.inc:56
-#: admin/systems/class_workstationGeneric.inc:59
+#: admin/systems/class_componentGeneric.inc:54
 #: admin/systems/class_phoneGeneric.inc:52
 #: admin/systems/class_printGeneric.inc:58
+#: admin/systems/class_mobilePhoneGeneric.inc:56
+#: admin/systems/class_workstationGeneric.inc:58
 msgid "Properties"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:58
+#: admin/systems/class_componentGeneric.inc:57
+#: admin/systems/class_phoneGeneric.inc:56 admin/systems/system-list.xml:31
+#: admin/systems/class_printGeneric.inc:62
 #: admin/systems/class_mobilePhoneGeneric.inc:60
-#: admin/systems/class_workstationGeneric.inc:63
+#: admin/systems/class_workstationGeneric.inc:62
 #: admin/systems/services/shares/class_serviceShare.inc:51
-#: admin/systems/system-list.xml:31 admin/systems/class_phoneGeneric.inc:55
-#: admin/systems/class_printGeneric.inc:62
 msgid "Name"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:58
+#: admin/systems/class_componentGeneric.inc:57
 msgid "The name of the component"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:62
+#: admin/systems/class_componentGeneric.inc:61
+#: admin/systems/serverService-list.xml:35
+#: admin/systems/class_phoneGeneric.inc:60 admin/systems/system-list.xml:55
+#: admin/systems/class_printGeneric.inc:66
+#: admin/systems/class_mobilePhoneGeneric.inc:64
+#: admin/systems/class_workstationGeneric.inc:67
+#: admin/systems/services/shares/class_serviceShare.inc:55
+msgid "Description"
+msgstr ""
+
+#: admin/systems/class_componentGeneric.inc:61
 msgid "A short description of the component"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:69
-#: admin/systems/class_mobilePhoneGeneric.inc:102
-#: admin/systems/class_workstationGeneric.inc:90
+#: admin/systems/class_componentGeneric.inc:68
 #: admin/systems/class_phoneGeneric.inc:79
 #: admin/systems/class_printGeneric.inc:103
+#: admin/systems/class_mobilePhoneGeneric.inc:102
+#: admin/systems/class_workstationGeneric.inc:89
 msgid "Network settings"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:73
-#: admin/systems/class_mobilePhoneGeneric.inc:106
-#: admin/systems/class_workstationGeneric.inc:95
+#: admin/systems/class_componentGeneric.inc:72
 #: admin/systems/class_phoneGeneric.inc:84
 #: admin/systems/class_printGeneric.inc:108
+#: admin/systems/class_mobilePhoneGeneric.inc:106
+#: admin/systems/class_workstationGeneric.inc:94
 msgid "IP address"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:73
-#: admin/systems/class_mobilePhoneGeneric.inc:106
+#: admin/systems/class_componentGeneric.inc:72
 #: admin/systems/class_printGeneric.inc:108
+#: admin/systems/class_mobilePhoneGeneric.inc:106
 msgid "IP address this system uses"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:77
+#: admin/systems/class_componentGeneric.inc:76
+#: admin/systems/class_phoneGeneric.inc:90
+#: admin/systems/class_printGeneric.inc:114
 #: admin/systems/class_mobilePhoneGeneric.inc:110
 #: admin/systems/class_workstationGeneric.inc:100
-#: admin/systems/class_phoneGeneric.inc:89
-#: admin/systems/class_printGeneric.inc:113
 msgid "Mac address"
 msgstr ""
 
-#: admin/systems/class_componentGeneric.inc:77
+#: admin/systems/class_componentGeneric.inc:76
+#: admin/systems/class_phoneGeneric.inc:90
+#: admin/systems/class_printGeneric.inc:114
 #: admin/systems/class_mobilePhoneGeneric.inc:110
 #: admin/systems/class_workstationGeneric.inc:100
-#: admin/systems/class_phoneGeneric.inc:89
-#: admin/systems/class_printGeneric.inc:113
 msgid "Mac address of this system"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:32
-#: admin/systems/class_mobilePhoneGeneric.inc:37
-#: admin/systems/class_mobilePhoneGeneric.inc:38
-msgid "Mobile phone"
+#: admin/systems/serverService-list.xml:10
+msgid "List of services"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:33
-msgid "Mobile phone information"
+#: admin/systems/serverService-list.xml:14
+msgid "Service"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:60
-msgid "The name of the mobile phone"
+#: admin/systems/serverService-list.xml:27
+msgid "!"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:64
-msgid "A short description of the mobile phone"
+#: admin/systems/serverService-list.xml:43 admin/systems/system-list.xml:79
+msgid "Actions"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:54 admin/systems/system-list.xml:90
+msgid "Create"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:69 admin/systems/system-list.xml:127
+msgid "Remove"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:89
+msgid "Get status"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:97
+msgid "Start"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:105
+msgid "Stop"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:113
+msgid "Restart"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:121
+msgid "Edit service"
+msgstr ""
+
+#: admin/systems/serverService-list.xml:129
+msgid "Remove service"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:70
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
 #: admin/systems/class_phoneGeneric.inc:66
+#: admin/systems/class_mobilePhoneGeneric.inc:70
 msgid "Phone"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:73
-#: admin/systems/class_phoneGeneric.inc:69
-msgid "Serial Number"
-msgstr ""
-
-#: admin/systems/class_mobilePhoneGeneric.inc:73
-msgid "The serial number of the mobile phone"
+#: admin/systems/class_phoneGeneric.inc:33
+msgid "Phone information"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:77
-msgid "IMEI Number"
+#: admin/systems/class_phoneGeneric.inc:37
+msgid "Phone hardware"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:77
-msgid "The IMEI number of the mobile phone"
+#: admin/systems/class_phoneGeneric.inc:56
+msgid "The name of the phone"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:82
-msgid "OS"
+#: admin/systems/class_phoneGeneric.inc:60
+msgid "A short description of the phone"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:82
-msgid "The Operating System installed on this phone"
+#: admin/systems/class_phoneGeneric.inc:69
+#: admin/systems/class_mobilePhoneGeneric.inc:73
+msgid "Serial Number"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:88
-msgid "SimCard"
+#: admin/systems/class_phoneGeneric.inc:69
+msgid "The serial number of the phone"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:91
 #: admin/systems/class_phoneGeneric.inc:73
-msgid "Telephone Number"
-msgstr ""
-
 #: admin/systems/class_mobilePhoneGeneric.inc:91
-msgid "The telephone number of the mobile phone"
+msgid "Telephone Number"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:95
-msgid "PUK Number"
+#: admin/systems/class_phoneGeneric.inc:73
+msgid "The telephone number of the phone"
 msgstr ""
 
-#: admin/systems/class_mobilePhoneGeneric.inc:95
-msgid "The PUK number of the simcard in this mobile phone"
+#: admin/systems/class_phoneGeneric.inc:84
+#: admin/systems/class_workstationGeneric.inc:94
+msgid "IP addresses this system uses (v4 or v6)"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:32
-msgid "Startup"
+#: admin/systems/system-list.xml:10
+msgid "List of systems"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:33
-msgid "Terminal startup"
+#: admin/systems/system-list.xml:39
+msgid "IP"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:50
-msgid "Startup parameters"
+#: admin/systems/system-list.xml:47
+msgid "MAC"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:53
-msgid "Root server"
+#: admin/systems/system-list.xml:71
+msgid "Release"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:53
-msgid "The root server the terminal should be using"
+#: admin/systems/system-list.xml:100
+msgid "Trigger action"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:57
-msgid "Swap server"
+#: admin/systems/system-list.xml:107
+msgid "Schedule action"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:57
-msgid "The swap server the terminal should be using"
+#: admin/systems/system-list.xml:115
+msgid "Ping"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:63
-msgid "Remote desktop"
+#: admin/systems/system-list.xml:155
+msgid "New object from template"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:67
-msgid "Connect method"
+#: admin/systems/system-list.xml:167
+msgid "Edit system"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:71
-#: admin/systems/services/terminal/class_serviceTerminal.inc:59
-msgid "XDMCP"
+#: admin/systems/system-list.xml:181
+msgid "Remove system"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:71
-#: admin/systems/services/terminal/class_serviceTerminal.inc:59
-msgid "LDM"
+#: admin/systems/class_printGeneric.inc:30
+#: admin/systems/class_printGeneric.inc:35
+#: admin/systems/class_printGeneric.inc:36
+msgid "Printer"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:71
-#: admin/systems/services/terminal/class_serviceTerminal.inc:59
-msgid "Shell"
+#: admin/systems/class_printGeneric.inc:31
+msgid "Printer information"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:71
-#: admin/systems/services/terminal/class_serviceTerminal.inc:59
-msgid "Telnet"
+#: admin/systems/class_printGeneric.inc:62
+msgid "The name of the printer"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:71
-#: admin/systems/services/terminal/class_serviceTerminal.inc:59
-msgid "Windows RDP"
+#: admin/systems/class_printGeneric.inc:66
+msgid "A short description of the printer"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:75
-msgid "Terminal server"
+#: admin/systems/class_printGeneric.inc:72
+msgid "Details"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:111
-#: admin/systems/class_terminalStartup.inc:122
-msgid "inherited"
+#: admin/systems/class_printGeneric.inc:75
+msgid "Printer location"
 msgstr ""
 
-#: admin/systems/class_terminalStartup.inc:119
-msgid "Local swap"
+#: admin/systems/class_printGeneric.inc:75
+msgid "The location of the printer"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:60
-#: admin/systems/services/terminal/class_serviceTerminal.inc:30
-#: admin/systems/services/shares/class_serviceShare.inc:30
-#: admin/systems/services/ldap/class_serviceLDAP.inc:97
-#: admin/systems/system-list.xml:63
-msgid "Services"
+#: admin/systems/class_printGeneric.inc:79
+msgid "Printer URL"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:61
-msgid "Server services"
+#: admin/systems/class_printGeneric.inc:79
+msgid "The URL of the printer"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:209
-#: admin/systems/class_serverService.inc:277
-#: admin/systems/services/shares/class_serviceShare.inc:105
-msgid "Error"
+#: admin/systems/class_printGeneric.inc:85
+#: admin/systems/class_printGeneric.inc:88
+msgid "Users which are allowed to use this printer"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:271
-msgid "Information"
+#: admin/systems/class_printGeneric.inc:94
+#: admin/systems/class_printGeneric.inc:97
+msgid "Users which are allowed to administrate this printer"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:271
-msgid "Cannot update service status until it has been saved!"
+#: admin/systems/class_printGeneric.inc:121
+msgid "Windows paths"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:277
-#, php-format
-msgid "Unknown action \"%s\""
+#: admin/systems/class_printGeneric.inc:125
+msgid "Inf file"
 msgstr ""
 
-#: admin/systems/class_serverService.inc:298
-#: admin/systems/class_serverService.inc:308
-#: admin/systems/class_serverService.inc:319
-#, php-format
-msgid "Could not get execute action %s on service %s."
+#: admin/systems/class_printGeneric.inc:125
+msgid "Path to windows inf file for this printer"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:32
-#: admin/systems/class_workstationGeneric.inc:37
-#: admin/systems/class_workstationGeneric.inc:38
-msgid "Workstation"
+#: admin/systems/class_printGeneric.inc:129
+msgid "Driver directory"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:33
-msgid "Workstation information"
+#: admin/systems/class_printGeneric.inc:129
+msgid "Path to directory that contains windows drivers for this printer"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:52
-msgid "workstation"
+#: admin/systems/class_printGeneric.inc:133
+msgid "Driver name"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:64
-#, php-format
-msgid "The name of the %s"
+#: admin/systems/class_printGeneric.inc:133
+msgid "Windows name of the printer driver"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:69
-#, php-format
-msgid "A short description of the %s"
+#: admin/systems/class_systemManagement.inc:44
+msgid "Systems Management"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:73
-msgid "Location"
+#: admin/systems/class_systemManagement.inc:141
+#: admin/systems/class_systemManagement.inc:157
+#: admin/systems/class_systemManagement.inc:209
+msgid "Action canceled"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:74
+#: admin/systems/class_systemManagement.inc:141
+#: admin/systems/class_systemManagement.inc:209
 #, php-format
-msgid "The location of the %s"
+msgid "System %s has no mac address defined, cannot trigger action"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:78
+#: admin/systems/class_systemManagement.inc:157
 #, php-format
-msgid "Lock this %s"
+msgid "System %s is currently installing"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:79
-#, php-format
-msgid "This will prevent the %s from being reinstalled"
+#: admin/systems/class_systemManagement.inc:176
+#: admin/systems/class_systemManagement.inc:221
+#: admin/systems/class_systemManagement.inc:258
+msgid "Infrastructure service"
 msgstr ""
 
-#: admin/systems/class_workstationGeneric.inc:95
-#: admin/systems/class_phoneGeneric.inc:84
-msgid "IP addresses this system uses (v4 or v6)"
+#: admin/systems/class_systemManagement.inc:179
+#: admin/systems/class_systemManagement.inc:184
+msgid "Action triggered"
 msgstr ""
 
-#: admin/systems/class_systemImport.inc:72
+#: admin/systems/class_systemManagement.inc:179
 #, php-format
-msgid "Could not parse %s"
+msgid "Action called without error (results were \"%s\")"
 msgstr ""
 
-#: admin/systems/class_systemImport.inc:118
+#: admin/systems/class_systemManagement.inc:184
 #, php-format
-msgid "No DHCP server found for IPs %s"
+msgid "Action called without error (result was \"%s\")"
+msgstr ""
+
+#: admin/systems/class_systemManagement.inc:239
+msgid "Ping results"
 msgstr ""
 
-#: admin/systems/class_systemImport.inc:135
+#: admin/systems/class_systemManagement.inc:325
 #, php-format
-msgid "No DNS server found for zone %s"
+msgid "Inherited from %s"
+msgstr ""
+
+#: admin/systems/class_mobilePhoneGeneric.inc:32
+#: admin/systems/class_mobilePhoneGeneric.inc:37
+#: admin/systems/class_mobilePhoneGeneric.inc:38
+msgid "Mobile phone"
 msgstr ""
 
-#: admin/systems/class_systemImport.inc:169
-msgid "Import"
+#: admin/systems/class_mobilePhoneGeneric.inc:33
+msgid "Mobile phone information"
 msgstr ""
 
-#: admin/systems/class_systemImport.inc:173
-msgid "The server you wish to import hosts from"
+#: admin/systems/class_mobilePhoneGeneric.inc:60
+msgid "The name of the mobile phone"
 msgstr ""
 
-#: admin/systems/services/terminal/class_serviceTerminal.inc:29
-#: admin/systems/services/terminal/class_serviceTerminal.inc:30
-#: admin/systems/services/terminal/class_serviceTerminal.inc:41
-msgid "Terminal service"
+#: admin/systems/class_mobilePhoneGeneric.inc:64
+msgid "A short description of the mobile phone"
 msgstr ""
 
-#: admin/systems/services/terminal/class_serviceTerminal.inc:44
-msgid "Temporary disable login"
+#: admin/systems/class_mobilePhoneGeneric.inc:73
+msgid "The serial number of the mobile phone"
 msgstr ""
 
-#: admin/systems/services/terminal/class_serviceTerminal.inc:45
-msgid "Disables the login on this terminal server"
+#: admin/systems/class_mobilePhoneGeneric.inc:77
+msgid "IMEI Number"
 msgstr ""
 
-#: admin/systems/services/terminal/class_serviceTerminal.inc:54
-msgid "Supported session types"
+#: admin/systems/class_mobilePhoneGeneric.inc:77
+msgid "The IMEI number of the mobile phone"
 msgstr ""
 
-#: admin/systems/services/terminal/class_serviceTerminal.inc:55
-msgid "The session types supported by this terminal server"
+#: admin/systems/class_mobilePhoneGeneric.inc:82
+msgid "OS"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:29
-#: admin/systems/services/shares/class_serviceShare.inc:30
-msgid "Share service"
+#: admin/systems/class_mobilePhoneGeneric.inc:82
+msgid "The Operating System installed on this phone"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:42
-msgid "Shares"
+#: admin/systems/class_mobilePhoneGeneric.inc:88
+msgid "SimCard"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:47
-msgid "Shares this server hosts"
+#: admin/systems/class_mobilePhoneGeneric.inc:91
+msgid "The telephone number of the mobile phone"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:51
-msgid "Name of this share"
+#: admin/systems/class_mobilePhoneGeneric.inc:95
+msgid "PUK Number"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:55
-msgid "Description of this share"
+#: admin/systems/class_mobilePhoneGeneric.inc:95
+msgid "The PUK number of the simcard in this mobile phone"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:59
-msgid "Type"
+#: admin/systems/class_serverGeneric.inc:28
+msgid "server"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:59
-msgid "Type of share"
+#: admin/systems/class_serverGeneric.inc:40
+msgid "Server information"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:64
-msgid "Codepage"
+#: admin/systems/class_workstationGeneric.inc:31
+#: admin/systems/class_workstationGeneric.inc:36
+#: admin/systems/class_workstationGeneric.inc:37
+msgid "Workstation"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:64
-msgid "Codepage for this share"
+#: admin/systems/class_workstationGeneric.inc:32
+msgid "Workstation information"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:68
-msgid "Path / Volume"
+#: admin/systems/class_workstationGeneric.inc:51
+msgid "workstation"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:68
-msgid "Path or volume concerned by this share"
+#: admin/systems/class_workstationGeneric.inc:63
+#, php-format
+msgid "The name of the %s"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:72
-msgid "Option"
+#: admin/systems/class_workstationGeneric.inc:68
+#, php-format
+msgid "A short description of the %s"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:72
-msgid "Special option(s) for this share"
+#: admin/systems/class_workstationGeneric.inc:72
+msgid "Location"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:105
-msgid "You need to configure encodings first"
+#: admin/systems/class_workstationGeneric.inc:73
+#, php-format
+msgid "The location of the %s"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:112
-msgid "Warning"
+#: admin/systems/class_workstationGeneric.inc:77
+#, php-format
+msgid "Lock this %s"
 msgstr ""
 
-#: admin/systems/services/shares/class_serviceShare.inc:112
+#: admin/systems/class_workstationGeneric.inc:78
 #, php-format
-msgid "Invalid value in encodings : %s"
+msgid "This will prevent the %s from being reinstalled"
 msgstr ""
 
 #: admin/systems/services/ldap/class_serviceLDAP.inc:35
@@ -773,178 +850,162 @@ msgstr ""
 msgid "LDAP"
 msgstr ""
 
-#: admin/systems/system-list.xml:10
-msgid "List of systems"
-msgstr ""
-
-#: admin/systems/system-list.xml:39
-msgid "IP"
-msgstr ""
-
-#: admin/systems/system-list.xml:47
-msgid "MAC"
-msgstr ""
-
-#: admin/systems/system-list.xml:71
-msgid "Release"
-msgstr ""
-
-#: admin/systems/system-list.xml:100
-msgid "Trigger action"
+#: admin/systems/services/shares/class_serviceShare.inc:29
+#: admin/systems/services/shares/class_serviceShare.inc:30
+msgid "Share service"
 msgstr ""
 
-#: admin/systems/system-list.xml:107
-msgid "Schedule action"
+#: admin/systems/services/shares/class_serviceShare.inc:42
+msgid "Shares"
 msgstr ""
 
-#: admin/systems/system-list.xml:147
-msgid "New object from template"
+#: admin/systems/services/shares/class_serviceShare.inc:47
+msgid "Shares this server hosts"
 msgstr ""
 
-#: admin/systems/system-list.xml:159
-msgid "Edit system"
+#: admin/systems/services/shares/class_serviceShare.inc:51
+msgid "Name of this share"
 msgstr ""
 
-#: admin/systems/system-list.xml:173
-msgid "Remove system"
+#: admin/systems/services/shares/class_serviceShare.inc:55
+msgid "Description of this share"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:33
-msgid "Phone information"
+#: admin/systems/services/shares/class_serviceShare.inc:59
+msgid "Type of share"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:37
-msgid "Phone hardware"
+#: admin/systems/services/shares/class_serviceShare.inc:64
+msgid "Codepage"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:55
-msgid "The name of the phone"
+#: admin/systems/services/shares/class_serviceShare.inc:64
+msgid "Codepage for this share"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:59
-msgid "A short description of the phone"
+#: admin/systems/services/shares/class_serviceShare.inc:68
+msgid "Path / Volume"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:69
-msgid "The serial number of the phone"
+#: admin/systems/services/shares/class_serviceShare.inc:68
+msgid "Path or volume concerned by this share"
 msgstr ""
 
-#: admin/systems/class_phoneGeneric.inc:73
-msgid "The telephone number of the phone"
+#: admin/systems/services/shares/class_serviceShare.inc:72
+msgid "Option"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:44
-msgid "Systems Management"
+#: admin/systems/services/shares/class_serviceShare.inc:72
+msgid "Special option(s) for this share"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:139
-#: admin/systems/class_systemManagement.inc:155
-msgid "Action canceled"
+#: admin/systems/services/shares/class_serviceShare.inc:105
+msgid "You need to configure encodings first"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:139
-#, php-format
-msgid "System %s has no mac address defined, cannot trigger action"
+#: admin/systems/services/shares/class_serviceShare.inc:112
+msgid "Warning"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:155
+#: admin/systems/services/shares/class_serviceShare.inc:112
 #, php-format
-msgid "System %s is currently installing"
+msgid "Invalid value in encodings : %s"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:175
-#: admin/systems/class_systemManagement.inc:201
-msgid "Infrastructure service"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:29
+#: admin/systems/services/terminal/class_serviceTerminal.inc:30
+#: admin/systems/services/terminal/class_serviceTerminal.inc:41
+msgid "Terminal service"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:177
-msgid "Action triggered"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:44
+msgid "Temporary disable login"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:177
-#, php-format
-msgid "Action called without error (result was \"%s\")"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:45
+msgid "Disables the login on this terminal server"
 msgstr ""
 
-#: admin/systems/class_systemManagement.inc:268
-#, php-format
-msgid "Inherited from %s"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:54
+msgid "Supported session types"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:30
-#: admin/systems/class_printGeneric.inc:35
-#: admin/systems/class_printGeneric.inc:36
-msgid "Printer"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:55
+msgid "The session types supported by this terminal server"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:31
-msgid "Printer information"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:59
+#: admin/systems/class_terminalStartup.inc:71
+msgid "XDMCP"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:62
-msgid "The name of the printer"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:59
+#: admin/systems/class_terminalStartup.inc:71
+msgid "LDM"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:66
-msgid "A short description of the printer"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:59
+#: admin/systems/class_terminalStartup.inc:71
+msgid "Shell"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:72
-msgid "Details"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:59
+#: admin/systems/class_terminalStartup.inc:71
+msgid "Telnet"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:75
-msgid "Printer location"
+#: admin/systems/services/terminal/class_serviceTerminal.inc:59
+#: admin/systems/class_terminalStartup.inc:71
+msgid "Windows RDP"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:75
-msgid "The location of the printer"
+#: admin/systems/class_terminalStartup.inc:32
+msgid "Startup"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:79
-msgid "Printer URL"
+#: admin/systems/class_terminalStartup.inc:33
+msgid "Terminal startup"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:79
-msgid "The URL of the printer"
+#: admin/systems/class_terminalStartup.inc:50
+msgid "Startup parameters"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:85
-#: admin/systems/class_printGeneric.inc:88
-msgid "Users which are allowed to use this printer"
+#: admin/systems/class_terminalStartup.inc:53
+msgid "Root server"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:94
-#: admin/systems/class_printGeneric.inc:97
-msgid "Users which are allowed to administrate this printer"
+#: admin/systems/class_terminalStartup.inc:53
+msgid "The root server the terminal should be using"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:119
-msgid "Windows paths"
+#: admin/systems/class_terminalStartup.inc:57
+msgid "Swap server"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:123
-msgid "Inf file"
+#: admin/systems/class_terminalStartup.inc:57
+msgid "The swap server the terminal should be using"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:123
-msgid "Path to windows inf file for this printer"
+#: admin/systems/class_terminalStartup.inc:63
+msgid "Remote desktop"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:127
-msgid "Driver directory"
+#: admin/systems/class_terminalStartup.inc:67
+msgid "Connect method"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:127
-msgid "Path to directory that contains windows drivers for this printer"
+#: admin/systems/class_terminalStartup.inc:74
+msgid "Terminal server"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:131
-msgid "Driver name"
+#: admin/systems/class_terminalStartup.inc:109
+#: admin/systems/class_terminalStartup.inc:120
+msgid "inherited"
 msgstr ""
 
-#: admin/systems/class_printGeneric.inc:131
-msgid "Windows name of the printer driver"
+#: admin/systems/class_terminalStartup.inc:117
+msgid "Local swap"
 msgstr ""
 
 #: admin/systems/class_terminalGeneric.inc:31
diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po
index e0d966c543..610771fd3c 100644
--- a/systems/locale/es/fusiondirectory.po
+++ b/systems/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po
index e93e7dc47a..bd3f452efc 100644
--- a/systems/locale/es_CO/fusiondirectory.po
+++ b/systems/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po
index 755419f56f..399b85bc52 100644
--- a/systems/locale/es_VE/fusiondirectory.po
+++ b/systems/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po
index 55b7e38cc1..1815435f7c 100644
--- a/systems/locale/fa_IR/fusiondirectory.po
+++ b/systems/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po
index 5c10c6e7eb..ae7c7396e1 100644
--- a/systems/locale/fi_FI/fusiondirectory.po
+++ b/systems/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po
index 51a1a2f5b6..79cda696e3 100644
--- a/systems/locale/fr/fusiondirectory.po
+++ b/systems/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po
index 1833c54ac9..324eda797b 100644
--- a/systems/locale/hu_HU/fusiondirectory.po
+++ b/systems/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po
index 3ae780f481..6a4f90a32b 100644
--- a/systems/locale/id/fusiondirectory.po
+++ b/systems/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 80bfd95f00..2e98a790db 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/systems/locale/ja/fusiondirectory.po b/systems/locale/ja/fusiondirectory.po
index bf958d601e..caa57d2283 100644
--- a/systems/locale/ja/fusiondirectory.po
+++ b/systems/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ko/fusiondirectory.po b/systems/locale/ko/fusiondirectory.po
index b0201c5626..300333bfbf 100644
--- a/systems/locale/ko/fusiondirectory.po
+++ b/systems/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po
index f3e1121285..994043e1bf 100644
--- a/systems/locale/lv/fusiondirectory.po
+++ b/systems/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po
index 1382db6c51..0902f3e20c 100644
--- a/systems/locale/nb/fusiondirectory.po
+++ b/systems/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po
index b00e9b6a18..3b279ee3e1 100644
--- a/systems/locale/nl/fusiondirectory.po
+++ b/systems/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po
index e0658b7c45..f781f18559 100644
--- a/systems/locale/pl/fusiondirectory.po
+++ b/systems/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po
index ffdf0935f6..d89cf2c35c 100644
--- a/systems/locale/pt/fusiondirectory.po
+++ b/systems/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po
index bcde515185..9a5b7bde05 100644
--- a/systems/locale/pt_BR/fusiondirectory.po
+++ b/systems/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po
index cbb20dbafd..7f103d6f46 100644
--- a/systems/locale/ru/fusiondirectory.po
+++ b/systems/locale/ru/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po
index 685e210009..106acf0ff8 100644
--- a/systems/locale/ru@petr1708/fusiondirectory.po
+++ b/systems/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po
index e63e7117ea..97236ab608 100644
--- a/systems/locale/sv/fusiondirectory.po
+++ b/systems/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/systems/locale/tr_TR/fusiondirectory.po b/systems/locale/tr_TR/fusiondirectory.po
index 17479d3c05..8964abe921 100644
--- a/systems/locale/tr_TR/fusiondirectory.po
+++ b/systems/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po
index eb598b15d0..f99981d83a 100644
--- a/systems/locale/ug/fusiondirectory.po
+++ b/systems/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po
index 9dc5c0e662..e84d657565 100644
--- a/systems/locale/vi_VN/fusiondirectory.po
+++ b/systems/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po
index 0902e9b1d4..a25ca503b5 100644
--- a/systems/locale/zh/fusiondirectory.po
+++ b/systems/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/systems/locale/zh_TW/fusiondirectory.po b/systems/locale/zh_TW/fusiondirectory.po
index 3b4e4fbeaa..f3e31feef7 100644
--- a/systems/locale/zh_TW/fusiondirectory.po
+++ b/systems/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/af_ZA/fusiondirectory.po b/user-reminder/locale/af_ZA/fusiondirectory.po
index bdb847b1a2..eda172603c 100644
--- a/user-reminder/locale/af_ZA/fusiondirectory.po
+++ b/user-reminder/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po
index 319bb7ee98..a401037d56 100644
--- a/user-reminder/locale/ar/fusiondirectory.po
+++ b/user-reminder/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po
index 185ed1f5ea..feaa976afa 100644
--- a/user-reminder/locale/ca/fusiondirectory.po
+++ b/user-reminder/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po
index 63de6f0362..f82371e11f 100644
--- a/user-reminder/locale/cs_CZ/fusiondirectory.po
+++ b/user-reminder/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po
index cfc68aaf78..da432efb9e 100644
--- a/user-reminder/locale/de/fusiondirectory.po
+++ b/user-reminder/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po
index 4e4175e833..92e469c34c 100644
--- a/user-reminder/locale/el_GR/fusiondirectory.po
+++ b/user-reminder/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/user-reminder/locale/en/fusiondirectory.po b/user-reminder/locale/en/fusiondirectory.po
index fc2e3eefb2..b3132d320b 100644
--- a/user-reminder/locale/en/fusiondirectory.po
+++ b/user-reminder/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -61,40 +61,90 @@ msgstr ""
 msgid "Email address from which mails will be sent"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:65
-msgid "Alert email settings"
+#: config/user-reminder/class_userReminderConfig.inc:63
+msgid "Allow use of alternate addresses"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:68
-msgid "Forward alerts to the manager"
+#: config/user-reminder/class_userReminderConfig.inc:63
+msgid ""
+"Whether the field gosaMailAlternateAddress should be used as well to send "
+"reminders"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:70
+msgid "Ppolicy email settings"
 msgstr ""
 
 #: config/user-reminder/class_userReminderConfig.inc:73
 #: config/user-reminder/class_userReminderConfig.inc:99
-msgid "Subject"
+msgid "Forward alerts to the manager"
 msgstr ""
 
 #: config/user-reminder/class_userReminderConfig.inc:73
+msgid "Forward ppolicy alerts to the manager"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:78
+#: config/user-reminder/class_userReminderConfig.inc:104
+#: config/user-reminder/class_userReminderConfig.inc:130
+msgid "Subject"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:78
+msgid "Subject of the ppolicy alert email"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:80
+msgid "[FusionDirectory] Your password is about to expire"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:83
+#: config/user-reminder/class_userReminderConfig.inc:135
+#, php-format
+msgid "Body (%s are cn and login)"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:84
+#, php-format
+msgid ""
+"Body of the ppolicy alert email, sent when the user password is about to "
+"expire. Use %s for the cn and uid."
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:86
+#, php-format
+msgid ""
+"Dear %1$s,\n"
+"your password for account %2$s is about to expire, please change your "
+"password: \n"
+"https://"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:96
+msgid "Alert email settings"
+msgstr ""
+
+#: config/user-reminder/class_userReminderConfig.inc:104
 msgid "Subject of the alert email"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:75
+#: config/user-reminder/class_userReminderConfig.inc:106
 msgid "[FusionDirectory] Your account is about to expire"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:78
+#: config/user-reminder/class_userReminderConfig.inc:109
 #, php-format
 msgid "Body (%s are cn, login, and link token)"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:79
+#: config/user-reminder/class_userReminderConfig.inc:110
 #, php-format
 msgid ""
 "Body of the alert email, sent when the user is about to expire. Use %s for "
 "the cn, uid and token."
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:81
+#: config/user-reminder/class_userReminderConfig.inc:112
 #, php-format
 msgid ""
 "Dear %1$s,\n"
@@ -102,59 +152,54 @@ msgid ""
 "https://"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:91
+#: config/user-reminder/class_userReminderConfig.inc:122
 msgid "Confirmation email settings"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:94
+#: config/user-reminder/class_userReminderConfig.inc:125
 msgid "Forward confirmation to the manager"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:94
+#: config/user-reminder/class_userReminderConfig.inc:125
 msgid "Forward account extension confirmation to the manager"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:99
+#: config/user-reminder/class_userReminderConfig.inc:130
 msgid "Subject of the confirmation email"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:101
+#: config/user-reminder/class_userReminderConfig.inc:132
 msgid "[FusionDirectory] Your account expiration has been postponed"
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:104
-#, php-format
-msgid "Body (%s are cn and login)"
-msgstr ""
-
-#: config/user-reminder/class_userReminderConfig.inc:105
+#: config/user-reminder/class_userReminderConfig.inc:136
 #, php-format
 msgid ""
 "Body of the confirmation email, sent when the user has postponed expiration. "
 "Use %s for the cn and uid."
 msgstr ""
 
-#: config/user-reminder/class_userReminderConfig.inc:107
+#: config/user-reminder/class_userReminderConfig.inc:138
 #, php-format
 msgid ""
 "Dear %1$s,\n"
 " your account %2$s expiration has been successfully postponed.\n"
 msgstr ""
 
-#: html/class_expiredUserPostpone.inc:58
+#: html/class_expiredUserPostpone.inc:59
 msgid "This token is invalid"
 msgstr ""
 
-#: html/class_expiredUserPostpone.inc:197
+#: html/class_expiredUserPostpone.inc:205
 msgid "Contact your administrator, there was a problem with mail server"
 msgstr ""
 
-#: html/class_expiredUserPostpone.inc:206
+#: html/class_expiredUserPostpone.inc:214
 #, php-format
 msgid "Did not find an account with login \"%s\""
 msgstr ""
 
-#: html/class_expiredUserPostpone.inc:209
+#: html/class_expiredUserPostpone.inc:217
 #, php-format
 msgid "Found multiple accounts with login \"%s\""
 msgstr ""
diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po
index 77e2c3792e..4140f2bfe5 100644
--- a/user-reminder/locale/es/fusiondirectory.po
+++ b/user-reminder/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po
index 324a12152f..4de1725d2d 100644
--- a/user-reminder/locale/es_CO/fusiondirectory.po
+++ b/user-reminder/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po
index 56df43f507..e1e1132352 100644
--- a/user-reminder/locale/es_VE/fusiondirectory.po
+++ b/user-reminder/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po
index 25c20500d1..7b9d14e53a 100644
--- a/user-reminder/locale/fa_IR/fusiondirectory.po
+++ b/user-reminder/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po
index 747e24b9ce..2d781ba317 100644
--- a/user-reminder/locale/fi_FI/fusiondirectory.po
+++ b/user-reminder/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po
index c18e05a7ba..15bfe87d57 100644
--- a/user-reminder/locale/fr/fusiondirectory.po
+++ b/user-reminder/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po
index 5788223fea..839b0d5c22 100644
--- a/user-reminder/locale/hu_HU/fusiondirectory.po
+++ b/user-reminder/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po
index 3990c37ec6..edc5853bfe 100644
--- a/user-reminder/locale/id/fusiondirectory.po
+++ b/user-reminder/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index 69f2b1cb7d..120c63f2ea 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/user-reminder/locale/ja/fusiondirectory.po b/user-reminder/locale/ja/fusiondirectory.po
index cce24c08e9..a8677a0a9c 100644
--- a/user-reminder/locale/ja/fusiondirectory.po
+++ b/user-reminder/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ko/fusiondirectory.po b/user-reminder/locale/ko/fusiondirectory.po
index a75a3e0c9c..0db80f7c77 100644
--- a/user-reminder/locale/ko/fusiondirectory.po
+++ b/user-reminder/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po
index f0e5dd36cc..ca0e80ca06 100644
--- a/user-reminder/locale/lv/fusiondirectory.po
+++ b/user-reminder/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po
index 0440f70c5c..17661f8570 100644
--- a/user-reminder/locale/nb/fusiondirectory.po
+++ b/user-reminder/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po
index e27e593b1e..716b97441e 100644
--- a/user-reminder/locale/nl/fusiondirectory.po
+++ b/user-reminder/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po
index 6969f0f53b..1f6651c5bb 100644
--- a/user-reminder/locale/pl/fusiondirectory.po
+++ b/user-reminder/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po
index 8589cbaaed..1d0abcde9d 100644
--- a/user-reminder/locale/pt/fusiondirectory.po
+++ b/user-reminder/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po
index ccc42bbd1a..d779cde38d 100644
--- a/user-reminder/locale/pt_BR/fusiondirectory.po
+++ b/user-reminder/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po
index d46c07ec39..cc6c3db2e3 100644
--- a/user-reminder/locale/ru/fusiondirectory.po
+++ b/user-reminder/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po
index af0034e8c8..d03538e72c 100644
--- a/user-reminder/locale/ru@petr1708/fusiondirectory.po
+++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po
index 4367e88dc8..2b359202e8 100644
--- a/user-reminder/locale/sv/fusiondirectory.po
+++ b/user-reminder/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/user-reminder/locale/tr_TR/fusiondirectory.po b/user-reminder/locale/tr_TR/fusiondirectory.po
index 8e71bd1f6d..6d07841eb0 100644
--- a/user-reminder/locale/tr_TR/fusiondirectory.po
+++ b/user-reminder/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po
index 19bc8a2d65..3568d842c2 100644
--- a/user-reminder/locale/ug/fusiondirectory.po
+++ b/user-reminder/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po
index a412ac9489..07e387c79f 100644
--- a/user-reminder/locale/vi_VN/fusiondirectory.po
+++ b/user-reminder/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po
index b4c9d12d1a..c88cbb8129 100644
--- a/user-reminder/locale/zh/fusiondirectory.po
+++ b/user-reminder/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/user-reminder/locale/zh_TW/fusiondirectory.po b/user-reminder/locale/zh_TW/fusiondirectory.po
index 1f59100f61..a82665fa57 100644
--- a/user-reminder/locale/zh_TW/fusiondirectory.po
+++ b/user-reminder/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/af_ZA/fusiondirectory.po b/weblink/locale/af_ZA/fusiondirectory.po
index 58ebd07b19..bf234fb41d 100644
--- a/weblink/locale/af_ZA/fusiondirectory.po
+++ b/weblink/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po
index d591b55f88..051c274c7f 100644
--- a/weblink/locale/ar/fusiondirectory.po
+++ b/weblink/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po
index 9e983f38bf..cf676d4801 100644
--- a/weblink/locale/ca/fusiondirectory.po
+++ b/weblink/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po
index 506e4ec2bd..c89254287f 100644
--- a/weblink/locale/cs_CZ/fusiondirectory.po
+++ b/weblink/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po
index e49b26f73a..f682144da9 100644
--- a/weblink/locale/de/fusiondirectory.po
+++ b/weblink/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po
index 1ff9cccf4e..793bc36103 100644
--- a/weblink/locale/el_GR/fusiondirectory.po
+++ b/weblink/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/weblink/locale/en/fusiondirectory.po b/weblink/locale/en/fusiondirectory.po
index 6253cb7628..a66a4fe6b1 100644
--- a/weblink/locale/en/fusiondirectory.po
+++ b/weblink/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -18,7 +18,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
-#: admin/systems/weblink/class_webLink.inc:44
 msgid "Web link"
 msgstr ""
 
@@ -26,18 +25,31 @@ msgstr ""
 msgid "Edit web link"
 msgstr ""
 
-#: admin/systems/weblink/class_webLink.inc:47
+#: admin/systems/weblink/class_webLink.inc:46
+#: admin/systems/weblink/class_webLink.inc:49
+msgid "Links"
+msgstr ""
+
+#: admin/systems/weblink/class_webLink.inc:49
+msgid "Web links to this computer"
+msgstr ""
+
+#: admin/systems/weblink/class_webLink.inc:55
+msgid "Settings"
+msgstr ""
+
+#: admin/systems/weblink/class_webLink.inc:58
 msgid "Protocol"
 msgstr ""
 
-#: admin/systems/weblink/class_webLink.inc:47
+#: admin/systems/weblink/class_webLink.inc:58
 msgid "Protocol to use to access this computer Web page"
 msgstr ""
 
-#: admin/systems/weblink/class_webLink.inc:52
-msgid "Links"
+#: admin/systems/weblink/class_webLink.inc:64
+msgid "Arbitrary links"
 msgstr ""
 
-#: admin/systems/weblink/class_webLink.inc:52
-msgid "Web links to this computer"
+#: admin/systems/weblink/class_webLink.inc:64
+msgid "Any URL you want to associate to this computer"
 msgstr ""
diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po
index d68a2d35a3..1cb037197b 100644
--- a/weblink/locale/es/fusiondirectory.po
+++ b/weblink/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po
index 31c88f6328..d538842368 100644
--- a/weblink/locale/es_CO/fusiondirectory.po
+++ b/weblink/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po
index ff7c6ce55d..bae24d19d4 100644
--- a/weblink/locale/es_VE/fusiondirectory.po
+++ b/weblink/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po
index 85be0972ad..ba3e72a332 100644
--- a/weblink/locale/fa_IR/fusiondirectory.po
+++ b/weblink/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po
index 89c3bfd1a2..dfb1ae24d8 100644
--- a/weblink/locale/fi_FI/fusiondirectory.po
+++ b/weblink/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po
index 2366a2471f..87c664a732 100644
--- a/weblink/locale/fr/fusiondirectory.po
+++ b/weblink/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po
index 785e7aecb7..6707be750d 100644
--- a/weblink/locale/hu_HU/fusiondirectory.po
+++ b/weblink/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po
index 664011aa08..173317639c 100644
--- a/weblink/locale/id/fusiondirectory.po
+++ b/weblink/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index 23067f5e97..2ee79fdfb6 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/weblink/locale/ja/fusiondirectory.po b/weblink/locale/ja/fusiondirectory.po
index 094f72c3a1..bff2f09d67 100644
--- a/weblink/locale/ja/fusiondirectory.po
+++ b/weblink/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ko/fusiondirectory.po b/weblink/locale/ko/fusiondirectory.po
index 8c163c71ec..90d6d18d93 100644
--- a/weblink/locale/ko/fusiondirectory.po
+++ b/weblink/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po
index 896b21b306..e4a620e74b 100644
--- a/weblink/locale/lv/fusiondirectory.po
+++ b/weblink/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po
index ae4e45f69a..0c4945d0d1 100644
--- a/weblink/locale/nb/fusiondirectory.po
+++ b/weblink/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po
index 0609fae882..9b05d4f9e0 100644
--- a/weblink/locale/nl/fusiondirectory.po
+++ b/weblink/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po
index 7ff92b37a0..7d4f4f2a74 100644
--- a/weblink/locale/pl/fusiondirectory.po
+++ b/weblink/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po
index 291dc05968..0bb4b39798 100644
--- a/weblink/locale/pt/fusiondirectory.po
+++ b/weblink/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po
index 75d398c811..d3d91719c3 100644
--- a/weblink/locale/pt_BR/fusiondirectory.po
+++ b/weblink/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po
index 74e7f25983..3a036e8fc3 100644
--- a/weblink/locale/ru/fusiondirectory.po
+++ b/weblink/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po
index 279b644123..8554bfef36 100644
--- a/weblink/locale/ru@petr1708/fusiondirectory.po
+++ b/weblink/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po
index d7f143ba21..66b97f3e59 100644
--- a/weblink/locale/sv/fusiondirectory.po
+++ b/weblink/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/tr_TR/fusiondirectory.po b/weblink/locale/tr_TR/fusiondirectory.po
index af52e5b1e2..a2fcf29afa 100644
--- a/weblink/locale/tr_TR/fusiondirectory.po
+++ b/weblink/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po
index babc83cf68..10c316c170 100644
--- a/weblink/locale/ug/fusiondirectory.po
+++ b/weblink/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po
index 292d1c20b3..1ee8d0657c 100644
--- a/weblink/locale/vi_VN/fusiondirectory.po
+++ b/weblink/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po
index bfe78804b5..e0a65d77aa 100644
--- a/weblink/locale/zh/fusiondirectory.po
+++ b/weblink/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh_TW/fusiondirectory.po b/weblink/locale/zh_TW/fusiondirectory.po
index 3bea52931a..8bcffabd2a 100644
--- a/weblink/locale/zh_TW/fusiondirectory.po
+++ b/weblink/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/af_ZA/fusiondirectory.po b/webservice/locale/af_ZA/fusiondirectory.po
index 25179e94bd..870109fae7 100644
--- a/webservice/locale/af_ZA/fusiondirectory.po
+++ b/webservice/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po
index 26eb557730..f616d2b736 100644
--- a/webservice/locale/ar/fusiondirectory.po
+++ b/webservice/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po
index 66e07ecd0a..31a3c72653 100644
--- a/webservice/locale/ca/fusiondirectory.po
+++ b/webservice/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po
index 6790e0cba2..83e359a536 100644
--- a/webservice/locale/cs_CZ/fusiondirectory.po
+++ b/webservice/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po
index 9c52c6d229..10bfe1fd28 100644
--- a/webservice/locale/de/fusiondirectory.po
+++ b/webservice/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po
index c9aa3b25bb..8be41a2c27 100644
--- a/webservice/locale/el_GR/fusiondirectory.po
+++ b/webservice/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/webservice/locale/en/fusiondirectory.po b/webservice/locale/en/fusiondirectory.po
index 7637233ffb..758edff9e7 100644
--- a/webservice/locale/en/fusiondirectory.po
+++ b/webservice/locale/en/fusiondirectory.po
@@ -1,6 +1,6 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR FusionDirectory Project
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2017-08-02 11:45+0200\n"
+"POT-Creation-Date: 2020-03-20 17:43+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -37,52 +37,62 @@ msgstr ""
 msgid "Allow only HTTPS JSON-RPC requests"
 msgstr ""
 
-#: html/jsonrpc.php:52
+#: html/jsonrpc.php:55
 #, php-format
 msgid "FusionDirectory configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: html/jsonrpc.php:62
+#: html/jsonrpc.php:65
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: html/jsonrpc.php:317 html/jsonrpc.php:400
+#: html/jsonrpc.php:342 html/jsonrpc.php:425
 msgid "Plugin"
 msgstr ""
 
-#: html/jsonrpc.php:492
+#: html/jsonrpc.php:522
+#, php-format
+msgid "Field \"%s\" is not multi-valuated"
+msgstr ""
+
+#: html/jsonrpc.php:537
+#, php-format
+msgid "Unknown field \"%s\""
+msgstr ""
+
+#: html/jsonrpc.php:592
 #, php-format
 msgid "Cannot delete %s. It has been locked by %s."
 msgstr ""
 
-#: html/jsonrpc.php:539 html/jsonrpc.php:568
+#: html/jsonrpc.php:639 html/jsonrpc.php:668
 #, php-format
 msgid ""
 "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: html/jsonrpc.php:564
+#: html/jsonrpc.php:664
 #, php-format
 msgid ""
 "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: html/jsonrpc.php:571
+#: html/jsonrpc.php:671
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
 
-#: html/jsonrpc.php:609 html/jsonrpc.php:618
+#: html/jsonrpc.php:709 html/jsonrpc.php:718
 #, php-format
 msgid "Failed to get password method for account \"%s\""
 msgstr ""
 
-#: html/jsonrpc.php:621
+#: html/jsonrpc.php:721
 #, php-format
 msgid "Could not find account \"%s\" in LDAP"
 msgstr ""
 
-#: html/jsonrpc.php:665
+#: html/jsonrpc.php:765
 msgid "This token is invalid"
 msgstr ""
diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po
index 803c73e4f1..47da66d99f 100644
--- a/webservice/locale/es/fusiondirectory.po
+++ b/webservice/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po
index 1ab1a9042e..37d2b59d2d 100644
--- a/webservice/locale/es_CO/fusiondirectory.po
+++ b/webservice/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po
index aa2e8be863..f7252a63af 100644
--- a/webservice/locale/es_VE/fusiondirectory.po
+++ b/webservice/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po
index eb41634a9d..885fd96d9a 100644
--- a/webservice/locale/fa_IR/fusiondirectory.po
+++ b/webservice/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po
index 9e585a2c4f..9729e4c802 100644
--- a/webservice/locale/fi_FI/fusiondirectory.po
+++ b/webservice/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po
index 7736647225..e1ebab1a94 100644
--- a/webservice/locale/fr/fusiondirectory.po
+++ b/webservice/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po
index c2f1f4e28f..5adb25f81b 100644
--- a/webservice/locale/hu_HU/fusiondirectory.po
+++ b/webservice/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po
index 8f30b3ee73..f64c727626 100644
--- a/webservice/locale/id/fusiondirectory.po
+++ b/webservice/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index 147967d36f..3aaaab85e8 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/webservice/locale/ja/fusiondirectory.po b/webservice/locale/ja/fusiondirectory.po
index bf8388db91..28b558fd9f 100644
--- a/webservice/locale/ja/fusiondirectory.po
+++ b/webservice/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ko/fusiondirectory.po b/webservice/locale/ko/fusiondirectory.po
index 98c0d8ccb4..082be0c6c8 100644
--- a/webservice/locale/ko/fusiondirectory.po
+++ b/webservice/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po
index 135447e100..a03ecebf2a 100644
--- a/webservice/locale/lv/fusiondirectory.po
+++ b/webservice/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po
index 6887f2c3e8..9a4f3b11b5 100644
--- a/webservice/locale/nb/fusiondirectory.po
+++ b/webservice/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po
index 86fe3042b6..350ccefcce 100644
--- a/webservice/locale/nl/fusiondirectory.po
+++ b/webservice/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po
index 960b8c8712..00b471c1f1 100644
--- a/webservice/locale/pl/fusiondirectory.po
+++ b/webservice/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po
index 01e5fc7977..ea0127bc7e 100644
--- a/webservice/locale/pt/fusiondirectory.po
+++ b/webservice/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po
index 56e734cb75..664b0944d2 100644
--- a/webservice/locale/pt_BR/fusiondirectory.po
+++ b/webservice/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po
index 118a1f84fe..5acffe5bf1 100644
--- a/webservice/locale/ru/fusiondirectory.po
+++ b/webservice/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po
index 76e6177905..7c798df123 100644
--- a/webservice/locale/ru@petr1708/fusiondirectory.po
+++ b/webservice/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po
index ca5c3426b3..31ccd802f3 100644
--- a/webservice/locale/sv/fusiondirectory.po
+++ b/webservice/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/webservice/locale/tr_TR/fusiondirectory.po b/webservice/locale/tr_TR/fusiondirectory.po
index 18bc23f53e..b6a98d9013 100644
--- a/webservice/locale/tr_TR/fusiondirectory.po
+++ b/webservice/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po
index 09aad9dc00..e5f79ec2fd 100644
--- a/webservice/locale/ug/fusiondirectory.po
+++ b/webservice/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po
index 25edaf6af6..d4b259e3f3 100644
--- a/webservice/locale/vi_VN/fusiondirectory.po
+++ b/webservice/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po
index f4ca3b8686..a96c0dc244 100644
--- a/webservice/locale/zh/fusiondirectory.po
+++ b/webservice/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/zh_TW/fusiondirectory.po b/webservice/locale/zh_TW/fusiondirectory.po
index 3c61379d35..0de9001d6a 100644
--- a/webservice/locale/zh_TW/fusiondirectory.po
+++ b/webservice/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2019-11-13 11:01+0000\n"
+"POT-Creation-Date: 2020-03-05 20:21+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
-- 
GitLab


From 7ae44c3964d1b2edc5180dec5c421333cd54075b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Wed, 22 Jul 2020 14:24:49 +0200
Subject: [PATCH 26/73] :ambulance: fix(dhcp) Avoid crash in DHCP tab of
 network devices

IPs and Macs are not arrays in this case

issue #6063
---
 dhcp/admin/systems/class_dhcpSystem.inc | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/dhcp/admin/systems/class_dhcpSystem.inc b/dhcp/admin/systems/class_dhcpSystem.inc
index 53c2a5aac3..0b43313e51 100644
--- a/dhcp/admin/systems/class_dhcpSystem.inc
+++ b/dhcp/admin/systems/class_dhcpSystem.inc
@@ -156,10 +156,23 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
   }
 
   /* Special LDAP treatment that this attribute does after plugin ldap save */
-  function postLdapSave ($ldap, $fullrewrite, $ipchanged, array $oldips, array $newips, $macchanged, array $oldmacs, array $newmacs)
+  function postLdapSave ($ldap, $fullrewrite, $ipchanged, $oldips, $newips, $macchanged, $oldmacs, $newmacs)
   {
     global $config, $ui;
 
+    if (!is_array($oldips)) {
+      $oldips = [$oldips];
+    }
+    if (!is_array($newips)) {
+      $newips = [$newips];
+    }
+    if (!is_array($oldmacs)) {
+      $oldmacs = [$oldmacs];
+    }
+    if (!is_array($newmacs)) {
+      $newmacs = [$newmacs];
+    }
+
     if ($this->plugin->is_template) {
       return;
     }
-- 
GitLab


From 0385c87dd96b6d0ded360c4e855577374ff6c04c Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Thu, 20 Aug 2020 13:33:14 +0200
Subject: [PATCH 27/73] :sparkles: feat(bestpracticebadge) add best practice
 badge

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/README.md b/README.md
index d0cd7e6135..21dfd19b81 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,10 @@ You can [register on our system][register] and enter issues [FusionDirectory][is
 * You should treat IRC as what it is: asynchronous chat.  Sure the messages can
   be instant but in most channels people are in different time zones.  At times
   chat replies can be in excess of 24hrs.
+
+### Best practice badge
+
+[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/351/badge)](https://bestpractices.coreinfrastructure.org/projects/351)
   
 ## Donate
 
-- 
GitLab


From a025acef5659c596724140efde6cfc38b79ed939 Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Fri, 28 Aug 2020 09:48:03 +0200
Subject: [PATCH 28/73] :handshake: fix(crowfunding) change the donate part to
 add all the crowfunding possibilities

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 README.md | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 21dfd19b81..4f13688392 100644
--- a/README.md
+++ b/README.md
@@ -66,9 +66,17 @@ You can [register on our system][register] and enter issues [FusionDirectory][is
 
 [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/351/badge)](https://bestpractices.coreinfrastructure.org/projects/351)
   
-## Donate
+## Crowfunding
 
-If you like [FusionDirectory][FusionDirectory] and would like to [donate][donate-liberapay] even a small amount you can go to our Liberapay account
+If you like us and want to send us a small contribution you can use the following crowfunding services
+
+* [liberapay] [donate-liberapay]: https://liberapay.com/fusiondirectory/donate
+
+* [kofi][donate-kofi]: https://ko-fi.com/fusiondirectory
+
+* [opencollective][donate-opencollective]: https://opencollective.com/fusiondirectory
+
+* [communitybridge][donate-communitybridge]: https://funding.communitybridge.org/projects/fusiondirectory
   
 ## License
 
@@ -87,3 +95,9 @@ If you like [FusionDirectory][FusionDirectory] and would like to [donate][donate
 [issues-plugins]: https://gitlab.fusiondirectory.org/fusiondirectory/fd-plugins/issues
 
 [donate-liberapay]: https://liberapay.com/fusiondirectory/donate
+
+[donate-kofi]: https://ko-fi.com/fusiondirectory
+
+[donate-opencollective]: https://opencollective.com/fusiondirectory
+
+[donate-communitybridge]: https://funding.communitybridge.org/projects/fusiondirectory
-- 
GitLab


From 618be0d3b5c37a04bb299c47c11f6c65222dbc8c Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Wed, 2 Sep 2020 11:38:05 +0200
Subject: [PATCH 29/73] :sparkles: feat(ci): Add tar.gz build and packages
 triggering

Add tar.gz build and packages triggering
---
 .gitlab-ci.yml | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 12c9ddf56d..386bfb05b3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,7 @@ stages:
   - manpages
   - transifex
   - tarballs
+  - trigger
 
 ## Stage lint
 
@@ -106,13 +107,16 @@ update-transifex:
 build-tarballs:
   stage: tarballs
   only:
-    - tags
+    - 1.3-fixes
   script:
-    - tar -cvzf fusiondirectory-plugins.tar.gz *
+    - mkdir ../fusiondirectory-plugins-1.3.1/
+    - mv ./* ../fusiondirectory-plugins-1.3.1/
+    - mv  ../fusiondirectory-plugins-1.3.1/ ./
+    - tar -cvzf fusiondirectory-plugins-1.3.1.tar.gz *
   artifacts:
     paths:
-    - fusiondirectory-plugins.tar.gz
-    expire_in: 1h
+      - fusiondirectory-plugins-1.3.1.tar.gz
+    expire_in: 30d
 
 build-release:
   stage: tarballs
@@ -123,3 +127,19 @@ build-release:
   artifacts:
     paths:
       - fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz
+
+trigger-ci-debian:
+  stage: trigger
+  only:
+    - 1.3-fixes
+  trigger:
+    project: debian/fusiondirectory
+    branch: 1.3-fixes
+
+trigger-ci-redhat:
+  stage: trigger
+  only:
+    - 1.3-fixes
+  trigger:
+    project: redhat/fusiondirectory
+    branch: 1.3-fixes
\ No newline at end of file
-- 
GitLab


From 1971123f35c9cf0eaf69dc7eaa9136fa108a8129 Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Mon, 7 Sep 2020 10:00:47 +0200
Subject: [PATCH 30/73] :sparkles: feat(ci): Update centos7-fixes git

Update centos7-fixes git
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 386bfb05b3..37b25f088e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -136,10 +136,10 @@ trigger-ci-debian:
     project: debian/fusiondirectory
     branch: 1.3-fixes
 
-trigger-ci-redhat:
+trigger-ci-centos7:
   stage: trigger
   only:
     - 1.3-fixes
   trigger:
-    project: redhat/fusiondirectory
-    branch: 1.3-fixes
\ No newline at end of file
+    project: centos/centos7-fixes
+    branch: master
\ No newline at end of file
-- 
GitLab


From 83b6aacae31a7f6b6eeb9304c1f3c8aa5139d981 Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Wed, 23 Sep 2020 12:12:19 +0200
Subject: [PATCH 31/73] :sparkles: feat(ci): Update .gitlab-ci.yml for using
 our registry and update sonar-cli

Update .gitlab-ci.yml for using our registry and update sonar-cli
---
 .gitlab-ci.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 37b25f088e..1eeb33a651 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,8 +36,8 @@ create_php_lint_rapport_stretch:
 ## Stage codestyle
 
 # PHP codesniffer
-create_php_code_sniffer_rapport_13:
-  image: phpcodesniffer-cli:stretch
+create_php_code_sniffer_rapport:
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:stretch
   stage: codestyle
   only:
     - branches
@@ -48,7 +48,7 @@ create_php_code_sniffer_rapport_13:
 
 # Sonar publishing
 sonar_publish:
-  image: sonar-cli:3.1.0.1141
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
   stage: codestyle
   only:
     - 1.3-dev
@@ -65,7 +65,7 @@ sonar_publish:
 
 # Sonar preview
 sonar_preview:
-  image: sonar-cli:3.1.0.1141
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
   stage: codestyle
   except:
     - 1.3-dev
@@ -83,7 +83,7 @@ sonar_preview:
 
 # fusiondirectory-update-locale
 fusiondirectory-update-locale:
-  image: transifex-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/transifex-cli:stretch
   stage: transifex
   only:
     - branches
@@ -93,7 +93,7 @@ fusiondirectory-update-locale:
 
 # Update transifex
 update-transifex:
-  image: transifex-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/transifex-cli:stretch
   stage: transifex
   only:
     - /^1.*$/
@@ -142,4 +142,4 @@ trigger-ci-centos7:
     - 1.3-fixes
   trigger:
     project: centos/centos7-fixes
-    branch: master
\ No newline at end of file
+    branch: master
-- 
GitLab


From 2dc0da194df204f90be4edde31a281a2c515c989 Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Thu, 24 Sep 2020 10:19:17 +0200
Subject: [PATCH 32/73] :sparkles: feat(ci): Exclude legacy and breezy icons
 for sonar

Exclude legacy and breezy icons for sonar
---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1eeb33a651..16a63f1c33 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -58,7 +58,7 @@ sonar_publish:
       -D sonar.projectName=FusionDirectory-Plugins-Dev
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc'
+      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**'
       -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
       -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
       -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
@@ -75,7 +75,7 @@ sonar_preview:
       -D sonar.projectName=FusionDirectory-Plugins-Dev
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc'
+      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**'
       -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
       -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
       -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
-- 
GitLab


From a50a9cdb3070e6e27dc19e7222eb6a768119eb8a Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Thu, 24 Sep 2020 10:33:46 +0200
Subject: [PATCH 33/73] :sparkles: feat(ci): Exclude default_icon.png from
 applications for sonar

Exclude default_icon.png from applications for sonar
---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 16a63f1c33..32d657a798 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -58,7 +58,7 @@ sonar_publish:
       -D sonar.projectName=FusionDirectory-Plugins-Dev
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**'
+      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
       -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
       -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
       -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
@@ -75,7 +75,7 @@ sonar_preview:
       -D sonar.projectName=FusionDirectory-Plugins-Dev
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**'
+      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
       -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
       -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
       -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
-- 
GitLab


From 9ff893814786e90175c8e2d68ec150abf7c4469b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be>
Date: Tue, 3 Sep 2019 15:32:39 +0000
Subject: [PATCH 34/73] Merge branch '5963-error-in-sinaps-workflow' into
 '1.4-dev'

Resolve "error in SINAPS workflow"

See merge request fusiondirectory/fd-plugins!619

(cherry picked from commit ea78784bcdcb1055d836bc2d457e29bbecc592e5)

cbdce345 :ambulance: fix(sinaps) Do not fill identifiantObjApp for deletions
---
 sinaps/include/class_sinapsDiffusionHandlerJob.inc | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/sinaps/include/class_sinapsDiffusionHandlerJob.inc b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
index 3e3a55a2c9..2f23f40090 100644
--- a/sinaps/include/class_sinapsDiffusionHandlerJob.inc
+++ b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
@@ -183,7 +183,11 @@ class sinapsDiffusionHandlerJob
           }
         }
         $values['supannAccount']['supannRefId'] = array_values(array_unique($values['supannAccount']['supannRefId']));
-        $message = 'User updated';
+        if ($values['lock']) {
+          $message = 'User deleted';
+        } else {
+          $message = 'User updated';
+        }
       }
     } else {
       if ($values['lock']) {
@@ -196,7 +200,12 @@ class sinapsDiffusionHandlerJob
     if ($error !== TRUE) {
       $this->sendAcquittementFonctionnel(sinapsRequest::acquittementFonctionnel(200, 15, strip_tags(implode(', ', $error))));
     } else {
-      $this->sendAcquittementFonctionnel(sinapsRequest::acquittementFonctionnel(200, 0, $message, $idObjApp));
+      if ($values['lock']) {
+        /* $values['lock'] means this was a deletion, so we must not send an object identifier in the answer */
+        $this->sendAcquittementFonctionnel(sinapsRequest::acquittementFonctionnel(200, 0, $message));
+      } else {
+        $this->sendAcquittementFonctionnel(sinapsRequest::acquittementFonctionnel(200, 0, $message, $idObjApp));
+      }
     }
   }
 
-- 
GitLab


From a2bd0626b79088f9dedd9ccd9e1ff3a70e493e6b Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Fri, 27 Nov 2020 16:48:53 +0100
Subject: [PATCH 35/73] :ambulance: fix(gitlab-ci) remove the GIT_SSL_NO_VERIFY
 insecure variable

---
 .gitlab-ci.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 32d657a798..adafaf219e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,10 +1,6 @@
 # Specify docker image
 image: debian:stretch
 
-# Define variable to disable SSL verification of GIT
-variables:
-  GIT_SSL_NO_VERIFY: "true"
-
 stages:
   - lint
   - codestyle
-- 
GitLab


From 29613a0b65b0497079132c4078c2073d39cde2d8 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 15 Dec 2020 11:39:28 +0100
Subject: [PATCH 36/73] Update .gitlab-ci.yml update with then new sonar
 project name

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index adafaf219e..45cd365be4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -47,11 +47,11 @@ sonar_publish:
   image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
   stage: codestyle
   only:
-    - 1.3-dev
+    - 1.3-fixes
   script:
     - /home/sonar/*/bin/sonar-scanner
-      -D sonar.projectKey=fusiondirectory-plugins-dev
-      -D sonar.projectName=FusionDirectory-Plugins-Dev
+      -D sonar.projectKey=FusionDirectory-Plugins-13
+      -D sonar.projectName=FusionDirectory-Plugins-1.3
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
       -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
@@ -64,11 +64,11 @@ sonar_preview:
   image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
   stage: codestyle
   except:
-    - 1.3-dev
+    - 1.3-fixes
   script:
     - /home/sonar/*/bin/sonar-scanner
-      -D sonar.projectKey=fusiondirectory-plugins-dev
-      -D sonar.projectName=FusionDirectory-Plugins-Dev
+      -D sonar.projectKey=FusionDirectory-Plugins-13
+      -D sonar.projectName=FusionDirectory-Plugins-1.3
       -D sonar.projectVersion=1.3
       -D sonar.sourceEncoding=UTF-8
       -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
-- 
GitLab


From 86b58b9443d951b53667b665c79e2ad51998ee8e Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Thu, 17 Dec 2020 16:57:54 +0100
Subject: [PATCH 37/73] :ambulance: fix(gitab-ci): Remove dev-tools directory
 before clone if it exist

Remove dev-tools directory before clone if it exist
---
 .gitlab-ci.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 45cd365be4..d6f3c3ed98 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -38,6 +38,7 @@ create_php_code_sniffer_rapport:
   only:
     - branches
   script:
+    - test -d ../dev-tools/ && rm -Rf ../dev-tools/
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
@@ -84,6 +85,7 @@ fusiondirectory-update-locale:
   only:
     - branches
   script:
+    - test -d ../dev-tools/ && rm -Rf ../dev-tools/
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins
 
@@ -94,6 +96,7 @@ update-transifex:
   only:
     - /^1.*$/
   script:
+    - test -d ../dev-tools/ && rm -Rf ../dev-tools/
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
     - tx pull -a -f
-- 
GitLab


From c6c36031f77d954d222cec91eb19dee9840a8a0b Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Sun, 3 Jan 2021 15:12:06 +0100
Subject: [PATCH 38/73] :ambulance: fix(crowfunding) change the donate part to
 add all the crowfunding possibilities

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 4f13688392..88ea7537e4 100644
--- a/README.md
+++ b/README.md
@@ -70,13 +70,13 @@ You can [register on our system][register] and enter issues [FusionDirectory][is
 
 If you like us and want to send us a small contribution you can use the following crowfunding services
 
-* [liberapay] [donate-liberapay]: https://liberapay.com/fusiondirectory/donate
+* [donate-liberapay]
 
-* [kofi][donate-kofi]: https://ko-fi.com/fusiondirectory
+* [donate-kofi]
 
-* [opencollective][donate-opencollective]: https://opencollective.com/fusiondirectory
+* [donate-opencollective]
 
-* [communitybridge][donate-communitybridge]: https://funding.communitybridge.org/projects/fusiondirectory
+* [donate-communitybridge]
   
 ## License
 
-- 
GitLab


From dff58a559afa9240bb98b634849558f6d4b03140 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Sun, 3 Jan 2021 22:23:15 +0100
Subject: [PATCH 39/73] :sparkles: feat(security-github) add a security.md for
 github compliance

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 SECURITY.md | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 SECURITY.md

diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000000..6eb0a87ed8
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,22 @@
+### Reporting Security Vulnerabilities
+
+Although we try to be proactive in preventing security concerns, it is unfortunately inevitable that security breaches will be discovered in all software, including our own.
+
+It is common practice in open source to disclose a security concern to the vendor in a responsible and private manner prior to publication, so that a patch can be prepared, and so that we can take proactive measures to protect FusionDirectory users.
+
+### What is a “security” issue ?
+
+A security issue is a type of bug that can affect the security of FusionDirectory installations.
+
+Specifically, it is a report of a bug that you have found in the code for FusionDirectory and that you have determined can be used to gain some level of access to a site running FusionDirectory that you should not have.
+
+### Where do I report security issues ?
+
+If you would like to contact us with a security vulnerability or possible vulnerability, please contact us via email [security@fusiondirectory.org](mailto:security@fusiondirectory.org).
+
+Your email can be signed with the following public gpg key :
+
+Benoit Mortier : **32BA 180F 6E14 7B5F 52BE 6322 EF2F F1E4 8638 EAD1**
+
+**In any case, you should not share details with anyone else until the bug fix has been officially released.**
+
-- 
GitLab


From 8627cfc004fc8bc8439546d008d2664c1f2727af Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Mon, 4 Jan 2021 14:47:30 +0100
Subject: [PATCH 40/73] :sparkles: feat(ci): Use the same build process than
 1.4

Use the same build process than 1.4
---
 .gitlab-ci.yml | 31 +++++++++++++++++++++++++++----
 1 file changed, 27 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d6f3c3ed98..31df7ee64c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -127,18 +127,41 @@ build-release:
     paths:
       - fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz
 
-trigger-ci-debian:
+trigger-ci-debian-stretch:
   stage: trigger
   only:
     - 1.3-fixes
+  variables:
+    GROUP: "$GROUP"
+    BRANCH_CORE: "$CI_COMMIT_REF_NAME"
+    BRANCH_PLUGIN: "$CI_COMMIT_REF_NAME"
+    BRANCH_BUILD_DEBIAN_STRETCH: "$BRANCH_BUILD_DEBIAN_STRETCH"
   trigger:
-    project: debian/fusiondirectory
-    branch: 1.3-fixes
+    project: debian/stretch-fusiondirectory-fixes
+    branch: "$BRANCH_BUILD_DEBIAN_STRETCH"
+
+trigger-ci-debian-buster:
+  stage: trigger
+  only:
+    - 1.3-fixes
+  variables:
+    GROUP: "$GROUP"
+    BRANCH_CORE: "$CI_COMMIT_REF_NAME"
+    BRANCH_PLUGIN: "$CI_COMMIT_REF_NAME"
+    BRANCH_BUILD_DEBIAN_BUSTER: "$BRANCH_BUILD_DEBIAN_BUSTER"
+  trigger:
+    project: debian/buster-fusiondirectory-fixes
+    branch: "$BRANCH_BUILD_DEBIAN_BUSTER"
 
 trigger-ci-centos7:
   stage: trigger
   only:
     - 1.3-fixes
+  variables:
+    GROUP: "$GROUP"
+    BRANCH_CORE: "$CI_COMMIT_REF_NAME"
+    BRANCH_PLUGIN: "$CI_COMMIT_REF_NAME"
+    BRANCH_BUILD_CENTOS_7: "$BRANCH_BUILD_CENTOS_7"
   trigger:
     project: centos/centos7-fixes
-    branch: master
+    branch: "$BRANCH_BUILD_CENTOS_7"
-- 
GitLab


From c04de412908517bec396d0de37934e9498e41fc0 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 12 Jan 2021 09:53:42 +0100
Subject: [PATCH 41/73] Update .gitlab-ci.yml Changed the name of the centos 7
 fixes trigger

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31df7ee64c..62334812ea 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -163,5 +163,5 @@ trigger-ci-centos7:
     BRANCH_PLUGIN: "$CI_COMMIT_REF_NAME"
     BRANCH_BUILD_CENTOS_7: "$BRANCH_BUILD_CENTOS_7"
   trigger:
-    project: centos/centos7-fixes
+    project: centos/centos7-fusiondirectory-fixes
     branch: "$BRANCH_BUILD_CENTOS_7"
-- 
GitLab


From 6c3cdf779f97027c4e482ae14c7e0fccd6514196 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Mon, 22 Feb 2021 15:35:04 +0100
Subject: [PATCH 42/73] :ambulance: fix(fai) Add missing p in partition cn for
 nvme disks

issue #6100
---
 fai/admin/fai/class_faiDiskEntry.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fai/admin/fai/class_faiDiskEntry.inc b/fai/admin/fai/class_faiDiskEntry.inc
index 0ad0eee709..1a2abc9555 100644
--- a/fai/admin/fai/class_faiDiskEntry.inc
+++ b/fai/admin/fai/class_faiDiskEntry.inc
@@ -170,6 +170,8 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
     if ($this->plugin->FAIdiskType == 'disk') {
       if (preg_match('/^disk(\d+)$/', $this->plugin->cn)) {
         $part['cn'] = $this->plugin->cn.'.'.$part['FAIpartitionNr'];
+      } elseif (preg_match('/^nvme(\d+)/', $this->plugin->cn)) {
+        $part['cn'] = $this->plugin->cn.'p'.$part['FAIpartitionNr'];
       } else {
         $part['cn'] = $this->plugin->cn.$part['FAIpartitionNr'];
       }
-- 
GitLab


From 3c8fba47fbeb68ec4feed55f26786d12dc0929bb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Tue, 16 Mar 2021 10:20:45 +0100
Subject: [PATCH 43/73] :tractor: fix(audit) Move
 GeneralizedTimeDisplayAttribute to core

issue #6103
---
 audit/admin/audit/class_auditEvent.inc | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/audit/admin/audit/class_auditEvent.inc b/audit/admin/audit/class_auditEvent.inc
index cb6dfca971..452ff68970 100644
--- a/audit/admin/audit/class_auditEvent.inc
+++ b/audit/admin/audit/class_auditEvent.inc
@@ -18,21 +18,6 @@
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 */
 
-class GeneralizedTimeDisplayAttribute extends GeneralizedTimeDateAttribute
-{
-  function getValue ()
-  {
-    return $this->computeLdapValue();
-  }
-
-  function renderFormInput ()
-  {
-    $date = $this->getDateValue();
-    $date->setTimezone(timezone::getDefaultTimeZone());
-    return htmlentities($date->format('Y-m-d, H:i:s'), ENT_COMPAT, 'UTF-8');
-  }
-}
-
 class UserLinkAttribute extends DisplayLDAPAttribute
 {
   function renderFormInput ()
-- 
GitLab


From 520a7e6a80dc83792003c326d118912226ea16ab Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Mon, 22 Mar 2021 22:16:49 +0100
Subject: [PATCH 44/73] :handshake: fix(locales) updating the locales for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 alias/locale/af_ZA/fusiondirectory.po         |   2 +-
 alias/locale/ar/fusiondirectory.po            |   2 +-
 alias/locale/ca/fusiondirectory.po            |   2 +-
 alias/locale/cs_CZ/fusiondirectory.po         |   2 +-
 alias/locale/de/fusiondirectory.po            |   2 +-
 alias/locale/el_GR/fusiondirectory.po         |   2 +-
 alias/locale/es/fusiondirectory.po            |   2 +-
 alias/locale/es_CO/fusiondirectory.po         |   2 +-
 alias/locale/es_VE/fusiondirectory.po         |   2 +-
 alias/locale/fa_IR/fusiondirectory.po         |   2 +-
 alias/locale/fi_FI/fusiondirectory.po         |   2 +-
 alias/locale/fr/fusiondirectory.po            |   2 +-
 alias/locale/hu_HU/fusiondirectory.po         |   2 +-
 alias/locale/id/fusiondirectory.po            |   2 +-
 alias/locale/it_IT/fusiondirectory.po         |   2 +-
 alias/locale/ja/fusiondirectory.po            |   2 +-
 alias/locale/ko/fusiondirectory.po            |   2 +-
 alias/locale/lv/fusiondirectory.po            |   2 +-
 alias/locale/nb/fusiondirectory.po            |   2 +-
 alias/locale/nl/fusiondirectory.po            |   2 +-
 alias/locale/pl/fusiondirectory.po            |   2 +-
 alias/locale/pt/fusiondirectory.po            |   2 +-
 alias/locale/pt_BR/fusiondirectory.po         |   2 +-
 alias/locale/ru/fusiondirectory.po            |   2 +-
 alias/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 alias/locale/sv/fusiondirectory.po            |   2 +-
 alias/locale/tr_TR/fusiondirectory.po         |   2 +-
 alias/locale/ug/fusiondirectory.po            |   6 +-
 alias/locale/vi_VN/fusiondirectory.po         |   2 +-
 alias/locale/zh/fusiondirectory.po            |   2 +-
 alias/locale/zh_TW/fusiondirectory.po         |   2 +-
 applications/locale/af_ZA/fusiondirectory.po  |   2 +-
 applications/locale/ar/fusiondirectory.po     |   2 +-
 applications/locale/ca/fusiondirectory.po     |   2 +-
 applications/locale/cs_CZ/fusiondirectory.po  |   2 +-
 applications/locale/de/fusiondirectory.po     |   2 +-
 applications/locale/el_GR/fusiondirectory.po  |   2 +-
 applications/locale/es/fusiondirectory.po     |   2 +-
 applications/locale/es_CO/fusiondirectory.po  |   2 +-
 applications/locale/es_VE/fusiondirectory.po  |   2 +-
 applications/locale/fa_IR/fusiondirectory.po  |   2 +-
 applications/locale/fi_FI/fusiondirectory.po  |   2 +-
 applications/locale/fr/fusiondirectory.po     |   2 +-
 applications/locale/hu_HU/fusiondirectory.po  |   2 +-
 applications/locale/id/fusiondirectory.po     |   2 +-
 applications/locale/it_IT/fusiondirectory.po  |   2 +-
 applications/locale/ja/fusiondirectory.po     |   2 +-
 applications/locale/ko/fusiondirectory.po     |   2 +-
 applications/locale/lv/fusiondirectory.po     |   2 +-
 applications/locale/nb/fusiondirectory.po     |   2 +-
 applications/locale/nl/fusiondirectory.po     |   2 +-
 applications/locale/pl/fusiondirectory.po     |   2 +-
 applications/locale/pt/fusiondirectory.po     |   2 +-
 applications/locale/pt_BR/fusiondirectory.po  |   2 +-
 applications/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 applications/locale/sv/fusiondirectory.po     |   2 +-
 applications/locale/tr_TR/fusiondirectory.po  |   2 +-
 applications/locale/ug/fusiondirectory.po     |   6 +-
 applications/locale/vi_VN/fusiondirectory.po  |   2 +-
 applications/locale/zh/fusiondirectory.po     |   2 +-
 applications/locale/zh_TW/fusiondirectory.po  |   2 +-
 argonaut/locale/af_ZA/fusiondirectory.po      |   2 +-
 argonaut/locale/ar/fusiondirectory.po         |   2 +-
 argonaut/locale/ca/fusiondirectory.po         |   2 +-
 argonaut/locale/cs_CZ/fusiondirectory.po      |   2 +-
 argonaut/locale/de/fusiondirectory.po         |   2 +-
 argonaut/locale/el_GR/fusiondirectory.po      |   7 +-
 argonaut/locale/es/fusiondirectory.po         |   2 +-
 argonaut/locale/es_CO/fusiondirectory.po      |   2 +-
 argonaut/locale/es_VE/fusiondirectory.po      |   2 +-
 argonaut/locale/fa_IR/fusiondirectory.po      |   2 +-
 argonaut/locale/fi_FI/fusiondirectory.po      |   2 +-
 argonaut/locale/fr/fusiondirectory.po         |   2 +-
 argonaut/locale/hu_HU/fusiondirectory.po      |   2 +-
 argonaut/locale/id/fusiondirectory.po         |   2 +-
 argonaut/locale/it_IT/fusiondirectory.po      |   2 +-
 argonaut/locale/ja/fusiondirectory.po         |   2 +-
 argonaut/locale/ko/fusiondirectory.po         |   2 +-
 argonaut/locale/lv/fusiondirectory.po         |   2 +-
 argonaut/locale/nb/fusiondirectory.po         |   2 +-
 argonaut/locale/nl/fusiondirectory.po         |   2 +-
 argonaut/locale/pl/fusiondirectory.po         |   2 +-
 argonaut/locale/pt/fusiondirectory.po         |   2 +-
 argonaut/locale/pt_BR/fusiondirectory.po      |   2 +-
 argonaut/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 argonaut/locale/sv/fusiondirectory.po         |   2 +-
 argonaut/locale/tr_TR/fusiondirectory.po      |  10 +-
 argonaut/locale/ug/fusiondirectory.po         |   6 +-
 argonaut/locale/vi_VN/fusiondirectory.po      |   2 +-
 argonaut/locale/zh/fusiondirectory.po         |   2 +-
 argonaut/locale/zh_TW/fusiondirectory.po      |   2 +-
 audit/locale/af_ZA/fusiondirectory.po         |  36 ++---
 audit/locale/ar/fusiondirectory.po            |  36 ++---
 audit/locale/ca/fusiondirectory.po            |  36 ++---
 audit/locale/cs_CZ/fusiondirectory.po         |  36 ++---
 audit/locale/de/fusiondirectory.po            |  36 ++---
 audit/locale/el_GR/fusiondirectory.po         |  45 +++---
 audit/locale/es/fusiondirectory.po            |  36 ++---
 audit/locale/es_CO/fusiondirectory.po         |  36 ++---
 audit/locale/es_VE/fusiondirectory.po         |  36 ++---
 audit/locale/fa_IR/fusiondirectory.po         |  36 ++---
 audit/locale/fi_FI/fusiondirectory.po         |  36 ++---
 audit/locale/fr/fusiondirectory.po            |  36 ++---
 audit/locale/hu_HU/fusiondirectory.po         |  36 ++---
 audit/locale/id/fusiondirectory.po            |  36 ++---
 audit/locale/it_IT/fusiondirectory.po         |  36 ++---
 audit/locale/ja/fusiondirectory.po            |  36 ++---
 audit/locale/ko/fusiondirectory.po            |  36 ++---
 audit/locale/lv/fusiondirectory.po            |  36 ++---
 audit/locale/nb/fusiondirectory.po            |  36 ++---
 audit/locale/nl/fusiondirectory.po            |  36 ++---
 audit/locale/pl/fusiondirectory.po            |  36 ++---
 audit/locale/pt/fusiondirectory.po            |  36 ++---
 audit/locale/pt_BR/fusiondirectory.po         |  36 ++---
 audit/locale/ru/fusiondirectory.po            |  36 ++---
 audit/locale/ru@petr1708/fusiondirectory.po   |  36 ++---
 audit/locale/sv/fusiondirectory.po            |  36 ++---
 audit/locale/tr_TR/fusiondirectory.po         |  36 ++---
 audit/locale/ug/fusiondirectory.po            |  40 ++---
 audit/locale/vi_VN/fusiondirectory.po         |  36 ++---
 audit/locale/zh/fusiondirectory.po            |  36 ++---
 audit/locale/zh_TW/fusiondirectory.po         |  36 ++---
 autofs/locale/af_ZA/fusiondirectory.po        |   2 +-
 autofs/locale/ar/fusiondirectory.po           |   2 +-
 autofs/locale/ca/fusiondirectory.po           |   2 +-
 autofs/locale/cs_CZ/fusiondirectory.po        |   2 +-
 autofs/locale/de/fusiondirectory.po           |   2 +-
 autofs/locale/el_GR/fusiondirectory.po        |   2 +-
 autofs/locale/es/fusiondirectory.po           |   2 +-
 autofs/locale/es_CO/fusiondirectory.po        |   2 +-
 autofs/locale/es_VE/fusiondirectory.po        |   2 +-
 autofs/locale/fa_IR/fusiondirectory.po        |   2 +-
 autofs/locale/fi_FI/fusiondirectory.po        |   2 +-
 autofs/locale/fr/fusiondirectory.po           |   2 +-
 autofs/locale/hu_HU/fusiondirectory.po        |   2 +-
 autofs/locale/id/fusiondirectory.po           |   2 +-
 autofs/locale/it_IT/fusiondirectory.po        |   2 +-
 autofs/locale/ja/fusiondirectory.po           |   2 +-
 autofs/locale/ko/fusiondirectory.po           |   2 +-
 autofs/locale/lv/fusiondirectory.po           |   2 +-
 autofs/locale/nb/fusiondirectory.po           |   2 +-
 autofs/locale/nl/fusiondirectory.po           |   2 +-
 autofs/locale/pl/fusiondirectory.po           |   2 +-
 autofs/locale/pt/fusiondirectory.po           |   2 +-
 autofs/locale/pt_BR/fusiondirectory.po        |   2 +-
 autofs/locale/ru/fusiondirectory.po           |   2 +-
 autofs/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 autofs/locale/sv/fusiondirectory.po           |   2 +-
 autofs/locale/tr_TR/fusiondirectory.po        |   2 +-
 autofs/locale/ug/fusiondirectory.po           |   6 +-
 autofs/locale/vi_VN/fusiondirectory.po        |   2 +-
 autofs/locale/zh/fusiondirectory.po           |   2 +-
 autofs/locale/zh_TW/fusiondirectory.po        |   2 +-
 certificates/locale/af_ZA/fusiondirectory.po  |   2 +-
 certificates/locale/ar/fusiondirectory.po     |   2 +-
 certificates/locale/ca/fusiondirectory.po     |   2 +-
 certificates/locale/cs_CZ/fusiondirectory.po  |   2 +-
 certificates/locale/de/fusiondirectory.po     |   2 +-
 certificates/locale/el_GR/fusiondirectory.po  |   2 +-
 certificates/locale/es/fusiondirectory.po     |   2 +-
 certificates/locale/es_CO/fusiondirectory.po  |   2 +-
 certificates/locale/es_VE/fusiondirectory.po  |   2 +-
 certificates/locale/fa_IR/fusiondirectory.po  |   2 +-
 certificates/locale/fi_FI/fusiondirectory.po  |   2 +-
 certificates/locale/fr/fusiondirectory.po     |   2 +-
 certificates/locale/hu_HU/fusiondirectory.po  |   2 +-
 certificates/locale/id/fusiondirectory.po     |   2 +-
 certificates/locale/it_IT/fusiondirectory.po  |   2 +-
 certificates/locale/ja/fusiondirectory.po     |   2 +-
 certificates/locale/ko/fusiondirectory.po     |   2 +-
 certificates/locale/lv/fusiondirectory.po     |   2 +-
 certificates/locale/nb/fusiondirectory.po     |   2 +-
 certificates/locale/nl/fusiondirectory.po     |   2 +-
 certificates/locale/pl/fusiondirectory.po     |   2 +-
 certificates/locale/pt/fusiondirectory.po     |   2 +-
 certificates/locale/pt_BR/fusiondirectory.po  |   2 +-
 certificates/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 certificates/locale/sv/fusiondirectory.po     |   2 +-
 certificates/locale/tr_TR/fusiondirectory.po  |   2 +-
 certificates/locale/ug/fusiondirectory.po     |   6 +-
 certificates/locale/vi_VN/fusiondirectory.po  |   2 +-
 certificates/locale/zh/fusiondirectory.po     |   2 +-
 certificates/locale/zh_TW/fusiondirectory.po  |   2 +-
 community/locale/af_ZA/fusiondirectory.po     |   2 +-
 community/locale/ar/fusiondirectory.po        |   2 +-
 community/locale/ca/fusiondirectory.po        |   2 +-
 community/locale/cs_CZ/fusiondirectory.po     |   2 +-
 community/locale/de/fusiondirectory.po        |   2 +-
 community/locale/el_GR/fusiondirectory.po     |  31 ++--
 community/locale/es/fusiondirectory.po        |   2 +-
 community/locale/es_CO/fusiondirectory.po     |   2 +-
 community/locale/es_VE/fusiondirectory.po     |   2 +-
 community/locale/fa_IR/fusiondirectory.po     |   2 +-
 community/locale/fi_FI/fusiondirectory.po     |   2 +-
 community/locale/fr/fusiondirectory.po        |   2 +-
 community/locale/hu_HU/fusiondirectory.po     |   2 +-
 community/locale/id/fusiondirectory.po        |   2 +-
 community/locale/it_IT/fusiondirectory.po     |   2 +-
 community/locale/ja/fusiondirectory.po        |   2 +-
 community/locale/ko/fusiondirectory.po        |   2 +-
 community/locale/lv/fusiondirectory.po        |   2 +-
 community/locale/nb/fusiondirectory.po        |   2 +-
 community/locale/nl/fusiondirectory.po        |   2 +-
 community/locale/pl/fusiondirectory.po        |   2 +-
 community/locale/pt/fusiondirectory.po        |   2 +-
 community/locale/pt_BR/fusiondirectory.po     |   2 +-
 community/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 community/locale/sv/fusiondirectory.po        |   2 +-
 community/locale/tr_TR/fusiondirectory.po     |   2 +-
 community/locale/ug/fusiondirectory.po        |   6 +-
 community/locale/vi_VN/fusiondirectory.po     |   2 +-
 community/locale/zh/fusiondirectory.po        |   2 +-
 community/locale/zh_TW/fusiondirectory.po     |   2 +-
 cyrus/locale/af_ZA/fusiondirectory.po         |   2 +-
 cyrus/locale/ar/fusiondirectory.po            |   2 +-
 cyrus/locale/ca/fusiondirectory.po            |   2 +-
 cyrus/locale/cs_CZ/fusiondirectory.po         |   2 +-
 cyrus/locale/de/fusiondirectory.po            |   2 +-
 cyrus/locale/el_GR/fusiondirectory.po         |   2 +-
 cyrus/locale/es/fusiondirectory.po            |   2 +-
 cyrus/locale/es_CO/fusiondirectory.po         |   2 +-
 cyrus/locale/es_VE/fusiondirectory.po         |   2 +-
 cyrus/locale/fa_IR/fusiondirectory.po         |   2 +-
 cyrus/locale/fi_FI/fusiondirectory.po         |   2 +-
 cyrus/locale/fr/fusiondirectory.po            |   2 +-
 cyrus/locale/hu_HU/fusiondirectory.po         |   2 +-
 cyrus/locale/id/fusiondirectory.po            |   2 +-
 cyrus/locale/it_IT/fusiondirectory.po         |   2 +-
 cyrus/locale/ja/fusiondirectory.po            |   2 +-
 cyrus/locale/ko/fusiondirectory.po            |   2 +-
 cyrus/locale/lv/fusiondirectory.po            |   2 +-
 cyrus/locale/nb/fusiondirectory.po            |   2 +-
 cyrus/locale/nl/fusiondirectory.po            |   2 +-
 cyrus/locale/pl/fusiondirectory.po            |   2 +-
 cyrus/locale/pt/fusiondirectory.po            |   2 +-
 cyrus/locale/pt_BR/fusiondirectory.po         |   2 +-
 cyrus/locale/ru/fusiondirectory.po            |   2 +-
 cyrus/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 cyrus/locale/sv/fusiondirectory.po            |   2 +-
 cyrus/locale/tr_TR/fusiondirectory.po         |   2 +-
 cyrus/locale/ug/fusiondirectory.po            |   6 +-
 cyrus/locale/vi_VN/fusiondirectory.po         |   2 +-
 cyrus/locale/zh/fusiondirectory.po            |   2 +-
 cyrus/locale/zh_TW/fusiondirectory.po         |   2 +-
 debconf/locale/af_ZA/fusiondirectory.po       |   2 +-
 debconf/locale/ar/fusiondirectory.po          |   2 +-
 debconf/locale/ca/fusiondirectory.po          |   2 +-
 debconf/locale/cs_CZ/fusiondirectory.po       |   2 +-
 debconf/locale/de/fusiondirectory.po          |   2 +-
 debconf/locale/el_GR/fusiondirectory.po       |   2 +-
 debconf/locale/es/fusiondirectory.po          |   2 +-
 debconf/locale/es_CO/fusiondirectory.po       |   2 +-
 debconf/locale/es_VE/fusiondirectory.po       |   2 +-
 debconf/locale/fa_IR/fusiondirectory.po       |   2 +-
 debconf/locale/fi_FI/fusiondirectory.po       |   2 +-
 debconf/locale/fr/fusiondirectory.po          |   2 +-
 debconf/locale/hu_HU/fusiondirectory.po       |   2 +-
 debconf/locale/id/fusiondirectory.po          |   2 +-
 debconf/locale/it_IT/fusiondirectory.po       |   2 +-
 debconf/locale/ja/fusiondirectory.po          |   2 +-
 debconf/locale/ko/fusiondirectory.po          |   2 +-
 debconf/locale/lv/fusiondirectory.po          |   2 +-
 debconf/locale/nb/fusiondirectory.po          |   2 +-
 debconf/locale/nl/fusiondirectory.po          |   2 +-
 debconf/locale/pl/fusiondirectory.po          |   2 +-
 debconf/locale/pt/fusiondirectory.po          |   2 +-
 debconf/locale/pt_BR/fusiondirectory.po       |   2 +-
 debconf/locale/ru/fusiondirectory.po          |   2 +-
 debconf/locale/ru@petr1708/fusiondirectory.po |   2 +-
 debconf/locale/sv/fusiondirectory.po          |   2 +-
 debconf/locale/tr_TR/fusiondirectory.po       |   8 +-
 debconf/locale/ug/fusiondirectory.po          |   6 +-
 debconf/locale/vi_VN/fusiondirectory.po       |   2 +-
 debconf/locale/zh/fusiondirectory.po          |   2 +-
 debconf/locale/zh_TW/fusiondirectory.po       |   2 +-
 developers/locale/af_ZA/fusiondirectory.po    |   2 +-
 developers/locale/ar/fusiondirectory.po       |   2 +-
 developers/locale/ca/fusiondirectory.po       |   2 +-
 developers/locale/cs_CZ/fusiondirectory.po    |   2 +-
 developers/locale/de/fusiondirectory.po       |   2 +-
 developers/locale/el_GR/fusiondirectory.po    |   2 +-
 developers/locale/es/fusiondirectory.po       |   2 +-
 developers/locale/es_CO/fusiondirectory.po    |   2 +-
 developers/locale/es_VE/fusiondirectory.po    |   2 +-
 developers/locale/fa_IR/fusiondirectory.po    |   2 +-
 developers/locale/fi_FI/fusiondirectory.po    |   2 +-
 developers/locale/fr/fusiondirectory.po       |   2 +-
 developers/locale/hu_HU/fusiondirectory.po    |   2 +-
 developers/locale/id/fusiondirectory.po       |   2 +-
 developers/locale/it_IT/fusiondirectory.po    |   2 +-
 developers/locale/ja/fusiondirectory.po       |   2 +-
 developers/locale/ko/fusiondirectory.po       |   2 +-
 developers/locale/lv/fusiondirectory.po       |   2 +-
 developers/locale/nb/fusiondirectory.po       |   2 +-
 developers/locale/nl/fusiondirectory.po       |   2 +-
 developers/locale/pl/fusiondirectory.po       |   2 +-
 developers/locale/pt/fusiondirectory.po       |   2 +-
 developers/locale/pt_BR/fusiondirectory.po    |   2 +-
 developers/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 developers/locale/sv/fusiondirectory.po       |   2 +-
 developers/locale/tr_TR/fusiondirectory.po    |   2 +-
 developers/locale/ug/fusiondirectory.po       |   6 +-
 developers/locale/vi_VN/fusiondirectory.po    |   2 +-
 developers/locale/zh/fusiondirectory.po       |   2 +-
 developers/locale/zh_TW/fusiondirectory.po    |   2 +-
 dhcp/locale/af_ZA/fusiondirectory.po          |  16 +-
 dhcp/locale/ar/fusiondirectory.po             |  16 +-
 dhcp/locale/ca/fusiondirectory.po             |  16 +-
 dhcp/locale/cs_CZ/fusiondirectory.po          |  16 +-
 dhcp/locale/de/fusiondirectory.po             |  21 +--
 dhcp/locale/el_GR/fusiondirectory.po          |  16 +-
 dhcp/locale/es/fusiondirectory.po             |  16 +-
 dhcp/locale/es_CO/fusiondirectory.po          |  16 +-
 dhcp/locale/es_VE/fusiondirectory.po          |  16 +-
 dhcp/locale/fa_IR/fusiondirectory.po          |  16 +-
 dhcp/locale/fi_FI/fusiondirectory.po          |  16 +-
 dhcp/locale/fr/fusiondirectory.po             |  21 +--
 dhcp/locale/hu_HU/fusiondirectory.po          |  16 +-
 dhcp/locale/id/fusiondirectory.po             |  16 +-
 dhcp/locale/it_IT/fusiondirectory.po          |  16 +-
 dhcp/locale/ja/fusiondirectory.po             |  16 +-
 dhcp/locale/ko/fusiondirectory.po             |  16 +-
 dhcp/locale/lv/fusiondirectory.po             |  16 +-
 dhcp/locale/nb/fusiondirectory.po             |  16 +-
 dhcp/locale/nl/fusiondirectory.po             |  16 +-
 dhcp/locale/pl/fusiondirectory.po             |  16 +-
 dhcp/locale/pt/fusiondirectory.po             |  16 +-
 dhcp/locale/pt_BR/fusiondirectory.po          |  16 +-
 dhcp/locale/ru/fusiondirectory.po             |  16 +-
 dhcp/locale/ru@petr1708/fusiondirectory.po    |  16 +-
 dhcp/locale/sv/fusiondirectory.po             |  16 +-
 dhcp/locale/tr_TR/fusiondirectory.po          |  22 +--
 dhcp/locale/ug/fusiondirectory.po             |  20 +--
 dhcp/locale/vi_VN/fusiondirectory.po          |  16 +-
 dhcp/locale/zh/fusiondirectory.po             |  16 +-
 dhcp/locale/zh_TW/fusiondirectory.po          |  16 +-
 dns/locale/af_ZA/fusiondirectory.po           |   2 +-
 dns/locale/ar/fusiondirectory.po              |   2 +-
 dns/locale/ca/fusiondirectory.po              |   2 +-
 dns/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dns/locale/de/fusiondirectory.po              |   2 +-
 dns/locale/el_GR/fusiondirectory.po           |   2 +-
 dns/locale/es/fusiondirectory.po              |   2 +-
 dns/locale/es_CO/fusiondirectory.po           |   2 +-
 dns/locale/es_VE/fusiondirectory.po           |   2 +-
 dns/locale/fa_IR/fusiondirectory.po           |   2 +-
 dns/locale/fi_FI/fusiondirectory.po           |   2 +-
 dns/locale/fr/fusiondirectory.po              |   2 +-
 dns/locale/hu_HU/fusiondirectory.po           |   2 +-
 dns/locale/id/fusiondirectory.po              |   2 +-
 dns/locale/it_IT/fusiondirectory.po           |   2 +-
 dns/locale/ja/fusiondirectory.po              |   2 +-
 dns/locale/ko/fusiondirectory.po              |  30 ++--
 dns/locale/lv/fusiondirectory.po              |   2 +-
 dns/locale/nb/fusiondirectory.po              |   2 +-
 dns/locale/nl/fusiondirectory.po              |   2 +-
 dns/locale/pl/fusiondirectory.po              |   2 +-
 dns/locale/pt/fusiondirectory.po              |   2 +-
 dns/locale/pt_BR/fusiondirectory.po           |   2 +-
 dns/locale/ru/fusiondirectory.po              |   2 +-
 dns/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dns/locale/sv/fusiondirectory.po              |   2 +-
 dns/locale/tr_TR/fusiondirectory.po           |   8 +-
 dns/locale/ug/fusiondirectory.po              |   6 +-
 dns/locale/vi_VN/fusiondirectory.po           |   2 +-
 dns/locale/zh/fusiondirectory.po              |   2 +-
 dns/locale/zh_TW/fusiondirectory.po           |   2 +-
 dovecot/locale/af_ZA/fusiondirectory.po       |   2 +-
 dovecot/locale/ar/fusiondirectory.po          |   2 +-
 dovecot/locale/ca/fusiondirectory.po          |   2 +-
 dovecot/locale/cs_CZ/fusiondirectory.po       |   2 +-
 dovecot/locale/de/fusiondirectory.po          |   2 +-
 dovecot/locale/el_GR/fusiondirectory.po       |   2 +-
 dovecot/locale/es/fusiondirectory.po          |   2 +-
 dovecot/locale/es_CO/fusiondirectory.po       |   2 +-
 dovecot/locale/es_VE/fusiondirectory.po       |   2 +-
 dovecot/locale/fa_IR/fusiondirectory.po       |   2 +-
 dovecot/locale/fi_FI/fusiondirectory.po       |   2 +-
 dovecot/locale/fr/fusiondirectory.po          |   2 +-
 dovecot/locale/hu_HU/fusiondirectory.po       |   2 +-
 dovecot/locale/id/fusiondirectory.po          |   2 +-
 dovecot/locale/it_IT/fusiondirectory.po       |   2 +-
 dovecot/locale/ja/fusiondirectory.po          |   2 +-
 dovecot/locale/ko/fusiondirectory.po          |   2 +-
 dovecot/locale/lv/fusiondirectory.po          |   2 +-
 dovecot/locale/nb/fusiondirectory.po          |   2 +-
 dovecot/locale/nl/fusiondirectory.po          |   2 +-
 dovecot/locale/pl/fusiondirectory.po          |   2 +-
 dovecot/locale/pt/fusiondirectory.po          |   2 +-
 dovecot/locale/pt_BR/fusiondirectory.po       |   2 +-
 dovecot/locale/ru/fusiondirectory.po          |   2 +-
 dovecot/locale/ru@petr1708/fusiondirectory.po |   2 +-
 dovecot/locale/sv/fusiondirectory.po          |   2 +-
 dovecot/locale/tr_TR/fusiondirectory.po       |   2 +-
 dovecot/locale/ug/fusiondirectory.po          |   6 +-
 dovecot/locale/vi_VN/fusiondirectory.po       |   2 +-
 dovecot/locale/zh/fusiondirectory.po          |   2 +-
 dovecot/locale/zh_TW/fusiondirectory.po       |   2 +-
 dsa/locale/af_ZA/fusiondirectory.po           |   2 +-
 dsa/locale/ar/fusiondirectory.po              |   2 +-
 dsa/locale/ca/fusiondirectory.po              |   2 +-
 dsa/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dsa/locale/de/fusiondirectory.po              |   2 +-
 dsa/locale/el_GR/fusiondirectory.po           |   2 +-
 dsa/locale/es/fusiondirectory.po              |   2 +-
 dsa/locale/es_CO/fusiondirectory.po           |   2 +-
 dsa/locale/es_VE/fusiondirectory.po           |   2 +-
 dsa/locale/fa_IR/fusiondirectory.po           |   2 +-
 dsa/locale/fi_FI/fusiondirectory.po           |   2 +-
 dsa/locale/fr/fusiondirectory.po              |   2 +-
 dsa/locale/hu_HU/fusiondirectory.po           |   2 +-
 dsa/locale/id/fusiondirectory.po              |   2 +-
 dsa/locale/it_IT/fusiondirectory.po           |   2 +-
 dsa/locale/ja/fusiondirectory.po              |   2 +-
 dsa/locale/ko/fusiondirectory.po              |   2 +-
 dsa/locale/lv/fusiondirectory.po              |   2 +-
 dsa/locale/nb/fusiondirectory.po              |   2 +-
 dsa/locale/nl/fusiondirectory.po              |   2 +-
 dsa/locale/pl/fusiondirectory.po              |   2 +-
 dsa/locale/pt/fusiondirectory.po              |   2 +-
 dsa/locale/pt_BR/fusiondirectory.po           |   2 +-
 dsa/locale/ru/fusiondirectory.po              |   2 +-
 dsa/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dsa/locale/sv/fusiondirectory.po              |   2 +-
 dsa/locale/tr_TR/fusiondirectory.po           |   2 +-
 dsa/locale/ug/fusiondirectory.po              |   6 +-
 dsa/locale/vi_VN/fusiondirectory.po           |   2 +-
 dsa/locale/zh/fusiondirectory.po              |   2 +-
 dsa/locale/zh_TW/fusiondirectory.po           |   2 +-
 ejbca/locale/af_ZA/fusiondirectory.po         |   2 +-
 ejbca/locale/ar/fusiondirectory.po            |   2 +-
 ejbca/locale/ca/fusiondirectory.po            |   2 +-
 ejbca/locale/cs_CZ/fusiondirectory.po         |   2 +-
 ejbca/locale/de/fusiondirectory.po            |   2 +-
 ejbca/locale/el_GR/fusiondirectory.po         |   2 +-
 ejbca/locale/es/fusiondirectory.po            |   2 +-
 ejbca/locale/es_CO/fusiondirectory.po         |   2 +-
 ejbca/locale/es_VE/fusiondirectory.po         |   2 +-
 ejbca/locale/fa_IR/fusiondirectory.po         |   2 +-
 ejbca/locale/fi_FI/fusiondirectory.po         |   2 +-
 ejbca/locale/fr/fusiondirectory.po            |   2 +-
 ejbca/locale/hu_HU/fusiondirectory.po         |   2 +-
 ejbca/locale/id/fusiondirectory.po            |   2 +-
 ejbca/locale/it_IT/fusiondirectory.po         |   2 +-
 ejbca/locale/ja/fusiondirectory.po            |   2 +-
 ejbca/locale/ko/fusiondirectory.po            |   2 +-
 ejbca/locale/lv/fusiondirectory.po            |   2 +-
 ejbca/locale/nb/fusiondirectory.po            |   2 +-
 ejbca/locale/nl/fusiondirectory.po            |   2 +-
 ejbca/locale/pl/fusiondirectory.po            |   2 +-
 ejbca/locale/pt/fusiondirectory.po            |   2 +-
 ejbca/locale/pt_BR/fusiondirectory.po         |   2 +-
 ejbca/locale/ru/fusiondirectory.po            |   2 +-
 ejbca/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 ejbca/locale/sv/fusiondirectory.po            |   2 +-
 ejbca/locale/tr_TR/fusiondirectory.po         |   2 +-
 ejbca/locale/ug/fusiondirectory.po            |   6 +-
 ejbca/locale/vi_VN/fusiondirectory.po         |   2 +-
 ejbca/locale/zh/fusiondirectory.po            |   2 +-
 ejbca/locale/zh_TW/fusiondirectory.po         |   2 +-
 fai/locale/af_ZA/fusiondirectory.po           |  42 ++---
 fai/locale/ar/fusiondirectory.po              |  42 ++---
 fai/locale/ca/fusiondirectory.po              |  42 ++---
 fai/locale/cs_CZ/fusiondirectory.po           |  42 ++---
 fai/locale/de/fusiondirectory.po              |  42 ++---
 fai/locale/el_GR/fusiondirectory.po           |  42 ++---
 fai/locale/es/fusiondirectory.po              |  42 ++---
 fai/locale/es_CO/fusiondirectory.po           |  42 ++---
 fai/locale/es_VE/fusiondirectory.po           |  42 ++---
 fai/locale/fa_IR/fusiondirectory.po           |  42 ++---
 fai/locale/fi_FI/fusiondirectory.po           |  42 ++---
 fai/locale/fr/fusiondirectory.po              |  42 ++---
 fai/locale/hu_HU/fusiondirectory.po           |  42 ++---
 fai/locale/id/fusiondirectory.po              |  42 ++---
 fai/locale/it_IT/fusiondirectory.po           |  42 ++---
 fai/locale/ja/fusiondirectory.po              |  42 ++---
 fai/locale/ko/fusiondirectory.po              |  56 +++----
 fai/locale/lv/fusiondirectory.po              |  42 ++---
 fai/locale/nb/fusiondirectory.po              |  42 ++---
 fai/locale/nl/fusiondirectory.po              |  42 ++---
 fai/locale/pl/fusiondirectory.po              |  42 ++---
 fai/locale/pt/fusiondirectory.po              |  42 ++---
 fai/locale/pt_BR/fusiondirectory.po           |  42 ++---
 fai/locale/ru/fusiondirectory.po              |  42 ++---
 fai/locale/ru@petr1708/fusiondirectory.po     |  42 ++---
 fai/locale/sv/fusiondirectory.po              |  42 ++---
 fai/locale/tr_TR/fusiondirectory.po           |  48 +++---
 fai/locale/ug/fusiondirectory.po              |  46 +++---
 fai/locale/vi_VN/fusiondirectory.po           |  42 ++---
 fai/locale/zh/fusiondirectory.po              |  42 ++---
 fai/locale/zh_TW/fusiondirectory.po           |  42 ++---
 freeradius/locale/af_ZA/fusiondirectory.po    |   2 +-
 freeradius/locale/ar/fusiondirectory.po       |   2 +-
 freeradius/locale/ca/fusiondirectory.po       |   2 +-
 freeradius/locale/cs_CZ/fusiondirectory.po    |   2 +-
 freeradius/locale/de/fusiondirectory.po       |   7 +-
 freeradius/locale/el_GR/fusiondirectory.po    |   2 +-
 freeradius/locale/es/fusiondirectory.po       |   2 +-
 freeradius/locale/es_CO/fusiondirectory.po    |   2 +-
 freeradius/locale/es_VE/fusiondirectory.po    |   2 +-
 freeradius/locale/fa_IR/fusiondirectory.po    |   2 +-
 freeradius/locale/fi_FI/fusiondirectory.po    |   2 +-
 freeradius/locale/fr/fusiondirectory.po       |   2 +-
 freeradius/locale/hu_HU/fusiondirectory.po    |   2 +-
 freeradius/locale/id/fusiondirectory.po       |   2 +-
 freeradius/locale/it_IT/fusiondirectory.po    |   2 +-
 freeradius/locale/ja/fusiondirectory.po       |   2 +-
 freeradius/locale/ko/fusiondirectory.po       |   2 +-
 freeradius/locale/lv/fusiondirectory.po       |   2 +-
 freeradius/locale/nb/fusiondirectory.po       |   2 +-
 freeradius/locale/nl/fusiondirectory.po       |   2 +-
 freeradius/locale/pl/fusiondirectory.po       |   2 +-
 freeradius/locale/pt/fusiondirectory.po       |   2 +-
 freeradius/locale/pt_BR/fusiondirectory.po    |   2 +-
 freeradius/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 freeradius/locale/sv/fusiondirectory.po       |   2 +-
 freeradius/locale/tr_TR/fusiondirectory.po    |   8 +-
 freeradius/locale/ug/fusiondirectory.po       |   6 +-
 freeradius/locale/vi_VN/fusiondirectory.po    |   2 +-
 freeradius/locale/zh/fusiondirectory.po       |   2 +-
 freeradius/locale/zh_TW/fusiondirectory.po    |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ar/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 fusioninventory/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 fusioninventory/locale/fr/fusiondirectory.po  |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 fusioninventory/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ja/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ko/fusiondirectory.po  |   4 +-
 fusioninventory/locale/lv/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nb/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fusioninventory/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ug/fusiondirectory.po  |   6 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 fusioninventory/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 gpg/locale/af_ZA/fusiondirectory.po           |   2 +-
 gpg/locale/ar/fusiondirectory.po              |   2 +-
 gpg/locale/ca/fusiondirectory.po              |   2 +-
 gpg/locale/cs_CZ/fusiondirectory.po           |   2 +-
 gpg/locale/de/fusiondirectory.po              |   2 +-
 gpg/locale/el_GR/fusiondirectory.po           |   2 +-
 gpg/locale/es/fusiondirectory.po              |   2 +-
 gpg/locale/es_CO/fusiondirectory.po           |   2 +-
 gpg/locale/es_VE/fusiondirectory.po           |   2 +-
 gpg/locale/fa_IR/fusiondirectory.po           |   2 +-
 gpg/locale/fi_FI/fusiondirectory.po           |   2 +-
 gpg/locale/fr/fusiondirectory.po              |   2 +-
 gpg/locale/hu_HU/fusiondirectory.po           |   2 +-
 gpg/locale/id/fusiondirectory.po              |   2 +-
 gpg/locale/it_IT/fusiondirectory.po           |   2 +-
 gpg/locale/ja/fusiondirectory.po              |   2 +-
 gpg/locale/ko/fusiondirectory.po              |   2 +-
 gpg/locale/lv/fusiondirectory.po              |   2 +-
 gpg/locale/nb/fusiondirectory.po              |   2 +-
 gpg/locale/nl/fusiondirectory.po              |   2 +-
 gpg/locale/pl/fusiondirectory.po              |   2 +-
 gpg/locale/pt/fusiondirectory.po              |   2 +-
 gpg/locale/pt_BR/fusiondirectory.po           |   2 +-
 gpg/locale/ru/fusiondirectory.po              |   2 +-
 gpg/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 gpg/locale/sv/fusiondirectory.po              |   2 +-
 gpg/locale/tr_TR/fusiondirectory.po           |   2 +-
 gpg/locale/ug/fusiondirectory.po              |   6 +-
 gpg/locale/vi_VN/fusiondirectory.po           |   2 +-
 gpg/locale/zh/fusiondirectory.po              |   2 +-
 gpg/locale/zh_TW/fusiondirectory.po           |   2 +-
 ipmi/locale/af_ZA/fusiondirectory.po          |   2 +-
 ipmi/locale/ar/fusiondirectory.po             |   2 +-
 ipmi/locale/ca/fusiondirectory.po             |   2 +-
 ipmi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 ipmi/locale/de/fusiondirectory.po             |   2 +-
 ipmi/locale/el_GR/fusiondirectory.po          |   2 +-
 ipmi/locale/es/fusiondirectory.po             |   2 +-
 ipmi/locale/es_CO/fusiondirectory.po          |   2 +-
 ipmi/locale/es_VE/fusiondirectory.po          |   2 +-
 ipmi/locale/fa_IR/fusiondirectory.po          |   2 +-
 ipmi/locale/fi_FI/fusiondirectory.po          |   2 +-
 ipmi/locale/fr/fusiondirectory.po             |   2 +-
 ipmi/locale/hu_HU/fusiondirectory.po          |   2 +-
 ipmi/locale/id/fusiondirectory.po             |   2 +-
 ipmi/locale/it_IT/fusiondirectory.po          |   2 +-
 ipmi/locale/ja/fusiondirectory.po             |   2 +-
 ipmi/locale/ko/fusiondirectory.po             |   2 +-
 ipmi/locale/lv/fusiondirectory.po             |   2 +-
 ipmi/locale/nb/fusiondirectory.po             |   2 +-
 ipmi/locale/nl/fusiondirectory.po             |   2 +-
 ipmi/locale/pl/fusiondirectory.po             |   2 +-
 ipmi/locale/pt/fusiondirectory.po             |   2 +-
 ipmi/locale/pt_BR/fusiondirectory.po          |   2 +-
 ipmi/locale/ru/fusiondirectory.po             |   2 +-
 ipmi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 ipmi/locale/sv/fusiondirectory.po             |   2 +-
 ipmi/locale/tr_TR/fusiondirectory.po          |   2 +-
 ipmi/locale/ug/fusiondirectory.po             |   6 +-
 ipmi/locale/vi_VN/fusiondirectory.po          |   2 +-
 ipmi/locale/zh/fusiondirectory.po             |   2 +-
 ipmi/locale/zh_TW/fusiondirectory.po          |   2 +-
 ldapdump/locale/af_ZA/fusiondirectory.po      |   2 +-
 ldapdump/locale/ar/fusiondirectory.po         |   2 +-
 ldapdump/locale/ca/fusiondirectory.po         |   2 +-
 ldapdump/locale/cs_CZ/fusiondirectory.po      |   2 +-
 ldapdump/locale/de/fusiondirectory.po         |   2 +-
 ldapdump/locale/el_GR/fusiondirectory.po      |   2 +-
 ldapdump/locale/es/fusiondirectory.po         |   2 +-
 ldapdump/locale/es_CO/fusiondirectory.po      |   2 +-
 ldapdump/locale/es_VE/fusiondirectory.po      |   2 +-
 ldapdump/locale/fa_IR/fusiondirectory.po      |   2 +-
 ldapdump/locale/fi_FI/fusiondirectory.po      |   2 +-
 ldapdump/locale/fr/fusiondirectory.po         |   2 +-
 ldapdump/locale/hu_HU/fusiondirectory.po      |   2 +-
 ldapdump/locale/id/fusiondirectory.po         |   2 +-
 ldapdump/locale/it_IT/fusiondirectory.po      |   2 +-
 ldapdump/locale/ja/fusiondirectory.po         |   2 +-
 ldapdump/locale/ko/fusiondirectory.po         |   2 +-
 ldapdump/locale/lv/fusiondirectory.po         |   2 +-
 ldapdump/locale/nb/fusiondirectory.po         |   2 +-
 ldapdump/locale/nl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt_BR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapdump/locale/sv/fusiondirectory.po         |   2 +-
 ldapdump/locale/tr_TR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ug/fusiondirectory.po         |   6 +-
 ldapdump/locale/vi_VN/fusiondirectory.po      |   2 +-
 ldapdump/locale/zh/fusiondirectory.po         |   2 +-
 ldapdump/locale/zh_TW/fusiondirectory.po      |   2 +-
 ldapmanager/locale/af_ZA/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ar/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ca/fusiondirectory.po      |   2 +-
 ldapmanager/locale/cs_CZ/fusiondirectory.po   |   2 +-
 ldapmanager/locale/de/fusiondirectory.po      |   2 +-
 ldapmanager/locale/el_GR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es/fusiondirectory.po      |   2 +-
 ldapmanager/locale/es_CO/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es_VE/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fa_IR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fi_FI/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fr/fusiondirectory.po      |   2 +-
 ldapmanager/locale/hu_HU/fusiondirectory.po   |   2 +-
 ldapmanager/locale/id/fusiondirectory.po      |   2 +-
 ldapmanager/locale/it_IT/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ja/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ko/fusiondirectory.po      |   2 +-
 ldapmanager/locale/lv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nb/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt_BR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapmanager/locale/sv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/tr_TR/fusiondirectory.po   |  10 +-
 ldapmanager/locale/ug/fusiondirectory.po      |   6 +-
 ldapmanager/locale/vi_VN/fusiondirectory.po   |   2 +-
 ldapmanager/locale/zh/fusiondirectory.po      |   2 +-
 ldapmanager/locale/zh_TW/fusiondirectory.po   |   2 +-
 mail/locale/af_ZA/fusiondirectory.po          |   2 +-
 mail/locale/ar/fusiondirectory.po             |   2 +-
 mail/locale/ca/fusiondirectory.po             |   2 +-
 mail/locale/cs_CZ/fusiondirectory.po          |   2 +-
 mail/locale/de/fusiondirectory.po             |   2 +-
 mail/locale/el_GR/fusiondirectory.po          |   2 +-
 mail/locale/es/fusiondirectory.po             |   2 +-
 mail/locale/es_CO/fusiondirectory.po          |   2 +-
 mail/locale/es_VE/fusiondirectory.po          |   2 +-
 mail/locale/fa_IR/fusiondirectory.po          |   2 +-
 mail/locale/fi_FI/fusiondirectory.po          |   2 +-
 mail/locale/fr/fusiondirectory.po             |   2 +-
 mail/locale/hu_HU/fusiondirectory.po          |   2 +-
 mail/locale/id/fusiondirectory.po             |   2 +-
 mail/locale/it_IT/fusiondirectory.po          |   2 +-
 mail/locale/ja/fusiondirectory.po             |   2 +-
 mail/locale/ko/fusiondirectory.po             |   2 +-
 mail/locale/lv/fusiondirectory.po             |   2 +-
 mail/locale/nb/fusiondirectory.po             |   2 +-
 mail/locale/nl/fusiondirectory.po             |   2 +-
 mail/locale/pl/fusiondirectory.po             |   2 +-
 mail/locale/pt/fusiondirectory.po             |   2 +-
 mail/locale/pt_BR/fusiondirectory.po          |   2 +-
 mail/locale/ru/fusiondirectory.po             |   2 +-
 mail/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 mail/locale/sv/fusiondirectory.po             |   2 +-
 mail/locale/tr_TR/fusiondirectory.po          |   2 +-
 mail/locale/ug/fusiondirectory.po             |   6 +-
 mail/locale/vi_VN/fusiondirectory.po          |   2 +-
 mail/locale/zh/fusiondirectory.po             |   2 +-
 mail/locale/zh_TW/fusiondirectory.po          |   2 +-
 mixedgroups/locale/af_ZA/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ar/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ca/fusiondirectory.po      |   2 +-
 mixedgroups/locale/cs_CZ/fusiondirectory.po   |   2 +-
 mixedgroups/locale/de/fusiondirectory.po      |   2 +-
 mixedgroups/locale/el_GR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es/fusiondirectory.po      |   2 +-
 mixedgroups/locale/es_CO/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es_VE/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fa_IR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fi_FI/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fr/fusiondirectory.po      |   2 +-
 mixedgroups/locale/hu_HU/fusiondirectory.po   |   2 +-
 mixedgroups/locale/id/fusiondirectory.po      |   2 +-
 mixedgroups/locale/it_IT/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ja/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ko/fusiondirectory.po      |   2 +-
 mixedgroups/locale/lv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nb/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt_BR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 mixedgroups/locale/sv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/tr_TR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ug/fusiondirectory.po      |   6 +-
 mixedgroups/locale/vi_VN/fusiondirectory.po   |   2 +-
 mixedgroups/locale/zh/fusiondirectory.po      |   2 +-
 mixedgroups/locale/zh_TW/fusiondirectory.po   |   2 +-
 nagios/locale/af_ZA/fusiondirectory.po        |   2 +-
 nagios/locale/ar/fusiondirectory.po           |   2 +-
 nagios/locale/ca/fusiondirectory.po           |   2 +-
 nagios/locale/cs_CZ/fusiondirectory.po        |   2 +-
 nagios/locale/de/fusiondirectory.po           |   2 +-
 nagios/locale/el_GR/fusiondirectory.po        |   2 +-
 nagios/locale/es/fusiondirectory.po           |   2 +-
 nagios/locale/es_CO/fusiondirectory.po        |   2 +-
 nagios/locale/es_VE/fusiondirectory.po        |   2 +-
 nagios/locale/fa_IR/fusiondirectory.po        |   2 +-
 nagios/locale/fi_FI/fusiondirectory.po        |   2 +-
 nagios/locale/fr/fusiondirectory.po           |   2 +-
 nagios/locale/hu_HU/fusiondirectory.po        |   2 +-
 nagios/locale/id/fusiondirectory.po           |   2 +-
 nagios/locale/it_IT/fusiondirectory.po        |   2 +-
 nagios/locale/ja/fusiondirectory.po           |   2 +-
 nagios/locale/ko/fusiondirectory.po           |   2 +-
 nagios/locale/lv/fusiondirectory.po           |   2 +-
 nagios/locale/nb/fusiondirectory.po           |   2 +-
 nagios/locale/nl/fusiondirectory.po           |   2 +-
 nagios/locale/pl/fusiondirectory.po           |   2 +-
 nagios/locale/pt/fusiondirectory.po           |   2 +-
 nagios/locale/pt_BR/fusiondirectory.po        |   2 +-
 nagios/locale/ru/fusiondirectory.po           |   2 +-
 nagios/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 nagios/locale/sv/fusiondirectory.po           |   2 +-
 nagios/locale/tr_TR/fusiondirectory.po        |   2 +-
 nagios/locale/ug/fusiondirectory.po           |   6 +-
 nagios/locale/vi_VN/fusiondirectory.po        |   2 +-
 nagios/locale/zh/fusiondirectory.po           |   2 +-
 nagios/locale/zh_TW/fusiondirectory.po        |   2 +-
 netgroups/locale/af_ZA/fusiondirectory.po     |   2 +-
 netgroups/locale/ar/fusiondirectory.po        |   2 +-
 netgroups/locale/ca/fusiondirectory.po        |   2 +-
 netgroups/locale/cs_CZ/fusiondirectory.po     |   2 +-
 netgroups/locale/de/fusiondirectory.po        |   2 +-
 netgroups/locale/el_GR/fusiondirectory.po     |   2 +-
 netgroups/locale/es/fusiondirectory.po        |   2 +-
 netgroups/locale/es_CO/fusiondirectory.po     |   2 +-
 netgroups/locale/es_VE/fusiondirectory.po     |   2 +-
 netgroups/locale/fa_IR/fusiondirectory.po     |   2 +-
 netgroups/locale/fi_FI/fusiondirectory.po     |   2 +-
 netgroups/locale/fr/fusiondirectory.po        |   2 +-
 netgroups/locale/hu_HU/fusiondirectory.po     |   2 +-
 netgroups/locale/id/fusiondirectory.po        |   2 +-
 netgroups/locale/it_IT/fusiondirectory.po     |   2 +-
 netgroups/locale/ja/fusiondirectory.po        |   2 +-
 netgroups/locale/ko/fusiondirectory.po        |   2 +-
 netgroups/locale/lv/fusiondirectory.po        |   2 +-
 netgroups/locale/nb/fusiondirectory.po        |   2 +-
 netgroups/locale/nl/fusiondirectory.po        |   2 +-
 netgroups/locale/pl/fusiondirectory.po        |   2 +-
 netgroups/locale/pt/fusiondirectory.po        |   2 +-
 netgroups/locale/pt_BR/fusiondirectory.po     |   2 +-
 netgroups/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 netgroups/locale/sv/fusiondirectory.po        |   2 +-
 netgroups/locale/tr_TR/fusiondirectory.po     |   2 +-
 netgroups/locale/ug/fusiondirectory.po        |   6 +-
 netgroups/locale/vi_VN/fusiondirectory.po     |   2 +-
 netgroups/locale/zh/fusiondirectory.po        |   2 +-
 netgroups/locale/zh_TW/fusiondirectory.po     |   2 +-
 newsletter/locale/af_ZA/fusiondirectory.po    |   2 +-
 newsletter/locale/ar/fusiondirectory.po       |   2 +-
 newsletter/locale/ca/fusiondirectory.po       |   2 +-
 newsletter/locale/cs_CZ/fusiondirectory.po    |   2 +-
 newsletter/locale/de/fusiondirectory.po       |   2 +-
 newsletter/locale/el_GR/fusiondirectory.po    |   2 +-
 newsletter/locale/es/fusiondirectory.po       |   2 +-
 newsletter/locale/es_CO/fusiondirectory.po    |   2 +-
 newsletter/locale/es_VE/fusiondirectory.po    |   2 +-
 newsletter/locale/fa_IR/fusiondirectory.po    |   2 +-
 newsletter/locale/fi_FI/fusiondirectory.po    |   2 +-
 newsletter/locale/fr/fusiondirectory.po       |   2 +-
 newsletter/locale/hu_HU/fusiondirectory.po    |   2 +-
 newsletter/locale/id/fusiondirectory.po       |   2 +-
 newsletter/locale/it_IT/fusiondirectory.po    |   2 +-
 newsletter/locale/ja/fusiondirectory.po       |   2 +-
 newsletter/locale/ko/fusiondirectory.po       |   2 +-
 newsletter/locale/lv/fusiondirectory.po       |   2 +-
 newsletter/locale/nb/fusiondirectory.po       |   2 +-
 newsletter/locale/nl/fusiondirectory.po       |   2 +-
 newsletter/locale/pl/fusiondirectory.po       |   2 +-
 newsletter/locale/pt/fusiondirectory.po       |   2 +-
 newsletter/locale/pt_BR/fusiondirectory.po    |   2 +-
 newsletter/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 newsletter/locale/sv/fusiondirectory.po       |   2 +-
 newsletter/locale/tr_TR/fusiondirectory.po    |   2 +-
 newsletter/locale/ug/fusiondirectory.po       |   6 +-
 newsletter/locale/vi_VN/fusiondirectory.po    |   2 +-
 newsletter/locale/zh/fusiondirectory.po       |   2 +-
 newsletter/locale/zh_TW/fusiondirectory.po    |   2 +-
 opsi/locale/af_ZA/fusiondirectory.po          |   2 +-
 opsi/locale/ar/fusiondirectory.po             |   2 +-
 opsi/locale/ca/fusiondirectory.po             |   2 +-
 opsi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 opsi/locale/de/fusiondirectory.po             |   2 +-
 opsi/locale/el_GR/fusiondirectory.po          |   2 +-
 opsi/locale/es/fusiondirectory.po             |   2 +-
 opsi/locale/es_CO/fusiondirectory.po          |   2 +-
 opsi/locale/es_VE/fusiondirectory.po          |   2 +-
 opsi/locale/fa_IR/fusiondirectory.po          |   2 +-
 opsi/locale/fi_FI/fusiondirectory.po          |   2 +-
 opsi/locale/fr/fusiondirectory.po             |   2 +-
 opsi/locale/hu_HU/fusiondirectory.po          |   2 +-
 opsi/locale/id/fusiondirectory.po             |   2 +-
 opsi/locale/it_IT/fusiondirectory.po          |   2 +-
 opsi/locale/ja/fusiondirectory.po             |   2 +-
 opsi/locale/ko/fusiondirectory.po             |   8 +-
 opsi/locale/lv/fusiondirectory.po             |   2 +-
 opsi/locale/nb/fusiondirectory.po             |   2 +-
 opsi/locale/nl/fusiondirectory.po             |   2 +-
 opsi/locale/pl/fusiondirectory.po             |   2 +-
 opsi/locale/pt/fusiondirectory.po             |   2 +-
 opsi/locale/pt_BR/fusiondirectory.po          |   2 +-
 opsi/locale/ru/fusiondirectory.po             |   2 +-
 opsi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 opsi/locale/sv/fusiondirectory.po             |   2 +-
 opsi/locale/tr_TR/fusiondirectory.po          |   8 +-
 opsi/locale/ug/fusiondirectory.po             |   6 +-
 opsi/locale/vi_VN/fusiondirectory.po          |   2 +-
 opsi/locale/zh/fusiondirectory.po             |   2 +-
 opsi/locale/zh_TW/fusiondirectory.po          |   2 +-
 personal/locale/af_ZA/fusiondirectory.po      |   2 +-
 personal/locale/ar/fusiondirectory.po         |   2 +-
 personal/locale/ca/fusiondirectory.po         |   2 +-
 personal/locale/cs_CZ/fusiondirectory.po      |   2 +-
 personal/locale/de/fusiondirectory.po         |   2 +-
 personal/locale/el_GR/fusiondirectory.po      |   7 +-
 personal/locale/es/fusiondirectory.po         |   2 +-
 personal/locale/es_CO/fusiondirectory.po      |   2 +-
 personal/locale/es_VE/fusiondirectory.po      |   2 +-
 personal/locale/fa_IR/fusiondirectory.po      |   2 +-
 personal/locale/fi_FI/fusiondirectory.po      |   2 +-
 personal/locale/fr/fusiondirectory.po         |   2 +-
 personal/locale/hu_HU/fusiondirectory.po      |   2 +-
 personal/locale/id/fusiondirectory.po         |   2 +-
 personal/locale/it_IT/fusiondirectory.po      |   2 +-
 personal/locale/ja/fusiondirectory.po         |   2 +-
 personal/locale/ko/fusiondirectory.po         |   2 +-
 personal/locale/lv/fusiondirectory.po         |   2 +-
 personal/locale/nb/fusiondirectory.po         |   2 +-
 personal/locale/nl/fusiondirectory.po         |   2 +-
 personal/locale/pl/fusiondirectory.po         |   2 +-
 personal/locale/pt/fusiondirectory.po         |   2 +-
 personal/locale/pt_BR/fusiondirectory.po      |   2 +-
 personal/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 personal/locale/sv/fusiondirectory.po         |   2 +-
 personal/locale/tr_TR/fusiondirectory.po      |   2 +-
 personal/locale/ug/fusiondirectory.po         |   6 +-
 personal/locale/vi_VN/fusiondirectory.po      |   2 +-
 personal/locale/zh/fusiondirectory.po         |   2 +-
 personal/locale/zh_TW/fusiondirectory.po      |   2 +-
 posix/locale/af_ZA/fusiondirectory.po         |   2 +-
 posix/locale/ar/fusiondirectory.po            |   2 +-
 posix/locale/ca/fusiondirectory.po            |   2 +-
 posix/locale/cs_CZ/fusiondirectory.po         |   2 +-
 posix/locale/de/fusiondirectory.po            |   2 +-
 posix/locale/el_GR/fusiondirectory.po         |   2 +-
 posix/locale/es/fusiondirectory.po            |   2 +-
 posix/locale/es_CO/fusiondirectory.po         |   2 +-
 posix/locale/es_VE/fusiondirectory.po         |   2 +-
 posix/locale/fa_IR/fusiondirectory.po         |   2 +-
 posix/locale/fi_FI/fusiondirectory.po         |   2 +-
 posix/locale/fr/fusiondirectory.po            |   2 +-
 posix/locale/hu_HU/fusiondirectory.po         |   2 +-
 posix/locale/id/fusiondirectory.po            |   2 +-
 posix/locale/it_IT/fusiondirectory.po         |   2 +-
 posix/locale/ja/fusiondirectory.po            |   2 +-
 posix/locale/ko/fusiondirectory.po            |   2 +-
 posix/locale/lv/fusiondirectory.po            |   2 +-
 posix/locale/nb/fusiondirectory.po            |   2 +-
 posix/locale/nl/fusiondirectory.po            |   2 +-
 posix/locale/pl/fusiondirectory.po            |   2 +-
 posix/locale/pt/fusiondirectory.po            |   2 +-
 posix/locale/pt_BR/fusiondirectory.po         |   2 +-
 posix/locale/ru/fusiondirectory.po            |   2 +-
 posix/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 posix/locale/sv/fusiondirectory.po            |   2 +-
 posix/locale/tr_TR/fusiondirectory.po         |   8 +-
 posix/locale/ug/fusiondirectory.po            |   6 +-
 posix/locale/vi_VN/fusiondirectory.po         |   2 +-
 posix/locale/zh/fusiondirectory.po            |   2 +-
 posix/locale/zh_TW/fusiondirectory.po         |   2 +-
 postfix/locale/af_ZA/fusiondirectory.po       |   2 +-
 postfix/locale/ar/fusiondirectory.po          |   2 +-
 postfix/locale/ca/fusiondirectory.po          |   2 +-
 postfix/locale/cs_CZ/fusiondirectory.po       |   2 +-
 postfix/locale/de/fusiondirectory.po          |   2 +-
 postfix/locale/el_GR/fusiondirectory.po       |   2 +-
 postfix/locale/es/fusiondirectory.po          |   2 +-
 postfix/locale/es_CO/fusiondirectory.po       |   2 +-
 postfix/locale/es_VE/fusiondirectory.po       |   2 +-
 postfix/locale/fa_IR/fusiondirectory.po       |   2 +-
 postfix/locale/fi_FI/fusiondirectory.po       |   2 +-
 postfix/locale/fr/fusiondirectory.po          |   2 +-
 postfix/locale/hu_HU/fusiondirectory.po       |   2 +-
 postfix/locale/id/fusiondirectory.po          |   2 +-
 postfix/locale/it_IT/fusiondirectory.po       |   2 +-
 postfix/locale/ja/fusiondirectory.po          |   2 +-
 postfix/locale/ko/fusiondirectory.po          |  32 ++--
 postfix/locale/lv/fusiondirectory.po          |   2 +-
 postfix/locale/nb/fusiondirectory.po          |   2 +-
 postfix/locale/nl/fusiondirectory.po          |   2 +-
 postfix/locale/pl/fusiondirectory.po          |   2 +-
 postfix/locale/pt/fusiondirectory.po          |   2 +-
 postfix/locale/pt_BR/fusiondirectory.po       |   2 +-
 postfix/locale/ru/fusiondirectory.po          |   2 +-
 postfix/locale/ru@petr1708/fusiondirectory.po |   2 +-
 postfix/locale/sv/fusiondirectory.po          |   2 +-
 postfix/locale/tr_TR/fusiondirectory.po       |   2 +-
 postfix/locale/ug/fusiondirectory.po          |   6 +-
 postfix/locale/vi_VN/fusiondirectory.po       |   2 +-
 postfix/locale/zh/fusiondirectory.po          |   2 +-
 postfix/locale/zh_TW/fusiondirectory.po       |   2 +-
 ppolicy/locale/af_ZA/fusiondirectory.po       |   2 +-
 ppolicy/locale/ar/fusiondirectory.po          |   2 +-
 ppolicy/locale/ca/fusiondirectory.po          |   2 +-
 ppolicy/locale/cs_CZ/fusiondirectory.po       |   2 +-
 ppolicy/locale/de/fusiondirectory.po          |   2 +-
 ppolicy/locale/el_GR/fusiondirectory.po       |   2 +-
 ppolicy/locale/es/fusiondirectory.po          |   2 +-
 ppolicy/locale/es_CO/fusiondirectory.po       |   2 +-
 ppolicy/locale/es_VE/fusiondirectory.po       |   2 +-
 ppolicy/locale/fa_IR/fusiondirectory.po       |   2 +-
 ppolicy/locale/fi_FI/fusiondirectory.po       |   2 +-
 ppolicy/locale/fr/fusiondirectory.po          |   2 +-
 ppolicy/locale/hu_HU/fusiondirectory.po       |   2 +-
 ppolicy/locale/id/fusiondirectory.po          |   2 +-
 ppolicy/locale/it_IT/fusiondirectory.po       |   2 +-
 ppolicy/locale/ja/fusiondirectory.po          |   2 +-
 ppolicy/locale/ko/fusiondirectory.po          | 152 +++++++++---------
 ppolicy/locale/lv/fusiondirectory.po          |   2 +-
 ppolicy/locale/nb/fusiondirectory.po          |   2 +-
 ppolicy/locale/nl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt_BR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ru/fusiondirectory.po          |   2 +-
 ppolicy/locale/ru@petr1708/fusiondirectory.po |   2 +-
 ppolicy/locale/sv/fusiondirectory.po          |   2 +-
 ppolicy/locale/tr_TR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ug/fusiondirectory.po          |   7 +-
 ppolicy/locale/vi_VN/fusiondirectory.po       |   2 +-
 ppolicy/locale/zh/fusiondirectory.po          |   2 +-
 ppolicy/locale/zh_TW/fusiondirectory.po       |   2 +-
 puppet/locale/af_ZA/fusiondirectory.po        |   2 +-
 puppet/locale/ar/fusiondirectory.po           |   2 +-
 puppet/locale/ca/fusiondirectory.po           |   2 +-
 puppet/locale/cs_CZ/fusiondirectory.po        |   2 +-
 puppet/locale/de/fusiondirectory.po           |   2 +-
 puppet/locale/el_GR/fusiondirectory.po        |   2 +-
 puppet/locale/es/fusiondirectory.po           |   2 +-
 puppet/locale/es_CO/fusiondirectory.po        |   2 +-
 puppet/locale/es_VE/fusiondirectory.po        |   2 +-
 puppet/locale/fa_IR/fusiondirectory.po        |   2 +-
 puppet/locale/fi_FI/fusiondirectory.po        |   2 +-
 puppet/locale/fr/fusiondirectory.po           |   2 +-
 puppet/locale/hu_HU/fusiondirectory.po        |   2 +-
 puppet/locale/id/fusiondirectory.po           |   2 +-
 puppet/locale/it_IT/fusiondirectory.po        |   2 +-
 puppet/locale/ja/fusiondirectory.po           |   2 +-
 puppet/locale/ko/fusiondirectory.po           |  40 ++---
 puppet/locale/lv/fusiondirectory.po           |   2 +-
 puppet/locale/nb/fusiondirectory.po           |   2 +-
 puppet/locale/nl/fusiondirectory.po           |   2 +-
 puppet/locale/pl/fusiondirectory.po           |   2 +-
 puppet/locale/pt/fusiondirectory.po           |   2 +-
 puppet/locale/pt_BR/fusiondirectory.po        |   2 +-
 puppet/locale/ru/fusiondirectory.po           |   2 +-
 puppet/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 puppet/locale/sv/fusiondirectory.po           |   2 +-
 puppet/locale/tr_TR/fusiondirectory.po        |   2 +-
 puppet/locale/ug/fusiondirectory.po           |   6 +-
 puppet/locale/vi_VN/fusiondirectory.po        |   2 +-
 puppet/locale/zh/fusiondirectory.po           |   2 +-
 puppet/locale/zh_TW/fusiondirectory.po        |   2 +-
 pureftpd/locale/af_ZA/fusiondirectory.po      |   2 +-
 pureftpd/locale/ar/fusiondirectory.po         |   2 +-
 pureftpd/locale/ca/fusiondirectory.po         |   2 +-
 pureftpd/locale/cs_CZ/fusiondirectory.po      |   2 +-
 pureftpd/locale/de/fusiondirectory.po         |   2 +-
 pureftpd/locale/el_GR/fusiondirectory.po      |   2 +-
 pureftpd/locale/es/fusiondirectory.po         |   2 +-
 pureftpd/locale/es_CO/fusiondirectory.po      |   2 +-
 pureftpd/locale/es_VE/fusiondirectory.po      |   2 +-
 pureftpd/locale/fa_IR/fusiondirectory.po      |   2 +-
 pureftpd/locale/fi_FI/fusiondirectory.po      |   2 +-
 pureftpd/locale/fr/fusiondirectory.po         |   2 +-
 pureftpd/locale/hu_HU/fusiondirectory.po      |   2 +-
 pureftpd/locale/id/fusiondirectory.po         |   2 +-
 pureftpd/locale/it_IT/fusiondirectory.po      |   2 +-
 pureftpd/locale/ja/fusiondirectory.po         |   2 +-
 pureftpd/locale/ko/fusiondirectory.po         |   2 +-
 pureftpd/locale/lv/fusiondirectory.po         |   2 +-
 pureftpd/locale/nb/fusiondirectory.po         |   2 +-
 pureftpd/locale/nl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt_BR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 pureftpd/locale/sv/fusiondirectory.po         |   2 +-
 pureftpd/locale/tr_TR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ug/fusiondirectory.po         |   6 +-
 pureftpd/locale/vi_VN/fusiondirectory.po      |   2 +-
 pureftpd/locale/zh/fusiondirectory.po         |   2 +-
 pureftpd/locale/zh_TW/fusiondirectory.po      |   2 +-
 quota/locale/af_ZA/fusiondirectory.po         |   2 +-
 quota/locale/ar/fusiondirectory.po            |   2 +-
 quota/locale/ca/fusiondirectory.po            |   2 +-
 quota/locale/cs_CZ/fusiondirectory.po         |   2 +-
 quota/locale/de/fusiondirectory.po            |   2 +-
 quota/locale/el_GR/fusiondirectory.po         |   2 +-
 quota/locale/es/fusiondirectory.po            |   2 +-
 quota/locale/es_CO/fusiondirectory.po         |   2 +-
 quota/locale/es_VE/fusiondirectory.po         |   2 +-
 quota/locale/fa_IR/fusiondirectory.po         |   2 +-
 quota/locale/fi_FI/fusiondirectory.po         |   2 +-
 quota/locale/fr/fusiondirectory.po            |   2 +-
 quota/locale/hu_HU/fusiondirectory.po         |   2 +-
 quota/locale/id/fusiondirectory.po            |   2 +-
 quota/locale/it_IT/fusiondirectory.po         |   2 +-
 quota/locale/ja/fusiondirectory.po            |   2 +-
 quota/locale/ko/fusiondirectory.po            | 100 ++++++------
 quota/locale/lv/fusiondirectory.po            |   2 +-
 quota/locale/nb/fusiondirectory.po            |   2 +-
 quota/locale/nl/fusiondirectory.po            |   2 +-
 quota/locale/pl/fusiondirectory.po            |   2 +-
 quota/locale/pt/fusiondirectory.po            |   2 +-
 quota/locale/pt_BR/fusiondirectory.po         |   2 +-
 quota/locale/ru/fusiondirectory.po            |   2 +-
 quota/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 quota/locale/sv/fusiondirectory.po            |   2 +-
 quota/locale/tr_TR/fusiondirectory.po         |   2 +-
 quota/locale/ug/fusiondirectory.po            |   6 +-
 quota/locale/vi_VN/fusiondirectory.po         |   2 +-
 quota/locale/zh/fusiondirectory.po            |   2 +-
 quota/locale/zh_TW/fusiondirectory.po         |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 renater-partage/locale/ar/fusiondirectory.po  |   2 +-
 renater-partage/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 renater-partage/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 renater-partage/locale/es/fusiondirectory.po  |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 renater-partage/locale/fr/fusiondirectory.po  |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 renater-partage/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 renater-partage/locale/ja/fusiondirectory.po  |   2 +-
 renater-partage/locale/ko/fusiondirectory.po  |  90 ++++++-----
 renater-partage/locale/lv/fusiondirectory.po  |   2 +-
 renater-partage/locale/nb/fusiondirectory.po  |   2 +-
 renater-partage/locale/nl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pt/fusiondirectory.po  |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 renater-partage/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 renater-partage/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   8 +-
 renater-partage/locale/ug/fusiondirectory.po  |   6 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 renater-partage/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 repository/locale/af_ZA/fusiondirectory.po    |   2 +-
 repository/locale/ar/fusiondirectory.po       |   2 +-
 repository/locale/ca/fusiondirectory.po       |   2 +-
 repository/locale/cs_CZ/fusiondirectory.po    |   2 +-
 repository/locale/de/fusiondirectory.po       |   2 +-
 repository/locale/el_GR/fusiondirectory.po    |   2 +-
 repository/locale/es/fusiondirectory.po       |   2 +-
 repository/locale/es_CO/fusiondirectory.po    |   2 +-
 repository/locale/es_VE/fusiondirectory.po    |   2 +-
 repository/locale/fa_IR/fusiondirectory.po    |   2 +-
 repository/locale/fi_FI/fusiondirectory.po    |   2 +-
 repository/locale/fr/fusiondirectory.po       |   2 +-
 repository/locale/hu_HU/fusiondirectory.po    |   2 +-
 repository/locale/id/fusiondirectory.po       |   2 +-
 repository/locale/it_IT/fusiondirectory.po    |   2 +-
 repository/locale/ja/fusiondirectory.po       |   2 +-
 repository/locale/ko/fusiondirectory.po       |   2 +-
 repository/locale/lv/fusiondirectory.po       |   2 +-
 repository/locale/nb/fusiondirectory.po       |   2 +-
 repository/locale/nl/fusiondirectory.po       |   2 +-
 repository/locale/pl/fusiondirectory.po       |   2 +-
 repository/locale/pt/fusiondirectory.po       |   2 +-
 repository/locale/pt_BR/fusiondirectory.po    |   2 +-
 repository/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 repository/locale/sv/fusiondirectory.po       |   2 +-
 repository/locale/tr_TR/fusiondirectory.po    |   2 +-
 repository/locale/ug/fusiondirectory.po       |   6 +-
 repository/locale/vi_VN/fusiondirectory.po    |   2 +-
 repository/locale/zh/fusiondirectory.po       |   2 +-
 repository/locale/zh_TW/fusiondirectory.po    |   2 +-
 samba/locale/af_ZA/fusiondirectory.po         |   2 +-
 samba/locale/ar/fusiondirectory.po            |   2 +-
 samba/locale/ca/fusiondirectory.po            |   2 +-
 samba/locale/cs_CZ/fusiondirectory.po         |   2 +-
 samba/locale/de/fusiondirectory.po            |   2 +-
 samba/locale/el_GR/fusiondirectory.po         |   2 +-
 samba/locale/es/fusiondirectory.po            |   2 +-
 samba/locale/es_CO/fusiondirectory.po         |   2 +-
 samba/locale/es_VE/fusiondirectory.po         |   2 +-
 samba/locale/fa_IR/fusiondirectory.po         |   2 +-
 samba/locale/fi_FI/fusiondirectory.po         |   2 +-
 samba/locale/fr/fusiondirectory.po            |   2 +-
 samba/locale/hu_HU/fusiondirectory.po         |   2 +-
 samba/locale/id/fusiondirectory.po            |   2 +-
 samba/locale/it_IT/fusiondirectory.po         |   2 +-
 samba/locale/ja/fusiondirectory.po            |   2 +-
 samba/locale/ko/fusiondirectory.po            |  72 ++++-----
 samba/locale/lv/fusiondirectory.po            |   2 +-
 samba/locale/nb/fusiondirectory.po            |   2 +-
 samba/locale/nl/fusiondirectory.po            |   2 +-
 samba/locale/pl/fusiondirectory.po            |   2 +-
 samba/locale/pt/fusiondirectory.po            |   2 +-
 samba/locale/pt_BR/fusiondirectory.po         |   2 +-
 samba/locale/ru/fusiondirectory.po            |   2 +-
 samba/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 samba/locale/sv/fusiondirectory.po            |   2 +-
 samba/locale/tr_TR/fusiondirectory.po         |   2 +-
 samba/locale/ug/fusiondirectory.po            |   6 +-
 samba/locale/vi_VN/fusiondirectory.po         |   2 +-
 samba/locale/zh/fusiondirectory.po            |   2 +-
 samba/locale/zh_TW/fusiondirectory.po         |   2 +-
 sinaps/locale/af_ZA/fusiondirectory.po        |  10 +-
 sinaps/locale/ar/fusiondirectory.po           |  10 +-
 sinaps/locale/ca/fusiondirectory.po           |  10 +-
 sinaps/locale/cs_CZ/fusiondirectory.po        |  10 +-
 sinaps/locale/de/fusiondirectory.po           |  15 +-
 sinaps/locale/el_GR/fusiondirectory.po        |  10 +-
 sinaps/locale/es/fusiondirectory.po           |  10 +-
 sinaps/locale/es_CO/fusiondirectory.po        |  10 +-
 sinaps/locale/es_VE/fusiondirectory.po        |  10 +-
 sinaps/locale/fa_IR/fusiondirectory.po        |  10 +-
 sinaps/locale/fi_FI/fusiondirectory.po        |  10 +-
 sinaps/locale/fr/fusiondirectory.po           |  10 +-
 sinaps/locale/hu_HU/fusiondirectory.po        |  10 +-
 sinaps/locale/id/fusiondirectory.po           |  10 +-
 sinaps/locale/it_IT/fusiondirectory.po        |  10 +-
 sinaps/locale/ja/fusiondirectory.po           |  10 +-
 sinaps/locale/ko/fusiondirectory.po           |  16 +-
 sinaps/locale/lv/fusiondirectory.po           |  10 +-
 sinaps/locale/nb/fusiondirectory.po           |  10 +-
 sinaps/locale/nl/fusiondirectory.po           |  10 +-
 sinaps/locale/pl/fusiondirectory.po           |  10 +-
 sinaps/locale/pt/fusiondirectory.po           |  10 +-
 sinaps/locale/pt_BR/fusiondirectory.po        |  10 +-
 sinaps/locale/ru/fusiondirectory.po           |  10 +-
 sinaps/locale/ru@petr1708/fusiondirectory.po  |  10 +-
 sinaps/locale/sv/fusiondirectory.po           |  10 +-
 sinaps/locale/tr_TR/fusiondirectory.po        |  10 +-
 sinaps/locale/ug/fusiondirectory.po           |  14 +-
 sinaps/locale/vi_VN/fusiondirectory.po        |  10 +-
 sinaps/locale/zh/fusiondirectory.po           |  10 +-
 sinaps/locale/zh_TW/fusiondirectory.po        |  10 +-
 sogo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sogo/locale/ar/fusiondirectory.po             |   2 +-
 sogo/locale/ca/fusiondirectory.po             |   2 +-
 sogo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sogo/locale/de/fusiondirectory.po             |   2 +-
 sogo/locale/el_GR/fusiondirectory.po          |   2 +-
 sogo/locale/es/fusiondirectory.po             |   2 +-
 sogo/locale/es_CO/fusiondirectory.po          |   2 +-
 sogo/locale/es_VE/fusiondirectory.po          |   2 +-
 sogo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sogo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sogo/locale/fr/fusiondirectory.po             |   2 +-
 sogo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sogo/locale/id/fusiondirectory.po             |   2 +-
 sogo/locale/it_IT/fusiondirectory.po          |   2 +-
 sogo/locale/ja/fusiondirectory.po             |   2 +-
 sogo/locale/ko/fusiondirectory.po             |   2 +-
 sogo/locale/lv/fusiondirectory.po             |   2 +-
 sogo/locale/nb/fusiondirectory.po             |   2 +-
 sogo/locale/nl/fusiondirectory.po             |   2 +-
 sogo/locale/pl/fusiondirectory.po             |   2 +-
 sogo/locale/pt/fusiondirectory.po             |   2 +-
 sogo/locale/pt_BR/fusiondirectory.po          |   2 +-
 sogo/locale/ru/fusiondirectory.po             |   2 +-
 sogo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sogo/locale/sv/fusiondirectory.po             |   2 +-
 sogo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sogo/locale/ug/fusiondirectory.po             |   6 +-
 sogo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sogo/locale/zh/fusiondirectory.po             |   2 +-
 sogo/locale/zh_TW/fusiondirectory.po          |   2 +-
 spamassassin/locale/af_ZA/fusiondirectory.po  |   2 +-
 spamassassin/locale/ar/fusiondirectory.po     |   2 +-
 spamassassin/locale/ca/fusiondirectory.po     |   2 +-
 spamassassin/locale/cs_CZ/fusiondirectory.po  |   2 +-
 spamassassin/locale/de/fusiondirectory.po     |   2 +-
 spamassassin/locale/el_GR/fusiondirectory.po  |   2 +-
 spamassassin/locale/es/fusiondirectory.po     |   2 +-
 spamassassin/locale/es_CO/fusiondirectory.po  |   2 +-
 spamassassin/locale/es_VE/fusiondirectory.po  |   2 +-
 spamassassin/locale/fa_IR/fusiondirectory.po  |   2 +-
 spamassassin/locale/fi_FI/fusiondirectory.po  |   2 +-
 spamassassin/locale/fr/fusiondirectory.po     |   2 +-
 spamassassin/locale/hu_HU/fusiondirectory.po  |   2 +-
 spamassassin/locale/id/fusiondirectory.po     |   2 +-
 spamassassin/locale/it_IT/fusiondirectory.po  |   2 +-
 spamassassin/locale/ja/fusiondirectory.po     |   2 +-
 spamassassin/locale/ko/fusiondirectory.po     |   2 +-
 spamassassin/locale/lv/fusiondirectory.po     |   2 +-
 spamassassin/locale/nb/fusiondirectory.po     |   2 +-
 spamassassin/locale/nl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt_BR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 spamassassin/locale/sv/fusiondirectory.po     |   2 +-
 spamassassin/locale/tr_TR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ug/fusiondirectory.po     |   6 +-
 spamassassin/locale/vi_VN/fusiondirectory.po  |   2 +-
 spamassassin/locale/zh/fusiondirectory.po     |   2 +-
 spamassassin/locale/zh_TW/fusiondirectory.po  |   2 +-
 squid/locale/af_ZA/fusiondirectory.po         |   2 +-
 squid/locale/ar/fusiondirectory.po            |   2 +-
 squid/locale/ca/fusiondirectory.po            |   2 +-
 squid/locale/cs_CZ/fusiondirectory.po         |   2 +-
 squid/locale/de/fusiondirectory.po            |   2 +-
 squid/locale/el_GR/fusiondirectory.po         |   2 +-
 squid/locale/es/fusiondirectory.po            |   2 +-
 squid/locale/es_CO/fusiondirectory.po         |   2 +-
 squid/locale/es_VE/fusiondirectory.po         |   2 +-
 squid/locale/fa_IR/fusiondirectory.po         |   2 +-
 squid/locale/fi_FI/fusiondirectory.po         |   2 +-
 squid/locale/fr/fusiondirectory.po            |   2 +-
 squid/locale/hu_HU/fusiondirectory.po         |   2 +-
 squid/locale/id/fusiondirectory.po            |   2 +-
 squid/locale/it_IT/fusiondirectory.po         |   2 +-
 squid/locale/ja/fusiondirectory.po            |   2 +-
 squid/locale/ko/fusiondirectory.po            |   2 +-
 squid/locale/lv/fusiondirectory.po            |   2 +-
 squid/locale/nb/fusiondirectory.po            |   2 +-
 squid/locale/nl/fusiondirectory.po            |   2 +-
 squid/locale/pl/fusiondirectory.po            |   2 +-
 squid/locale/pt/fusiondirectory.po            |   2 +-
 squid/locale/pt_BR/fusiondirectory.po         |   2 +-
 squid/locale/ru/fusiondirectory.po            |   2 +-
 squid/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 squid/locale/sv/fusiondirectory.po            |   2 +-
 squid/locale/tr_TR/fusiondirectory.po         |   2 +-
 squid/locale/ug/fusiondirectory.po            |   6 +-
 squid/locale/vi_VN/fusiondirectory.po         |   2 +-
 squid/locale/zh/fusiondirectory.po            |   2 +-
 squid/locale/zh_TW/fusiondirectory.po         |   2 +-
 ssh/locale/af_ZA/fusiondirectory.po           |   2 +-
 ssh/locale/ar/fusiondirectory.po              |   2 +-
 ssh/locale/ca/fusiondirectory.po              |   2 +-
 ssh/locale/cs_CZ/fusiondirectory.po           |   2 +-
 ssh/locale/de/fusiondirectory.po              |   2 +-
 ssh/locale/el_GR/fusiondirectory.po           |   2 +-
 ssh/locale/es/fusiondirectory.po              |   2 +-
 ssh/locale/es_CO/fusiondirectory.po           |   2 +-
 ssh/locale/es_VE/fusiondirectory.po           |   2 +-
 ssh/locale/fa_IR/fusiondirectory.po           |   2 +-
 ssh/locale/fi_FI/fusiondirectory.po           |   2 +-
 ssh/locale/fr/fusiondirectory.po              |   2 +-
 ssh/locale/hu_HU/fusiondirectory.po           |   2 +-
 ssh/locale/id/fusiondirectory.po              |   2 +-
 ssh/locale/it_IT/fusiondirectory.po           |   2 +-
 ssh/locale/ja/fusiondirectory.po              |   2 +-
 ssh/locale/ko/fusiondirectory.po              |   2 +-
 ssh/locale/lv/fusiondirectory.po              |   2 +-
 ssh/locale/nb/fusiondirectory.po              |   2 +-
 ssh/locale/nl/fusiondirectory.po              |   2 +-
 ssh/locale/pl/fusiondirectory.po              |   2 +-
 ssh/locale/pt/fusiondirectory.po              |   2 +-
 ssh/locale/pt_BR/fusiondirectory.po           |   2 +-
 ssh/locale/ru/fusiondirectory.po              |   2 +-
 ssh/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ssh/locale/sv/fusiondirectory.po              |   2 +-
 ssh/locale/tr_TR/fusiondirectory.po           |  16 +-
 ssh/locale/ug/fusiondirectory.po              |   6 +-
 ssh/locale/vi_VN/fusiondirectory.po           |   2 +-
 ssh/locale/zh/fusiondirectory.po              |   2 +-
 ssh/locale/zh_TW/fusiondirectory.po           |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 subcontracting/locale/ar/fusiondirectory.po   |   2 +-
 subcontracting/locale/ca/fusiondirectory.po   |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 subcontracting/locale/de/fusiondirectory.po   |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 subcontracting/locale/es/fusiondirectory.po   |   2 +-
 .../locale/es_CO/fusiondirectory.po           |   2 +-
 .../locale/es_VE/fusiondirectory.po           |   2 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 subcontracting/locale/fr/fusiondirectory.po   |   2 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 subcontracting/locale/id/fusiondirectory.po   |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   2 +-
 subcontracting/locale/ja/fusiondirectory.po   |   2 +-
 subcontracting/locale/ko/fusiondirectory.po   |   2 +-
 subcontracting/locale/lv/fusiondirectory.po   |   2 +-
 subcontracting/locale/nb/fusiondirectory.po   |   2 +-
 subcontracting/locale/nl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pt/fusiondirectory.po   |   2 +-
 .../locale/pt_BR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ru/fusiondirectory.po   |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 subcontracting/locale/sv/fusiondirectory.po   |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ug/fusiondirectory.po   |   6 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 subcontracting/locale/zh/fusiondirectory.po   |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 sudo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sudo/locale/ar/fusiondirectory.po             |   2 +-
 sudo/locale/ca/fusiondirectory.po             |   2 +-
 sudo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sudo/locale/de/fusiondirectory.po             |   2 +-
 sudo/locale/el_GR/fusiondirectory.po          |   2 +-
 sudo/locale/es/fusiondirectory.po             |   2 +-
 sudo/locale/es_CO/fusiondirectory.po          |   2 +-
 sudo/locale/es_VE/fusiondirectory.po          |   2 +-
 sudo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sudo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sudo/locale/fr/fusiondirectory.po             |   2 +-
 sudo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sudo/locale/id/fusiondirectory.po             |   2 +-
 sudo/locale/it_IT/fusiondirectory.po          |   2 +-
 sudo/locale/ja/fusiondirectory.po             |   2 +-
 sudo/locale/ko/fusiondirectory.po             |   2 +-
 sudo/locale/lv/fusiondirectory.po             |   2 +-
 sudo/locale/nb/fusiondirectory.po             |   2 +-
 sudo/locale/nl/fusiondirectory.po             |   2 +-
 sudo/locale/pl/fusiondirectory.po             |   2 +-
 sudo/locale/pt/fusiondirectory.po             |   2 +-
 sudo/locale/pt_BR/fusiondirectory.po          |   2 +-
 sudo/locale/ru/fusiondirectory.po             |   2 +-
 sudo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sudo/locale/sv/fusiondirectory.po             |   2 +-
 sudo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sudo/locale/ug/fusiondirectory.po             |   6 +-
 sudo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sudo/locale/zh/fusiondirectory.po             |   2 +-
 sudo/locale/zh_TW/fusiondirectory.po          |   2 +-
 supann/locale/af_ZA/fusiondirectory.po        |   2 +-
 supann/locale/ar/fusiondirectory.po           |   2 +-
 supann/locale/ca/fusiondirectory.po           |   2 +-
 supann/locale/cs_CZ/fusiondirectory.po        |   2 +-
 supann/locale/de/fusiondirectory.po           |   2 +-
 supann/locale/el_GR/fusiondirectory.po        |   2 +-
 supann/locale/es/fusiondirectory.po           |   2 +-
 supann/locale/es_CO/fusiondirectory.po        |   2 +-
 supann/locale/es_VE/fusiondirectory.po        |   2 +-
 supann/locale/fa_IR/fusiondirectory.po        |   2 +-
 supann/locale/fi_FI/fusiondirectory.po        |   2 +-
 supann/locale/fr/fusiondirectory.po           |   2 +-
 supann/locale/hu_HU/fusiondirectory.po        |   2 +-
 supann/locale/id/fusiondirectory.po           |   2 +-
 supann/locale/it_IT/fusiondirectory.po        |   2 +-
 supann/locale/ja/fusiondirectory.po           |   2 +-
 supann/locale/ko/fusiondirectory.po           |  78 ++++-----
 supann/locale/lv/fusiondirectory.po           |   2 +-
 supann/locale/nb/fusiondirectory.po           |   2 +-
 supann/locale/nl/fusiondirectory.po           |   2 +-
 supann/locale/pl/fusiondirectory.po           |   2 +-
 supann/locale/pt/fusiondirectory.po           |   2 +-
 supann/locale/pt_BR/fusiondirectory.po        |   2 +-
 supann/locale/ru/fusiondirectory.po           |   2 +-
 supann/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 supann/locale/sv/fusiondirectory.po           |   2 +-
 supann/locale/tr_TR/fusiondirectory.po        |   2 +-
 supann/locale/ug/fusiondirectory.po           |   6 +-
 supann/locale/vi_VN/fusiondirectory.po        |   2 +-
 supann/locale/zh/fusiondirectory.po           |   2 +-
 supann/locale/zh_TW/fusiondirectory.po        |   2 +-
 sympa/locale/af_ZA/fusiondirectory.po         |   2 +-
 sympa/locale/ar/fusiondirectory.po            |   2 +-
 sympa/locale/ca/fusiondirectory.po            |   2 +-
 sympa/locale/cs_CZ/fusiondirectory.po         |   2 +-
 sympa/locale/de/fusiondirectory.po            |   2 +-
 sympa/locale/el_GR/fusiondirectory.po         |   2 +-
 sympa/locale/es/fusiondirectory.po            |   2 +-
 sympa/locale/es_CO/fusiondirectory.po         |   2 +-
 sympa/locale/es_VE/fusiondirectory.po         |   2 +-
 sympa/locale/fa_IR/fusiondirectory.po         |   2 +-
 sympa/locale/fi_FI/fusiondirectory.po         |   2 +-
 sympa/locale/fr/fusiondirectory.po            |   2 +-
 sympa/locale/hu_HU/fusiondirectory.po         |   2 +-
 sympa/locale/id/fusiondirectory.po            |   2 +-
 sympa/locale/it_IT/fusiondirectory.po         |   2 +-
 sympa/locale/ja/fusiondirectory.po            |   2 +-
 sympa/locale/ko/fusiondirectory.po            |   2 +-
 sympa/locale/lv/fusiondirectory.po            |   2 +-
 sympa/locale/nb/fusiondirectory.po            |   2 +-
 sympa/locale/nl/fusiondirectory.po            |   2 +-
 sympa/locale/pl/fusiondirectory.po            |   2 +-
 sympa/locale/pt/fusiondirectory.po            |   2 +-
 sympa/locale/pt_BR/fusiondirectory.po         |   2 +-
 sympa/locale/ru/fusiondirectory.po            |   2 +-
 sympa/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 sympa/locale/sv/fusiondirectory.po            |   2 +-
 sympa/locale/tr_TR/fusiondirectory.po         |   2 +-
 sympa/locale/ug/fusiondirectory.po            |   6 +-
 sympa/locale/vi_VN/fusiondirectory.po         |   2 +-
 sympa/locale/zh/fusiondirectory.po            |   2 +-
 sympa/locale/zh_TW/fusiondirectory.po         |   2 +-
 systems/locale/af_ZA/fusiondirectory.po       |   2 +-
 systems/locale/ar/fusiondirectory.po          |   2 +-
 systems/locale/ca/fusiondirectory.po          |   2 +-
 systems/locale/cs_CZ/fusiondirectory.po       |   2 +-
 systems/locale/de/fusiondirectory.po          |   2 +-
 systems/locale/el_GR/fusiondirectory.po       |   2 +-
 systems/locale/es/fusiondirectory.po          |   2 +-
 systems/locale/es_CO/fusiondirectory.po       |   2 +-
 systems/locale/es_VE/fusiondirectory.po       |   2 +-
 systems/locale/fa_IR/fusiondirectory.po       |   2 +-
 systems/locale/fi_FI/fusiondirectory.po       |   2 +-
 systems/locale/fr/fusiondirectory.po          |   2 +-
 systems/locale/hu_HU/fusiondirectory.po       |   2 +-
 systems/locale/id/fusiondirectory.po          |   2 +-
 systems/locale/it_IT/fusiondirectory.po       |   2 +-
 systems/locale/ja/fusiondirectory.po          |   2 +-
 systems/locale/ko/fusiondirectory.po          |   2 +-
 systems/locale/lv/fusiondirectory.po          |   2 +-
 systems/locale/nb/fusiondirectory.po          |   2 +-
 systems/locale/nl/fusiondirectory.po          |   2 +-
 systems/locale/pl/fusiondirectory.po          |   2 +-
 systems/locale/pt/fusiondirectory.po          |   2 +-
 systems/locale/pt_BR/fusiondirectory.po       |   2 +-
 systems/locale/ru/fusiondirectory.po          |   2 +-
 systems/locale/ru@petr1708/fusiondirectory.po |   2 +-
 systems/locale/sv/fusiondirectory.po          |   2 +-
 systems/locale/tr_TR/fusiondirectory.po       |   8 +-
 systems/locale/ug/fusiondirectory.po          |   8 +-
 systems/locale/vi_VN/fusiondirectory.po       |   2 +-
 systems/locale/zh/fusiondirectory.po          |   2 +-
 systems/locale/zh_TW/fusiondirectory.po       |   2 +-
 user-reminder/locale/af_ZA/fusiondirectory.po |   2 +-
 user-reminder/locale/ar/fusiondirectory.po    |   2 +-
 user-reminder/locale/ca/fusiondirectory.po    |   2 +-
 user-reminder/locale/cs_CZ/fusiondirectory.po |   2 +-
 user-reminder/locale/de/fusiondirectory.po    |   2 +-
 user-reminder/locale/el_GR/fusiondirectory.po |   2 +-
 user-reminder/locale/es/fusiondirectory.po    |   2 +-
 user-reminder/locale/es_CO/fusiondirectory.po |   2 +-
 user-reminder/locale/es_VE/fusiondirectory.po |   2 +-
 user-reminder/locale/fa_IR/fusiondirectory.po |   2 +-
 user-reminder/locale/fi_FI/fusiondirectory.po |   2 +-
 user-reminder/locale/fr/fusiondirectory.po    |   2 +-
 user-reminder/locale/hu_HU/fusiondirectory.po |   2 +-
 user-reminder/locale/id/fusiondirectory.po    |   2 +-
 user-reminder/locale/it_IT/fusiondirectory.po |   2 +-
 user-reminder/locale/ja/fusiondirectory.po    |   2 +-
 user-reminder/locale/ko/fusiondirectory.po    |   2 +-
 user-reminder/locale/lv/fusiondirectory.po    |   2 +-
 user-reminder/locale/nb/fusiondirectory.po    |   2 +-
 user-reminder/locale/nl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt_BR/fusiondirectory.po |   2 +-
 user-reminder/locale/ru/fusiondirectory.po    |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 user-reminder/locale/sv/fusiondirectory.po    |   2 +-
 user-reminder/locale/tr_TR/fusiondirectory.po |  10 +-
 user-reminder/locale/ug/fusiondirectory.po    |   6 +-
 user-reminder/locale/vi_VN/fusiondirectory.po |   2 +-
 user-reminder/locale/zh/fusiondirectory.po    |   2 +-
 user-reminder/locale/zh_TW/fusiondirectory.po |   2 +-
 weblink/locale/af_ZA/fusiondirectory.po       |   2 +-
 weblink/locale/ar/fusiondirectory.po          |   2 +-
 weblink/locale/ca/fusiondirectory.po          |   2 +-
 weblink/locale/cs_CZ/fusiondirectory.po       |   2 +-
 weblink/locale/de/fusiondirectory.po          |   2 +-
 weblink/locale/el_GR/fusiondirectory.po       |   2 +-
 weblink/locale/es/fusiondirectory.po          |   2 +-
 weblink/locale/es_CO/fusiondirectory.po       |   2 +-
 weblink/locale/es_VE/fusiondirectory.po       |   2 +-
 weblink/locale/fa_IR/fusiondirectory.po       |   2 +-
 weblink/locale/fi_FI/fusiondirectory.po       |   2 +-
 weblink/locale/fr/fusiondirectory.po          |   2 +-
 weblink/locale/hu_HU/fusiondirectory.po       |   2 +-
 weblink/locale/id/fusiondirectory.po          |   2 +-
 weblink/locale/it_IT/fusiondirectory.po       |   2 +-
 weblink/locale/ja/fusiondirectory.po          |   2 +-
 weblink/locale/ko/fusiondirectory.po          |   2 +-
 weblink/locale/lv/fusiondirectory.po          |   2 +-
 weblink/locale/nb/fusiondirectory.po          |   2 +-
 weblink/locale/nl/fusiondirectory.po          |   2 +-
 weblink/locale/pl/fusiondirectory.po          |   2 +-
 weblink/locale/pt/fusiondirectory.po          |   2 +-
 weblink/locale/pt_BR/fusiondirectory.po       |   2 +-
 weblink/locale/ru/fusiondirectory.po          |   2 +-
 weblink/locale/ru@petr1708/fusiondirectory.po |   2 +-
 weblink/locale/sv/fusiondirectory.po          |   2 +-
 weblink/locale/tr_TR/fusiondirectory.po       |  23 +--
 weblink/locale/ug/fusiondirectory.po          |   6 +-
 weblink/locale/vi_VN/fusiondirectory.po       |   2 +-
 weblink/locale/zh/fusiondirectory.po          |   2 +-
 weblink/locale/zh_TW/fusiondirectory.po       |   2 +-
 webservice/locale/af_ZA/fusiondirectory.po    |   2 +-
 webservice/locale/ar/fusiondirectory.po       |   2 +-
 webservice/locale/ca/fusiondirectory.po       |   2 +-
 webservice/locale/cs_CZ/fusiondirectory.po    |   2 +-
 webservice/locale/de/fusiondirectory.po       |   2 +-
 webservice/locale/el_GR/fusiondirectory.po    |   2 +-
 webservice/locale/es/fusiondirectory.po       |   2 +-
 webservice/locale/es_CO/fusiondirectory.po    |   2 +-
 webservice/locale/es_VE/fusiondirectory.po    |   2 +-
 webservice/locale/fa_IR/fusiondirectory.po    |   2 +-
 webservice/locale/fi_FI/fusiondirectory.po    |   2 +-
 webservice/locale/fr/fusiondirectory.po       |   2 +-
 webservice/locale/hu_HU/fusiondirectory.po    |   2 +-
 webservice/locale/id/fusiondirectory.po       |   2 +-
 webservice/locale/it_IT/fusiondirectory.po    |   2 +-
 webservice/locale/ja/fusiondirectory.po       |   2 +-
 webservice/locale/ko/fusiondirectory.po       |   2 +-
 webservice/locale/lv/fusiondirectory.po       |   2 +-
 webservice/locale/nb/fusiondirectory.po       |   2 +-
 webservice/locale/nl/fusiondirectory.po       |   2 +-
 webservice/locale/pl/fusiondirectory.po       |   2 +-
 webservice/locale/pt/fusiondirectory.po       |   2 +-
 webservice/locale/pt_BR/fusiondirectory.po    |   2 +-
 webservice/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 webservice/locale/sv/fusiondirectory.po       |   2 +-
 webservice/locale/tr_TR/fusiondirectory.po    |   2 +-
 webservice/locale/ug/fusiondirectory.po       |   6 +-
 webservice/locale/vi_VN/fusiondirectory.po    |   2 +-
 webservice/locale/zh/fusiondirectory.po       |   2 +-
 webservice/locale/zh_TW/fusiondirectory.po    |   2 +-
 1581 files changed, 3608 insertions(+), 3524 deletions(-)

diff --git a/alias/locale/af_ZA/fusiondirectory.po b/alias/locale/af_ZA/fusiondirectory.po
index 53f88a2ace..199559ae93 100644
--- a/alias/locale/af_ZA/fusiondirectory.po
+++ b/alias/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po
index 88ac23df0d..6e6c2da667 100644
--- a/alias/locale/ar/fusiondirectory.po
+++ b/alias/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po
index 031582f800..871eb4f254 100644
--- a/alias/locale/ca/fusiondirectory.po
+++ b/alias/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po
index 20f17d466a..868a47f434 100644
--- a/alias/locale/cs_CZ/fusiondirectory.po
+++ b/alias/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po
index a73e806335..0e8e964b85 100644
--- a/alias/locale/de/fusiondirectory.po
+++ b/alias/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po
index 15838254bf..d381c2cedf 100644
--- a/alias/locale/el_GR/fusiondirectory.po
+++ b/alias/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po
index b966eafab1..e816f4df0b 100644
--- a/alias/locale/es/fusiondirectory.po
+++ b/alias/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po
index e6f708b92a..21f1efe0d7 100644
--- a/alias/locale/es_CO/fusiondirectory.po
+++ b/alias/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po
index 76e08e573c..95e16c7b72 100644
--- a/alias/locale/es_VE/fusiondirectory.po
+++ b/alias/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po
index 7d0e622064..623a6de347 100644
--- a/alias/locale/fa_IR/fusiondirectory.po
+++ b/alias/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po
index b00f2a3675..e8ae9885e0 100644
--- a/alias/locale/fi_FI/fusiondirectory.po
+++ b/alias/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po
index 4991ff0233..1940d85d8b 100644
--- a/alias/locale/fr/fusiondirectory.po
+++ b/alias/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po
index 924f4920de..310610ccd2 100644
--- a/alias/locale/hu_HU/fusiondirectory.po
+++ b/alias/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po
index f7ecb9a2ef..8af4c5d5b9 100644
--- a/alias/locale/id/fusiondirectory.po
+++ b/alias/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index 1baaf051a8..c1c9a5c5ef 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/alias/locale/ja/fusiondirectory.po b/alias/locale/ja/fusiondirectory.po
index 2e282cde9e..e5e13eeaf9 100644
--- a/alias/locale/ja/fusiondirectory.po
+++ b/alias/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ko/fusiondirectory.po b/alias/locale/ko/fusiondirectory.po
index e04c2bd618..5b6ac111d3 100644
--- a/alias/locale/ko/fusiondirectory.po
+++ b/alias/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po
index b121be6b3c..209ac2c905 100644
--- a/alias/locale/lv/fusiondirectory.po
+++ b/alias/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po
index d7eff3d779..98b8325560 100644
--- a/alias/locale/nb/fusiondirectory.po
+++ b/alias/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po
index 1d0c79f9f0..68d86f9e86 100644
--- a/alias/locale/nl/fusiondirectory.po
+++ b/alias/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po
index d1c4048b45..c04cbb74a9 100644
--- a/alias/locale/pl/fusiondirectory.po
+++ b/alias/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po
index 2e226bac82..e7f14101ce 100644
--- a/alias/locale/pt/fusiondirectory.po
+++ b/alias/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po
index ac7f4cf9ca..b2f3f03012 100644
--- a/alias/locale/pt_BR/fusiondirectory.po
+++ b/alias/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po
index 107fe90b84..93930da433 100644
--- a/alias/locale/ru/fusiondirectory.po
+++ b/alias/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po
index 26330df1c1..46232c909c 100644
--- a/alias/locale/ru@petr1708/fusiondirectory.po
+++ b/alias/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po
index 6742af1b94..f82939e3f8 100644
--- a/alias/locale/sv/fusiondirectory.po
+++ b/alias/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/alias/locale/tr_TR/fusiondirectory.po b/alias/locale/tr_TR/fusiondirectory.po
index 6382a17de3..3518e9f760 100644
--- a/alias/locale/tr_TR/fusiondirectory.po
+++ b/alias/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po
index fb83d23bac..c204fd0c95 100644
--- a/alias/locale/ug/fusiondirectory.po
+++ b/alias/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po
index fe2f65cf1d..3ead70db7d 100644
--- a/alias/locale/vi_VN/fusiondirectory.po
+++ b/alias/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po
index 3a875f2d18..4890934098 100644
--- a/alias/locale/zh/fusiondirectory.po
+++ b/alias/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/alias/locale/zh_TW/fusiondirectory.po b/alias/locale/zh_TW/fusiondirectory.po
index 3ea094ae94..b949db93af 100644
--- a/alias/locale/zh_TW/fusiondirectory.po
+++ b/alias/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/af_ZA/fusiondirectory.po b/applications/locale/af_ZA/fusiondirectory.po
index f9a853b31c..4cd7ce9ddf 100644
--- a/applications/locale/af_ZA/fusiondirectory.po
+++ b/applications/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po
index ff56ff21ff..0160753531 100644
--- a/applications/locale/ar/fusiondirectory.po
+++ b/applications/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po
index 27a2e57a48..6102885201 100644
--- a/applications/locale/ca/fusiondirectory.po
+++ b/applications/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po
index 3b4ac384c5..333a274f78 100644
--- a/applications/locale/cs_CZ/fusiondirectory.po
+++ b/applications/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po
index eb625564e9..1535148ef7 100644
--- a/applications/locale/de/fusiondirectory.po
+++ b/applications/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po
index 0b60406d55..e0e2e38d18 100644
--- a/applications/locale/el_GR/fusiondirectory.po
+++ b/applications/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po
index 4e3f314efd..a624ad68a3 100644
--- a/applications/locale/es/fusiondirectory.po
+++ b/applications/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po
index b0fe1d9dab..9dbce1380e 100644
--- a/applications/locale/es_CO/fusiondirectory.po
+++ b/applications/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po
index 31c8c8cadc..fd10850087 100644
--- a/applications/locale/es_VE/fusiondirectory.po
+++ b/applications/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po
index 36f467d44e..a04c43c2a5 100644
--- a/applications/locale/fa_IR/fusiondirectory.po
+++ b/applications/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po
index cfc7f4a8c5..5dda76acb6 100644
--- a/applications/locale/fi_FI/fusiondirectory.po
+++ b/applications/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po
index 3c67fd698d..e00e81e6e8 100644
--- a/applications/locale/fr/fusiondirectory.po
+++ b/applications/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po
index 447ada575e..81f23f4c37 100644
--- a/applications/locale/hu_HU/fusiondirectory.po
+++ b/applications/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po
index 59014c5f9b..4658f3179f 100644
--- a/applications/locale/id/fusiondirectory.po
+++ b/applications/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po
index 876fb47644..d4f7e383f1 100644
--- a/applications/locale/it_IT/fusiondirectory.po
+++ b/applications/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/applications/locale/ja/fusiondirectory.po b/applications/locale/ja/fusiondirectory.po
index c0b4dc2982..d33bc62112 100644
--- a/applications/locale/ja/fusiondirectory.po
+++ b/applications/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ko/fusiondirectory.po b/applications/locale/ko/fusiondirectory.po
index ad78931a67..10e4c522c9 100644
--- a/applications/locale/ko/fusiondirectory.po
+++ b/applications/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po
index 17a2f3382d..264b77d9c8 100644
--- a/applications/locale/lv/fusiondirectory.po
+++ b/applications/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po
index bae8118401..ead47cc885 100644
--- a/applications/locale/nb/fusiondirectory.po
+++ b/applications/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po
index 4445a26bdc..522985d618 100644
--- a/applications/locale/nl/fusiondirectory.po
+++ b/applications/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po
index 46bc7bf117..2ce06e6246 100644
--- a/applications/locale/pl/fusiondirectory.po
+++ b/applications/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po
index d22ca0da45..0731d0068a 100644
--- a/applications/locale/pt/fusiondirectory.po
+++ b/applications/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po
index 850f0c12f8..3a3a83c62a 100644
--- a/applications/locale/pt_BR/fusiondirectory.po
+++ b/applications/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po
index 7e2f9bf863..71d90d80d1 100644
--- a/applications/locale/ru/fusiondirectory.po
+++ b/applications/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po
index 1311759879..3e6d63edb6 100644
--- a/applications/locale/ru@petr1708/fusiondirectory.po
+++ b/applications/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po
index 1ea9f5bcfb..2cf952022a 100644
--- a/applications/locale/sv/fusiondirectory.po
+++ b/applications/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/applications/locale/tr_TR/fusiondirectory.po b/applications/locale/tr_TR/fusiondirectory.po
index d4cb743985..a073aeef16 100644
--- a/applications/locale/tr_TR/fusiondirectory.po
+++ b/applications/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po
index af29b03367..7c3c8562e0 100644
--- a/applications/locale/ug/fusiondirectory.po
+++ b/applications/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po
index 44384a875a..d6a885a883 100644
--- a/applications/locale/vi_VN/fusiondirectory.po
+++ b/applications/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po
index 79d8763167..9501c4deb1 100644
--- a/applications/locale/zh/fusiondirectory.po
+++ b/applications/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/applications/locale/zh_TW/fusiondirectory.po b/applications/locale/zh_TW/fusiondirectory.po
index 5dd91720b9..11ef3c85f3 100644
--- a/applications/locale/zh_TW/fusiondirectory.po
+++ b/applications/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/af_ZA/fusiondirectory.po b/argonaut/locale/af_ZA/fusiondirectory.po
index 63726b715b..c9cdd3e159 100644
--- a/argonaut/locale/af_ZA/fusiondirectory.po
+++ b/argonaut/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po
index 6f27ed2e66..1816889f23 100644
--- a/argonaut/locale/ar/fusiondirectory.po
+++ b/argonaut/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po
index f2b542d652..18214c4175 100644
--- a/argonaut/locale/ca/fusiondirectory.po
+++ b/argonaut/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po
index b335b90358..0e67c1190a 100644
--- a/argonaut/locale/cs_CZ/fusiondirectory.po
+++ b/argonaut/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po
index f8a668919d..b0634012cb 100644
--- a/argonaut/locale/de/fusiondirectory.po
+++ b/argonaut/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po
index 30306124bc..50b8cd4f00 100644
--- a/argonaut/locale/el_GR/fusiondirectory.po
+++ b/argonaut/locale/el_GR/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
+# LOUKAS SKOUROLIAKOS, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
+"Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -690,7 +691,7 @@ msgstr "MAC"
 #: addons/argonaut/class_argonautImportFile.inc:185
 #: addons/argonaut/deploy-list.xml:14 addons/argonaut/import_events.tpl.c:26
 msgid "Event"
-msgstr ""
+msgstr "Γεγονός"
 
 #: addons/argonaut/class_argonautAction.inc:36
 #: addons/argonaut/class_argonautAction.inc:39
diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po
index 2688f57e1b..c4cea9565c 100644
--- a/argonaut/locale/es/fusiondirectory.po
+++ b/argonaut/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po
index ba80deebb3..023582c509 100644
--- a/argonaut/locale/es_CO/fusiondirectory.po
+++ b/argonaut/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po
index e14f940cb9..7cbf192b76 100644
--- a/argonaut/locale/es_VE/fusiondirectory.po
+++ b/argonaut/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po
index 2b971783e9..a5dd33662f 100644
--- a/argonaut/locale/fa_IR/fusiondirectory.po
+++ b/argonaut/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po
index fa696c730c..d243352e19 100644
--- a/argonaut/locale/fi_FI/fusiondirectory.po
+++ b/argonaut/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po
index 73ca625def..ad69bc58ac 100644
--- a/argonaut/locale/fr/fusiondirectory.po
+++ b/argonaut/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po
index 9ccdd447a1..f4182f2990 100644
--- a/argonaut/locale/hu_HU/fusiondirectory.po
+++ b/argonaut/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po
index fb368216b2..4dc29d9f22 100644
--- a/argonaut/locale/id/fusiondirectory.po
+++ b/argonaut/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index ba24d0f990..0215c0963c 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/argonaut/locale/ja/fusiondirectory.po b/argonaut/locale/ja/fusiondirectory.po
index 1d5319c945..0e39ca958e 100644
--- a/argonaut/locale/ja/fusiondirectory.po
+++ b/argonaut/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ko/fusiondirectory.po b/argonaut/locale/ko/fusiondirectory.po
index 4e643a9825..68dea92c1e 100644
--- a/argonaut/locale/ko/fusiondirectory.po
+++ b/argonaut/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po
index b97a862b2c..730c178443 100644
--- a/argonaut/locale/lv/fusiondirectory.po
+++ b/argonaut/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po
index 3c16bb7bbf..54b86591fd 100644
--- a/argonaut/locale/nb/fusiondirectory.po
+++ b/argonaut/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po
index 9d1c7a24e8..f9a0fbecf3 100644
--- a/argonaut/locale/nl/fusiondirectory.po
+++ b/argonaut/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po
index 3d212b1237..967cfca252 100644
--- a/argonaut/locale/pl/fusiondirectory.po
+++ b/argonaut/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po
index cdea530535..dcee730072 100644
--- a/argonaut/locale/pt/fusiondirectory.po
+++ b/argonaut/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po
index 68fbc746f0..fa68215c40 100644
--- a/argonaut/locale/pt_BR/fusiondirectory.po
+++ b/argonaut/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po
index cd476824ac..d01430ad0d 100644
--- a/argonaut/locale/ru/fusiondirectory.po
+++ b/argonaut/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po
index acb63a6d14..b875a663b0 100644
--- a/argonaut/locale/ru@petr1708/fusiondirectory.po
+++ b/argonaut/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po
index 0ac61fe87c..fcaa454384 100644
--- a/argonaut/locale/sv/fusiondirectory.po
+++ b/argonaut/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/argonaut/locale/tr_TR/fusiondirectory.po b/argonaut/locale/tr_TR/fusiondirectory.po
index d6bd83ac11..64ed8bbfb6 100644
--- a/argonaut/locale/tr_TR/fusiondirectory.po
+++ b/argonaut/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -153,7 +157,7 @@ msgstr ""
 #: admin/systems/services/argonaut/class_argonautServer.inc:65
 #: admin/systems/argonaut/class_argonautClient.inc:149
 msgid "Protocol"
-msgstr ""
+msgstr "İletişim kuralı"
 
 #: admin/systems/services/argonaut/class_argonautServer.inc:65
 #: admin/systems/argonaut/class_argonautClient.inc:149
@@ -749,7 +753,7 @@ msgstr ""
 #: addons/argonaut/class_argonautQueue.inc:371
 #: addons/argonaut/import_events.tpl.c:32
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: addons/argonaut/class_filterArgonautEvents.inc:39
 #, php-format
diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po
index 77f7f7e3b4..41277decc8 100644
--- a/argonaut/locale/ug/fusiondirectory.po
+++ b/argonaut/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po
index a387f7cece..d9507d68d2 100644
--- a/argonaut/locale/vi_VN/fusiondirectory.po
+++ b/argonaut/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po
index f8e868d72c..819643273b 100644
--- a/argonaut/locale/zh/fusiondirectory.po
+++ b/argonaut/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/argonaut/locale/zh_TW/fusiondirectory.po b/argonaut/locale/zh_TW/fusiondirectory.po
index 3a5174420b..410451f309 100644
--- a/argonaut/locale/zh_TW/fusiondirectory.po
+++ b/argonaut/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/af_ZA/fusiondirectory.po b/audit/locale/af_ZA/fusiondirectory.po
index 2ff08b00db..7b4b0b60fc 100644
--- a/audit/locale/af_ZA/fusiondirectory.po
+++ b/audit/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: af_ZA\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po
index 62d453af8d..0f0b08ed0a 100644
--- a/audit/locale/ar/fusiondirectory.po
+++ b/audit/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: ar\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po
index 1bf5a48d86..c58ea18cfe 100644
--- a/audit/locale/ca/fusiondirectory.po
+++ b/audit/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objecte"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po
index 316ce62470..6512988540 100644
--- a/audit/locale/cs_CZ/fusiondirectory.po
+++ b/audit/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -22,76 +22,76 @@ msgstr ""
 "Language: cs_CZ\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr "Neznámý uživatel: %s"
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "Auditní událost"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 "Úprava-událost v LDAP která byla zaznamenána auditním zásuvným modulem"
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Událost"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "ÄŒas"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "Datum a čas události"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Akce"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "Typ akce"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Autor"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "Autor akce"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Typ objektu"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objekt"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "Cílový objekt"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Atributy"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "Atributy cíle"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Výsledek"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Výsledek nebo chyba"
 
diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po
index ef8e58a4cb..b270e73f52 100644
--- a/audit/locale/de/fusiondirectory.po
+++ b/audit/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "Audit-Ereignis"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Ereignis"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Zeit"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Aktion"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Autor"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Objecttyp"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objekt"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "Zielobjekt"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Attribute"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "Zielattribute"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Ergebnis"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Ergebnis oder Fehler"
 
diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po
index 85a4d2b236..a2d1c74bd3 100644
--- a/audit/locale/el_GR/fusiondirectory.po
+++ b/audit/locale/el_GR/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
+# LOUKAS SKOUROLIAKOS, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
+"Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,75 +22,75 @@ msgstr ""
 "Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
-msgstr ""
+msgstr "Γεγονός"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
-msgstr ""
+msgstr "Χρόνος"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
-msgstr ""
+msgstr "Ημέρα και χρόνος τέλεσης του συμβάντος"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Ενέργεια"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Τύπος αντικειμένου"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Αντικείμενο"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po
index 6bc0df44b1..c4d08034c3 100644
--- a/audit/locale/es/fusiondirectory.po
+++ b/audit/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Evento"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Tiempo"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Acción"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objeto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po
index 9bc8f25762..8b09f467ac 100644
--- a/audit/locale/es_CO/fusiondirectory.po
+++ b/audit/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objeto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po
index 04d6163d0a..1395ade481 100644
--- a/audit/locale/es_VE/fusiondirectory.po
+++ b/audit/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Evento"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Tiempo"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Acción"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objeto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po
index 68be370489..98f9404f69 100644
--- a/audit/locale/fa_IR/fusiondirectory.po
+++ b/audit/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: fa_IR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po
index c20db7bab5..afa13799e5 100644
--- a/audit/locale/fi_FI/fusiondirectory.po
+++ b/audit/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Tapahtuma"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Aika"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "Tapahtuman päivämäärä ja kellonaika"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Toiminto"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "Toimintotyyppi"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Tekijä"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "Toiminnon tekijä"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Ominaisuudet"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Lopputulos"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Lopputulos tai virhe"
 
diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po
index 551495e303..2e828c87b5 100644
--- a/audit/locale/fr/fusiondirectory.po
+++ b/audit/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -22,77 +22,77 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr "Utilisateur inconnu : %s"
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "Événement d'audit"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 "Un événement comme une modification LDAP qui a été enregistré par le plugin "
 "d'audit"
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Évènement"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Temps"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "Date et heure à laquelle cet évènement est arrivé"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Action"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "Type d'action"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Auteur"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "Auteur de l'action"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Type d'objet"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objet"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "Objet cible"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Attributs"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "Attributs cibles"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Résultat"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Résultat ou erreur"
 
diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po
index 876f386fec..1626d95df3 100644
--- a/audit/locale/hu_HU/fusiondirectory.po
+++ b/audit/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: hu_HU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po
index bab448dc87..2d88c7f00b 100644
--- a/audit/locale/id/fusiondirectory.po
+++ b/audit/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index f6710c8b3f..eb6d20da4b 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -22,77 +22,77 @@ msgstr ""
 "Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr "Utente sconosciuto : %s"
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "Evento di controllo"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 "Un evento come la modifica LDAP che è stato registrato dal plug-in di "
 "revisione"
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Evento"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Tempo"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "Data e ora in cui questo evento é accaduto"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Azione"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "Tipo di azione"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Autore"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "Azione autore"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Tipo di oggetto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Oggetto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "Oggetto di destinazione"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Attributi"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "Attributi di destinazione"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Risultato"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Risultato o errore"
 
diff --git a/audit/locale/ja/fusiondirectory.po b/audit/locale/ja/fusiondirectory.po
index cf564c6abe..dc20dcdb67 100644
--- a/audit/locale/ja/fusiondirectory.po
+++ b/audit/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ko/fusiondirectory.po b/audit/locale/ko/fusiondirectory.po
index 12df58aab8..60c47a017d 100644
--- a/audit/locale/ko/fusiondirectory.po
+++ b/audit/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr "알 수 없는 사용자 : %s"
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "감사 이벤트"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr "감사 플러그인에 의해 등록된 LDAP 변경 등의 이벤트"
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "이벤트"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "시간"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "이벤트가 발생한 날짜와 시간"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "ì•¡ì…˜"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "액션 타입"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "작성자"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "액션 작성자"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "오브젝트 타입"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "오브젝트"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "타겟 오브젝트"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "속성"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "타겟 속성"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "ê²°ê³¼"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "결과 또는 오류"
 
diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po
index a76c181bfb..4b970036df 100644
--- a/audit/locale/lv/fusiondirectory.po
+++ b/audit/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: lv\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po
index 881e661be0..9080d19883 100644
--- a/audit/locale/nb/fusiondirectory.po
+++ b/audit/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po
index 794c963ee0..f77d41cf56 100644
--- a/audit/locale/nl/fusiondirectory.po
+++ b/audit/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -23,77 +23,77 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr "Audit gebeurtenis"
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 "Een gebeurtenis zoals ldap modificatie die geregistreerd was bij audit "
 "plugin"
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Gebeurtenis"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr "Tijd"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr "Datum en tijd van het plaats vinden van deze gebeurtenis"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Actie"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr "Actie type"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr "Auteur"
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr "Actie Auteur"
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Object type"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Object"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr "Doel object"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr "Attributen"
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr "Doel attributen"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr "Resultaat"
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr "Resultaat van fout"
 
diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po
index 5512db0bbd..5c88d72242 100644
--- a/audit/locale/pl/fusiondirectory.po
+++ b/audit/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Akcja"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Obiekt"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po
index 675188ba1e..f8a6d720ba 100644
--- a/audit/locale/pt/fusiondirectory.po
+++ b/audit/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objeto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po
index 7fac2d23ba..5021bf255b 100644
--- a/audit/locale/pt_BR/fusiondirectory.po
+++ b/audit/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr "Evento"
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Ação"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objeto"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po
index 48f6bf2a1f..756296ecb9 100644
--- a/audit/locale/ru/fusiondirectory.po
+++ b/audit/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Действие"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr "Тип объекта"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Объект"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po
index a494897a8b..b43efb1627 100644
--- a/audit/locale/ru@petr1708/fusiondirectory.po
+++ b/audit/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: ru@petr1708\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po
index 0e64646f32..b6a1414677 100644
--- a/audit/locale/sv/fusiondirectory.po
+++ b/audit/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "Åtgärd"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "Objekt"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/tr_TR/fusiondirectory.po b/audit/locale/tr_TR/fusiondirectory.po
index 2b95edd353..98f2b04150 100644
--- a/audit/locale/tr_TR/fusiondirectory.po
+++ b/audit/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: tr_TR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po
index b5d5f73ef8..c1716b0263 100644
--- a/audit/locale/ug/fusiondirectory.po
+++ b/audit/locale/ug/fusiondirectory.po
@@ -8,84 +8,84 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po
index bd72a8f677..4081087c3a 100644
--- a/audit/locale/vi_VN/fusiondirectory.po
+++ b/audit/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "đối tượng"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po
index 0e197b8ece..1ca83c2fce 100644
--- a/audit/locale/zh/fusiondirectory.po
+++ b/audit/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -21,75 +21,75 @@ msgstr ""
 "Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr "行动"
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr "对象"
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/audit/locale/zh_TW/fusiondirectory.po b/audit/locale/zh_TW/fusiondirectory.po
index 8055b5f48b..4cf4686595 100644
--- a/audit/locale/zh_TW/fusiondirectory.po
+++ b/audit/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -17,75 +17,75 @@ msgstr ""
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: admin/audit/class_auditEvent.inc:43
+#: admin/audit/class_auditEvent.inc:28
 #, php-format
 msgid "Unknown user: %s"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:57 admin/audit/class_auditEvent.inc:60
+#: admin/audit/class_auditEvent.inc:42 admin/audit/class_auditEvent.inc:45
 msgid "Audit event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:58
+#: admin/audit/class_auditEvent.inc:43
 msgid "An event like ldap modification which was registered by audit plugin"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:76
+#: admin/audit/class_auditEvent.inc:61
 msgid "Event"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:80
+#: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 #: admin/audit/class_auditManagement.inc:125
 msgid "Action"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:83
+#: admin/audit/class_auditEvent.inc:68
 msgid "Action type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 #: admin/audit/class_auditManagement.inc:118
 msgid "Author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:84
+#: admin/audit/class_auditEvent.inc:69
 msgid "Action author"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:85
+#: admin/audit/class_auditEvent.inc:70
 msgid "Object type"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:86
+#: admin/audit/class_auditEvent.inc:71
 msgid "Target object"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:87
+#: admin/audit/class_auditEvent.inc:72
 msgid "Target attributes"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result"
 msgstr ""
 
-#: admin/audit/class_auditEvent.inc:88
+#: admin/audit/class_auditEvent.inc:73
 msgid "Result or error"
 msgstr ""
 
diff --git a/autofs/locale/af_ZA/fusiondirectory.po b/autofs/locale/af_ZA/fusiondirectory.po
index b67cc47110..1c134613bc 100644
--- a/autofs/locale/af_ZA/fusiondirectory.po
+++ b/autofs/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po
index 89eef72714..8be55bd063 100644
--- a/autofs/locale/ar/fusiondirectory.po
+++ b/autofs/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po
index 0a422321e4..8b77526834 100644
--- a/autofs/locale/ca/fusiondirectory.po
+++ b/autofs/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po
index 1812154088..f0a2bb087d 100644
--- a/autofs/locale/cs_CZ/fusiondirectory.po
+++ b/autofs/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po
index 72a2a2dd98..b3909952a7 100644
--- a/autofs/locale/de/fusiondirectory.po
+++ b/autofs/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po
index 41a3a6722e..3d73e5607f 100644
--- a/autofs/locale/el_GR/fusiondirectory.po
+++ b/autofs/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po
index c51ab0602f..c41a32edec 100644
--- a/autofs/locale/es/fusiondirectory.po
+++ b/autofs/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po
index 421b6eb24a..dcf30e4238 100644
--- a/autofs/locale/es_CO/fusiondirectory.po
+++ b/autofs/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po
index 39f55b2fa2..f0661f05c2 100644
--- a/autofs/locale/es_VE/fusiondirectory.po
+++ b/autofs/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po
index 7aae7104be..a84757d436 100644
--- a/autofs/locale/fa_IR/fusiondirectory.po
+++ b/autofs/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po
index 187cf2ae3e..f49d0c148a 100644
--- a/autofs/locale/fi_FI/fusiondirectory.po
+++ b/autofs/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po
index 71e5739b02..1974dfafa8 100644
--- a/autofs/locale/fr/fusiondirectory.po
+++ b/autofs/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po
index 6ad363602c..4eb0e493a4 100644
--- a/autofs/locale/hu_HU/fusiondirectory.po
+++ b/autofs/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po
index 66cd06503c..ba8cc8b73b 100644
--- a/autofs/locale/id/fusiondirectory.po
+++ b/autofs/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po
index f763a697e0..c18fb852e7 100644
--- a/autofs/locale/it_IT/fusiondirectory.po
+++ b/autofs/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/autofs/locale/ja/fusiondirectory.po b/autofs/locale/ja/fusiondirectory.po
index 42d55b569c..ab82f6efdc 100644
--- a/autofs/locale/ja/fusiondirectory.po
+++ b/autofs/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ko/fusiondirectory.po b/autofs/locale/ko/fusiondirectory.po
index 00a782ee01..cae2bca32f 100644
--- a/autofs/locale/ko/fusiondirectory.po
+++ b/autofs/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po
index 8d10710561..7b001e901f 100644
--- a/autofs/locale/lv/fusiondirectory.po
+++ b/autofs/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po
index 04850e5dfd..f432646f61 100644
--- a/autofs/locale/nb/fusiondirectory.po
+++ b/autofs/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po
index 223d2cdb95..34465ba687 100644
--- a/autofs/locale/nl/fusiondirectory.po
+++ b/autofs/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po
index aad1a73bfb..24249858b4 100644
--- a/autofs/locale/pl/fusiondirectory.po
+++ b/autofs/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po
index ecc2220e9f..0b551945af 100644
--- a/autofs/locale/pt/fusiondirectory.po
+++ b/autofs/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po
index 416ea8fa6a..96db36d8c5 100644
--- a/autofs/locale/pt_BR/fusiondirectory.po
+++ b/autofs/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po
index ae01bfdaec..15c455ee79 100644
--- a/autofs/locale/ru/fusiondirectory.po
+++ b/autofs/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po
index 96b719fd73..c668824266 100644
--- a/autofs/locale/ru@petr1708/fusiondirectory.po
+++ b/autofs/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po
index 90a1333210..d6ac112edd 100644
--- a/autofs/locale/sv/fusiondirectory.po
+++ b/autofs/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/autofs/locale/tr_TR/fusiondirectory.po b/autofs/locale/tr_TR/fusiondirectory.po
index b805063ab8..9a1aaa1ee0 100644
--- a/autofs/locale/tr_TR/fusiondirectory.po
+++ b/autofs/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po
index 93d4e1957d..76dd98934b 100644
--- a/autofs/locale/ug/fusiondirectory.po
+++ b/autofs/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po
index edd27318ad..efcf250a08 100644
--- a/autofs/locale/vi_VN/fusiondirectory.po
+++ b/autofs/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po
index 0ddefdc33c..4051051382 100644
--- a/autofs/locale/zh/fusiondirectory.po
+++ b/autofs/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/autofs/locale/zh_TW/fusiondirectory.po b/autofs/locale/zh_TW/fusiondirectory.po
index 3e0fb562ba..662e75136d 100644
--- a/autofs/locale/zh_TW/fusiondirectory.po
+++ b/autofs/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/af_ZA/fusiondirectory.po b/certificates/locale/af_ZA/fusiondirectory.po
index 443642521f..d0d93a3da2 100644
--- a/certificates/locale/af_ZA/fusiondirectory.po
+++ b/certificates/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po
index 6bef3a0e22..6cfe0e2096 100644
--- a/certificates/locale/ar/fusiondirectory.po
+++ b/certificates/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po
index b3c4278480..2321368c19 100644
--- a/certificates/locale/ca/fusiondirectory.po
+++ b/certificates/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po
index 97ade65d5f..2f45f18ae5 100644
--- a/certificates/locale/cs_CZ/fusiondirectory.po
+++ b/certificates/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po
index d73f6975e6..7e1dcbb3a2 100644
--- a/certificates/locale/de/fusiondirectory.po
+++ b/certificates/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po
index 36dbecc2a3..c69102db55 100644
--- a/certificates/locale/el_GR/fusiondirectory.po
+++ b/certificates/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po
index 4fe74a4532..bcebfaafd7 100644
--- a/certificates/locale/es/fusiondirectory.po
+++ b/certificates/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po
index dc1a934f8d..39be44342a 100644
--- a/certificates/locale/es_CO/fusiondirectory.po
+++ b/certificates/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po
index e6b72824ad..4903bf394a 100644
--- a/certificates/locale/es_VE/fusiondirectory.po
+++ b/certificates/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po
index 525039ec79..f39570a685 100644
--- a/certificates/locale/fa_IR/fusiondirectory.po
+++ b/certificates/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po
index 5c876c5d10..656c726a56 100644
--- a/certificates/locale/fi_FI/fusiondirectory.po
+++ b/certificates/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po
index f62eb54140..2221482297 100644
--- a/certificates/locale/fr/fusiondirectory.po
+++ b/certificates/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po
index 95f6db1a7c..293b2eec19 100644
--- a/certificates/locale/hu_HU/fusiondirectory.po
+++ b/certificates/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po
index f75586bcf2..2043c562e7 100644
--- a/certificates/locale/id/fusiondirectory.po
+++ b/certificates/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po
index 2d27a09611..41af35b5ac 100644
--- a/certificates/locale/it_IT/fusiondirectory.po
+++ b/certificates/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/certificates/locale/ja/fusiondirectory.po b/certificates/locale/ja/fusiondirectory.po
index c7a21205cf..eb233a4136 100644
--- a/certificates/locale/ja/fusiondirectory.po
+++ b/certificates/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ko/fusiondirectory.po b/certificates/locale/ko/fusiondirectory.po
index 8de3a6d4e3..faf5ed1e52 100644
--- a/certificates/locale/ko/fusiondirectory.po
+++ b/certificates/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po
index b8b64f2cca..ec6a8ffb55 100644
--- a/certificates/locale/lv/fusiondirectory.po
+++ b/certificates/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po
index 22e379b00b..ced3a994c3 100644
--- a/certificates/locale/nb/fusiondirectory.po
+++ b/certificates/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po
index 0c68ab8f02..1deeb60fd1 100644
--- a/certificates/locale/nl/fusiondirectory.po
+++ b/certificates/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po
index d7615cee67..7583fd32a0 100644
--- a/certificates/locale/pl/fusiondirectory.po
+++ b/certificates/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po
index 7163571c74..b5c7e546a2 100644
--- a/certificates/locale/pt/fusiondirectory.po
+++ b/certificates/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po
index b39351991a..15c89eaab7 100644
--- a/certificates/locale/pt_BR/fusiondirectory.po
+++ b/certificates/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po
index ee8878634d..4f519cd0b7 100644
--- a/certificates/locale/ru/fusiondirectory.po
+++ b/certificates/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po
index 0dcc76d927..16ae5958a8 100644
--- a/certificates/locale/ru@petr1708/fusiondirectory.po
+++ b/certificates/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po
index bfc8b9b472..b9250607f5 100644
--- a/certificates/locale/sv/fusiondirectory.po
+++ b/certificates/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/certificates/locale/tr_TR/fusiondirectory.po b/certificates/locale/tr_TR/fusiondirectory.po
index cbf8e73faa..26ff5c62fe 100644
--- a/certificates/locale/tr_TR/fusiondirectory.po
+++ b/certificates/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po
index fa2bb8154f..5a5eb7b86a 100644
--- a/certificates/locale/ug/fusiondirectory.po
+++ b/certificates/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po
index 79507d9679..a27550ea18 100644
--- a/certificates/locale/vi_VN/fusiondirectory.po
+++ b/certificates/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po
index c546e77ab5..58db0627e3 100644
--- a/certificates/locale/zh/fusiondirectory.po
+++ b/certificates/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/certificates/locale/zh_TW/fusiondirectory.po b/certificates/locale/zh_TW/fusiondirectory.po
index d2da0fa845..cdc55d967e 100644
--- a/certificates/locale/zh_TW/fusiondirectory.po
+++ b/certificates/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/af_ZA/fusiondirectory.po b/community/locale/af_ZA/fusiondirectory.po
index 69d35b1bde..35ef4b620d 100644
--- a/community/locale/af_ZA/fusiondirectory.po
+++ b/community/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po
index 0545de92af..91681d4559 100644
--- a/community/locale/ar/fusiondirectory.po
+++ b/community/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po
index e1273ac90f..750ce90565 100644
--- a/community/locale/ca/fusiondirectory.po
+++ b/community/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po
index 4ce1797bee..450673eef1 100644
--- a/community/locale/cs_CZ/fusiondirectory.po
+++ b/community/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po
index f06b2addd5..9368c17910 100644
--- a/community/locale/de/fusiondirectory.po
+++ b/community/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po
index 379b968c5e..87cbdaef75 100644
--- a/community/locale/el_GR/fusiondirectory.po
+++ b/community/locale/el_GR/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
+# LOUKAS SKOUROLIAKOS, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
+"Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,11 +32,11 @@ msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:42
 msgid "Membership"
-msgstr ""
+msgstr "Μέλος Ομάδας"
 
 #: admin/departments/community/class_communityOrganization.inc:45
 msgid "Membership type"
-msgstr ""
+msgstr "Τύπος Μέλους Ομάδας"
 
 #: admin/departments/community/class_communityOrganization.inc:45
 msgid "Membership type of this organization"
@@ -43,7 +44,7 @@ msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:50
 msgid "Agreement signed"
-msgstr ""
+msgstr "Συμφωνία υπογράφηκε "
 
 #: admin/departments/community/class_communityOrganization.inc:50
 msgid "Did this member returned the agreement signed"
@@ -51,7 +52,7 @@ msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:54
 msgid "Active"
-msgstr ""
+msgstr "Ενεργό"
 
 #: admin/departments/community/class_communityOrganization.inc:54
 msgid "Is the membership of this organization active"
@@ -59,7 +60,7 @@ msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:58
 msgid "Hidden"
-msgstr ""
+msgstr "Κρυφό"
 
 #: admin/departments/community/class_communityOrganization.inc:58
 msgid "Should this membership be hidden from listings"
@@ -67,11 +68,11 @@ msgstr ""
 
 #: admin/departments/community/class_communityOrganization.inc:64
 msgid "Dates"
-msgstr ""
+msgstr "Ημερομηνίες"
 
 #: admin/departments/community/class_communityOrganization.inc:67
 msgid "Start date"
-msgstr ""
+msgstr "Ημερομηνία Εκκίνησης "
 
 #: admin/departments/community/class_communityOrganization.inc:67
 msgid "Date of the beginning"
@@ -103,7 +104,7 @@ msgstr "Διεύθυνση"
 
 #: admin/departments/community/class_communityOrganization.inc:89
 msgid "A postal address"
-msgstr ""
+msgstr "Μία Ταχυδρομική διεύθυνση"
 
 #: admin/departments/community/class_communityOrganization.inc:93
 msgid "City"
@@ -119,7 +120,7 @@ msgstr "Χώρα"
 
 #: admin/departments/community/class_communityProject.inc:29
 msgid "Community project"
-msgstr ""
+msgstr "Έργο κοινότητας"
 
 #: admin/departments/community/class_communityProject.inc:30
 msgid "Community project dates and alternate address"
@@ -127,11 +128,11 @@ msgstr ""
 
 #: admin/departments/community/class_communityProject.inc:42
 msgid "Project"
-msgstr ""
+msgstr "Έργο"
 
 #: admin/departments/community/class_communityProject.inc:45
 msgid "Project full name"
-msgstr ""
+msgstr "Πλήρες όνομα Έργου"
 
 #: admin/departments/community/class_communityProject.inc:45
 msgid "Full name of this project"
@@ -147,7 +148,7 @@ msgstr ""
 
 #: config/community/class_communityConfig.inc:28
 msgid "Community configuration"
-msgstr ""
+msgstr "Ρύθμιση κοινότητας"
 
 #: config/community/class_communityConfig.inc:29
 msgid "FusionDirectory community plugin configuration"
@@ -155,7 +156,7 @@ msgstr ""
 
 #: config/community/class_communityConfig.inc:41
 msgid "Community"
-msgstr ""
+msgstr "Κοινότητα"
 
 #: config/community/class_communityConfig.inc:45
 msgid "Membership type choices"
diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po
index a70303016f..8de1de15ad 100644
--- a/community/locale/es/fusiondirectory.po
+++ b/community/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po
index 228aed05eb..e4c7b9ca9a 100644
--- a/community/locale/es_CO/fusiondirectory.po
+++ b/community/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po
index 5caa9cc0ba..24cc0cc1fb 100644
--- a/community/locale/es_VE/fusiondirectory.po
+++ b/community/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po
index fbd27ee37a..17da1de549 100644
--- a/community/locale/fa_IR/fusiondirectory.po
+++ b/community/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po
index fccd650cd7..921aec1ae8 100644
--- a/community/locale/fi_FI/fusiondirectory.po
+++ b/community/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po
index 94485cbb5a..6e2b9ed037 100644
--- a/community/locale/fr/fusiondirectory.po
+++ b/community/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po
index ee1b408cf3..9f4844f100 100644
--- a/community/locale/hu_HU/fusiondirectory.po
+++ b/community/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po
index 88af6f58ec..599561a561 100644
--- a/community/locale/id/fusiondirectory.po
+++ b/community/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index fb4c28f47a..5bf410e0f0 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/community/locale/ja/fusiondirectory.po b/community/locale/ja/fusiondirectory.po
index 6b7bbfeb20..38c6d68cc6 100644
--- a/community/locale/ja/fusiondirectory.po
+++ b/community/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ko/fusiondirectory.po b/community/locale/ko/fusiondirectory.po
index 068d5798c4..792917b2bb 100644
--- a/community/locale/ko/fusiondirectory.po
+++ b/community/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po
index 14747e1866..45bc95ec51 100644
--- a/community/locale/lv/fusiondirectory.po
+++ b/community/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po
index 0b024bd4f4..6e7a3a865b 100644
--- a/community/locale/nb/fusiondirectory.po
+++ b/community/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po
index 64511f5c63..b8622ade44 100644
--- a/community/locale/nl/fusiondirectory.po
+++ b/community/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po
index 85d906c4f2..919d0f45d4 100644
--- a/community/locale/pl/fusiondirectory.po
+++ b/community/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po
index e2e363a422..7bc0f1e610 100644
--- a/community/locale/pt/fusiondirectory.po
+++ b/community/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po
index 660ce5161f..3d28c28551 100644
--- a/community/locale/pt_BR/fusiondirectory.po
+++ b/community/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po
index b5c883bb26..0885028d4e 100644
--- a/community/locale/ru/fusiondirectory.po
+++ b/community/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po
index 3147a50ee0..de26fb6e88 100644
--- a/community/locale/ru@petr1708/fusiondirectory.po
+++ b/community/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po
index 34581ac92b..872d8b6974 100644
--- a/community/locale/sv/fusiondirectory.po
+++ b/community/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/community/locale/tr_TR/fusiondirectory.po b/community/locale/tr_TR/fusiondirectory.po
index 6dd7c531b8..421d0b31e1 100644
--- a/community/locale/tr_TR/fusiondirectory.po
+++ b/community/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po
index d785efea4b..52a98035dc 100644
--- a/community/locale/ug/fusiondirectory.po
+++ b/community/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po
index b56b84a1d9..0d85ec8158 100644
--- a/community/locale/vi_VN/fusiondirectory.po
+++ b/community/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po
index f4022e2fe3..5832272bc3 100644
--- a/community/locale/zh/fusiondirectory.po
+++ b/community/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/community/locale/zh_TW/fusiondirectory.po b/community/locale/zh_TW/fusiondirectory.po
index 71e6ef192b..3c3aaf6d72 100644
--- a/community/locale/zh_TW/fusiondirectory.po
+++ b/community/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/af_ZA/fusiondirectory.po b/cyrus/locale/af_ZA/fusiondirectory.po
index 9edad4c119..952031992e 100644
--- a/cyrus/locale/af_ZA/fusiondirectory.po
+++ b/cyrus/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po
index 1e4dba01d8..269f4c0a4e 100644
--- a/cyrus/locale/ar/fusiondirectory.po
+++ b/cyrus/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po
index 61201e2830..156776a395 100644
--- a/cyrus/locale/ca/fusiondirectory.po
+++ b/cyrus/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po
index d3d74cd0f5..9db024684a 100644
--- a/cyrus/locale/cs_CZ/fusiondirectory.po
+++ b/cyrus/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po
index 754247638a..14f87e6ebb 100644
--- a/cyrus/locale/de/fusiondirectory.po
+++ b/cyrus/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po
index 8a2ec28dce..6a380e6816 100644
--- a/cyrus/locale/el_GR/fusiondirectory.po
+++ b/cyrus/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po
index 2317f13263..903b433eaa 100644
--- a/cyrus/locale/es/fusiondirectory.po
+++ b/cyrus/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po
index d240304d67..74b9c31ef6 100644
--- a/cyrus/locale/es_CO/fusiondirectory.po
+++ b/cyrus/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po
index 423d0587a1..9d04afd879 100644
--- a/cyrus/locale/es_VE/fusiondirectory.po
+++ b/cyrus/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po
index 1a7df67c1b..2b3f24a2b8 100644
--- a/cyrus/locale/fa_IR/fusiondirectory.po
+++ b/cyrus/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po
index 7035f07b9a..c4376c76d3 100644
--- a/cyrus/locale/fi_FI/fusiondirectory.po
+++ b/cyrus/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po
index 8d7b394a76..f8d9be70a3 100644
--- a/cyrus/locale/fr/fusiondirectory.po
+++ b/cyrus/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po
index a88e712c6f..025e96e515 100644
--- a/cyrus/locale/hu_HU/fusiondirectory.po
+++ b/cyrus/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po
index 38c13e2cb2..3d8245f6c3 100644
--- a/cyrus/locale/id/fusiondirectory.po
+++ b/cyrus/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po
index cb6ef1c798..fabbd2a0c3 100644
--- a/cyrus/locale/it_IT/fusiondirectory.po
+++ b/cyrus/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/cyrus/locale/ja/fusiondirectory.po b/cyrus/locale/ja/fusiondirectory.po
index e41cdb2c8e..5b7d232ca0 100644
--- a/cyrus/locale/ja/fusiondirectory.po
+++ b/cyrus/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ko/fusiondirectory.po b/cyrus/locale/ko/fusiondirectory.po
index e9a478c25e..dfc3a254de 100644
--- a/cyrus/locale/ko/fusiondirectory.po
+++ b/cyrus/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po
index bfd10af523..28e6906a4b 100644
--- a/cyrus/locale/lv/fusiondirectory.po
+++ b/cyrus/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po
index 17ad2c5148..40a39d95b4 100644
--- a/cyrus/locale/nb/fusiondirectory.po
+++ b/cyrus/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po
index bb888e1d2c..cfadbe5fc1 100644
--- a/cyrus/locale/nl/fusiondirectory.po
+++ b/cyrus/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po
index e7de1e419c..e5adbce83d 100644
--- a/cyrus/locale/pl/fusiondirectory.po
+++ b/cyrus/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po
index c1273d2e33..278fbc2ca4 100644
--- a/cyrus/locale/pt/fusiondirectory.po
+++ b/cyrus/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po
index 4f347c2014..8ef8cf533e 100644
--- a/cyrus/locale/pt_BR/fusiondirectory.po
+++ b/cyrus/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po
index df8683745a..e2859827c0 100644
--- a/cyrus/locale/ru/fusiondirectory.po
+++ b/cyrus/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po
index b03ba4389b..31ca576476 100644
--- a/cyrus/locale/ru@petr1708/fusiondirectory.po
+++ b/cyrus/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po
index 0604a2eee9..435e38e926 100644
--- a/cyrus/locale/sv/fusiondirectory.po
+++ b/cyrus/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/cyrus/locale/tr_TR/fusiondirectory.po b/cyrus/locale/tr_TR/fusiondirectory.po
index 4bf4b999ed..3322afdf36 100644
--- a/cyrus/locale/tr_TR/fusiondirectory.po
+++ b/cyrus/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po
index 75a48a15cd..53f065b224 100644
--- a/cyrus/locale/ug/fusiondirectory.po
+++ b/cyrus/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po
index 3241fc5f6e..47859869b4 100644
--- a/cyrus/locale/vi_VN/fusiondirectory.po
+++ b/cyrus/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po
index 88c05b784c..2dd78eb861 100644
--- a/cyrus/locale/zh/fusiondirectory.po
+++ b/cyrus/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/cyrus/locale/zh_TW/fusiondirectory.po b/cyrus/locale/zh_TW/fusiondirectory.po
index f5171755ed..29e3332ced 100644
--- a/cyrus/locale/zh_TW/fusiondirectory.po
+++ b/cyrus/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/af_ZA/fusiondirectory.po b/debconf/locale/af_ZA/fusiondirectory.po
index 5cddbfbd54..96fe74d53f 100644
--- a/debconf/locale/af_ZA/fusiondirectory.po
+++ b/debconf/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po
index 247ebd2c57..1a65a7cf2f 100644
--- a/debconf/locale/ar/fusiondirectory.po
+++ b/debconf/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po
index ff475a4b6d..089db0c971 100644
--- a/debconf/locale/ca/fusiondirectory.po
+++ b/debconf/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po
index c17c053ebe..8890f60541 100644
--- a/debconf/locale/cs_CZ/fusiondirectory.po
+++ b/debconf/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po
index 43ba90cc00..efd24fc2db 100644
--- a/debconf/locale/de/fusiondirectory.po
+++ b/debconf/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po
index 49fdbdd2d8..127675f67f 100644
--- a/debconf/locale/el_GR/fusiondirectory.po
+++ b/debconf/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po
index bd381da5ae..19362656d5 100644
--- a/debconf/locale/es/fusiondirectory.po
+++ b/debconf/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po
index 5d6bd53bc6..7fa4eb06ce 100644
--- a/debconf/locale/es_CO/fusiondirectory.po
+++ b/debconf/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po
index 3aafc0a488..50c374653f 100644
--- a/debconf/locale/es_VE/fusiondirectory.po
+++ b/debconf/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po
index df02f2f1e3..54828c1b62 100644
--- a/debconf/locale/fa_IR/fusiondirectory.po
+++ b/debconf/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po
index 44b31c9993..663c31d51a 100644
--- a/debconf/locale/fi_FI/fusiondirectory.po
+++ b/debconf/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po
index ec9faadc65..25bbc78ec4 100644
--- a/debconf/locale/fr/fusiondirectory.po
+++ b/debconf/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po
index e5aa203d7d..833e509d50 100644
--- a/debconf/locale/hu_HU/fusiondirectory.po
+++ b/debconf/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po
index 8b8ce6da85..95015d03fc 100644
--- a/debconf/locale/id/fusiondirectory.po
+++ b/debconf/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po
index 8ece750c5b..d5c9e93195 100644
--- a/debconf/locale/it_IT/fusiondirectory.po
+++ b/debconf/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/debconf/locale/ja/fusiondirectory.po b/debconf/locale/ja/fusiondirectory.po
index 26629adea1..c57e4cb227 100644
--- a/debconf/locale/ja/fusiondirectory.po
+++ b/debconf/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/ko/fusiondirectory.po b/debconf/locale/ko/fusiondirectory.po
index 0885081a89..4c9633cc9a 100644
--- a/debconf/locale/ko/fusiondirectory.po
+++ b/debconf/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po
index 742b0501d8..10d529f9a0 100644
--- a/debconf/locale/lv/fusiondirectory.po
+++ b/debconf/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po
index cb6b847edb..a9ab4817fd 100644
--- a/debconf/locale/nb/fusiondirectory.po
+++ b/debconf/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po
index 4182189629..631ace8cf1 100644
--- a/debconf/locale/nl/fusiondirectory.po
+++ b/debconf/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po
index 0f1a91e05a..8a904f1326 100644
--- a/debconf/locale/pl/fusiondirectory.po
+++ b/debconf/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po
index 2430ceb19c..c8a4245352 100644
--- a/debconf/locale/pt/fusiondirectory.po
+++ b/debconf/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po
index fc35f86c5e..22fd37f143 100644
--- a/debconf/locale/pt_BR/fusiondirectory.po
+++ b/debconf/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po
index 612877271f..0240f517b2 100644
--- a/debconf/locale/ru/fusiondirectory.po
+++ b/debconf/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po
index 44aece3927..003cde5303 100644
--- a/debconf/locale/ru@petr1708/fusiondirectory.po
+++ b/debconf/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po
index 16c6901827..45b76659db 100644
--- a/debconf/locale/sv/fusiondirectory.po
+++ b/debconf/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/debconf/locale/tr_TR/fusiondirectory.po b/debconf/locale/tr_TR/fusiondirectory.po
index dddd033c7b..5b91ce54bd 100644
--- a/debconf/locale/tr_TR/fusiondirectory.po
+++ b/debconf/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,7 +33,7 @@ msgstr ""
 #: admin/debconfProfile/class_debconfProfileGeneric.inc:71
 #: admin/debconfProfile/class_debconfProfileGeneric.inc:85
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/debconfProfile/class_debconfProfileGeneric.inc:71
 msgid "There is no template for this profile"
diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po
index 75f5e9bb38..1d7b0b30c1 100644
--- a/debconf/locale/ug/fusiondirectory.po
+++ b/debconf/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po
index b671550c7a..7f4c9e66c1 100644
--- a/debconf/locale/vi_VN/fusiondirectory.po
+++ b/debconf/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po
index e5c902f6dd..3c9f8ab177 100644
--- a/debconf/locale/zh/fusiondirectory.po
+++ b/debconf/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/debconf/locale/zh_TW/fusiondirectory.po b/debconf/locale/zh_TW/fusiondirectory.po
index 4e570dd295..8b5b3f3b3c 100644
--- a/debconf/locale/zh_TW/fusiondirectory.po
+++ b/debconf/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/af_ZA/fusiondirectory.po b/developers/locale/af_ZA/fusiondirectory.po
index 24da5f09e8..6beef08978 100644
--- a/developers/locale/af_ZA/fusiondirectory.po
+++ b/developers/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po
index 7fd0181c9f..1151dac8cc 100644
--- a/developers/locale/ar/fusiondirectory.po
+++ b/developers/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po
index 30c69ac561..f4dfd091ef 100644
--- a/developers/locale/ca/fusiondirectory.po
+++ b/developers/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po
index 53438a2d29..281774d24d 100644
--- a/developers/locale/cs_CZ/fusiondirectory.po
+++ b/developers/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po
index a624d358ac..bc3c3e3da7 100644
--- a/developers/locale/de/fusiondirectory.po
+++ b/developers/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po
index e5ea7ef602..a9b3102487 100644
--- a/developers/locale/el_GR/fusiondirectory.po
+++ b/developers/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po
index 0625b8673c..bcef83164a 100644
--- a/developers/locale/es/fusiondirectory.po
+++ b/developers/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po
index 79f9f93a08..de1a1f02e6 100644
--- a/developers/locale/es_CO/fusiondirectory.po
+++ b/developers/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po
index 346fcb4a06..da07ac9126 100644
--- a/developers/locale/es_VE/fusiondirectory.po
+++ b/developers/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po
index 93308428a8..527e25d00b 100644
--- a/developers/locale/fa_IR/fusiondirectory.po
+++ b/developers/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po
index c35a38169b..6efecfb722 100644
--- a/developers/locale/fi_FI/fusiondirectory.po
+++ b/developers/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po
index 43c78b4606..15abd0803a 100644
--- a/developers/locale/fr/fusiondirectory.po
+++ b/developers/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po
index cf015e84da..ffacd6e9fa 100644
--- a/developers/locale/hu_HU/fusiondirectory.po
+++ b/developers/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po
index 2cff1e3df9..71c9de5ec0 100644
--- a/developers/locale/id/fusiondirectory.po
+++ b/developers/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po
index d257dcce25..ee0413824a 100644
--- a/developers/locale/it_IT/fusiondirectory.po
+++ b/developers/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/developers/locale/ja/fusiondirectory.po b/developers/locale/ja/fusiondirectory.po
index f65eef2ccc..bb5b1cba7c 100644
--- a/developers/locale/ja/fusiondirectory.po
+++ b/developers/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ko/fusiondirectory.po b/developers/locale/ko/fusiondirectory.po
index b0fd820c72..132de35314 100644
--- a/developers/locale/ko/fusiondirectory.po
+++ b/developers/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po
index 3907d6f081..b0d3fdcf5c 100644
--- a/developers/locale/lv/fusiondirectory.po
+++ b/developers/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po
index 31c40f377d..7d4d51a68e 100644
--- a/developers/locale/nb/fusiondirectory.po
+++ b/developers/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po
index 59e89526ac..43737284b1 100644
--- a/developers/locale/nl/fusiondirectory.po
+++ b/developers/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po
index ebb48722b4..968c43cc50 100644
--- a/developers/locale/pl/fusiondirectory.po
+++ b/developers/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po
index 4a8e036cd8..03ce30ed0a 100644
--- a/developers/locale/pt/fusiondirectory.po
+++ b/developers/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po
index 304ff88212..68b218d902 100644
--- a/developers/locale/pt_BR/fusiondirectory.po
+++ b/developers/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po
index d7925c5e69..4e85b17b21 100644
--- a/developers/locale/ru/fusiondirectory.po
+++ b/developers/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po
index e0882b0441..a29f166e1f 100644
--- a/developers/locale/ru@petr1708/fusiondirectory.po
+++ b/developers/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po
index 6df14ef0b2..a54d700dc4 100644
--- a/developers/locale/sv/fusiondirectory.po
+++ b/developers/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/developers/locale/tr_TR/fusiondirectory.po b/developers/locale/tr_TR/fusiondirectory.po
index 577760c9e5..8384b219eb 100644
--- a/developers/locale/tr_TR/fusiondirectory.po
+++ b/developers/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po
index b893bdecf8..a44dc2bd19 100644
--- a/developers/locale/ug/fusiondirectory.po
+++ b/developers/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po
index 63e45e6892..2d4a3a2ed8 100644
--- a/developers/locale/vi_VN/fusiondirectory.po
+++ b/developers/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po
index e613cd9bbc..f203e210e0 100644
--- a/developers/locale/zh/fusiondirectory.po
+++ b/developers/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh_TW/fusiondirectory.po b/developers/locale/zh_TW/fusiondirectory.po
index b855d0713f..9c978491ca 100644
--- a/developers/locale/zh_TW/fusiondirectory.po
+++ b/developers/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/af_ZA/fusiondirectory.po b/dhcp/locale/af_ZA/fusiondirectory.po
index 5987e0edde..3e2f3d7b9c 100644
--- a/dhcp/locale/af_ZA/fusiondirectory.po
+++ b/dhcp/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po
index 52c8918b3f..1dde5c1b6e 100644
--- a/dhcp/locale/ar/fusiondirectory.po
+++ b/dhcp/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po
index cf4fcbfb96..5250b2d8eb 100644
--- a/dhcp/locale/ca/fusiondirectory.po
+++ b/dhcp/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po
index 3f22b0ebab..522325806e 100644
--- a/dhcp/locale/cs_CZ/fusiondirectory.po
+++ b/dhcp/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -26,7 +26,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -528,7 +528,7 @@ msgstr "Mac"
 msgid "IP"
 msgstr "IP adresa"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
@@ -537,24 +537,24 @@ msgstr ""
 "„%s“ je uzamčeno („%s“ od „%s“), není možné uložit úpravy v tomto DHCP "
 "nastavení"
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr "Hodnota pro vícehodnotovou kolonku „%s“ není pole"
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr "Upravit DHCP zóny systému"
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "DHCP zóny"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr "DHCP stroje deklarované pro tento systém"
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr "IP adresa %s není v síti %s/%d"
diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po
index 3ecf2566c8..463be54c16 100644
--- a/dhcp/locale/de/fusiondirectory.po
+++ b/dhcp/locale/de/fusiondirectory.po
@@ -6,15 +6,16 @@
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
 # Jonah Bohlmann <jokabo66@gmail.com>, 2018
+# Ettore Atalan <atalanttore@googlemail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Jonah Bohlmann <jokabo66@gmail.com>, 2018\n"
+"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +27,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -256,7 +257,7 @@ msgstr ""
 
 #: admin/dhcp/sections/class_dhcpPool.inc:51
 msgid "Permit list"
-msgstr ""
+msgstr "Erlaubnisliste"
 
 #: admin/dhcp/sections/class_dhcpPool.inc:51
 msgid ""
@@ -504,31 +505,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "DHCP-Zonen"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po
index e178339000..56b8d105e8 100644
--- a/dhcp/locale/el_GR/fusiondirectory.po
+++ b/dhcp/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po
index e0f87ba188..fa4656e6eb 100644
--- a/dhcp/locale/es/fusiondirectory.po
+++ b/dhcp/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -503,31 +503,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po
index aea7b1ec62..efe5de2b66 100644
--- a/dhcp/locale/es_CO/fusiondirectory.po
+++ b/dhcp/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po
index 9fbff767fe..59cdbfe71a 100644
--- a/dhcp/locale/es_VE/fusiondirectory.po
+++ b/dhcp/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -503,31 +503,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po
index 7337dc7866..efb78659a7 100644
--- a/dhcp/locale/fa_IR/fusiondirectory.po
+++ b/dhcp/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po
index b2f104459f..8802b801bf 100644
--- a/dhcp/locale/fi_FI/fusiondirectory.po
+++ b/dhcp/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po
index 0a958c3678..83c0e52d15 100644
--- a/dhcp/locale/fr/fusiondirectory.po
+++ b/dhcp/locale/fr/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
+# Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
+"Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2021\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,7 +26,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -406,7 +407,7 @@ msgstr ""
 
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:74
 msgid "Maximum Client Lead Time"
-msgstr ""
+msgstr "Délai maximum du client"
 
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:74
 msgid ""
@@ -532,7 +533,7 @@ msgstr "Mac"
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
@@ -541,24 +542,24 @@ msgstr ""
 "\"%s\" est verrouillé (par \"%s\" depuis %s), impossible d'enregistrer les "
 "modifications apportées à cette configuration DHCP"
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr "La valeur du champ multivalué \"%s\" n'est pas un tableau"
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr "Éditer les zones DHCP d'un système"
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "Zones DHCP"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr "Hôtes DHCP déclarés pour ce système"
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr "L'IP %s n'est pas dans le réseau %s/%d"
diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po
index 70ac857e83..abfcc0f20e 100644
--- a/dhcp/locale/hu_HU/fusiondirectory.po
+++ b/dhcp/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po
index a26f05aed3..643452ad8a 100644
--- a/dhcp/locale/id/fusiondirectory.po
+++ b/dhcp/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index d52dc7a905..f7552f72fb 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -26,7 +26,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -531,7 +531,7 @@ msgstr "Mac"
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
@@ -540,24 +540,24 @@ msgstr ""
 "\"%s\" è bloccato (da \"%s\" da %s), non é stato possibile salvare le "
 "modifiche di questa configurazione DHCP"
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr "Il valore del campo \"%s\" multivalutato non é un array"
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr "Modifica le zone DHCP di un sistema"
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "Zone DHCP"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr "Hosts DHCP dichiarati per questo sistema"
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr "L'ip %s non è nella rete %s/%d"
diff --git a/dhcp/locale/ja/fusiondirectory.po b/dhcp/locale/ja/fusiondirectory.po
index a6a142fa68..5195cbd4ff 100644
--- a/dhcp/locale/ja/fusiondirectory.po
+++ b/dhcp/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ko/fusiondirectory.po b/dhcp/locale/ko/fusiondirectory.po
index 8435bc5eda..f9513f539c 100644
--- a/dhcp/locale/ko/fusiondirectory.po
+++ b/dhcp/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -503,31 +503,31 @@ msgstr "Mac"
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr "\"%s\"은 (%s 이후로 \"%s\"에 의해) 잠겨 있으며 이 DHCP 구성에 대한 수정사항을 저장할 수 없습니다"
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr "다중화된 필드 \"%s\"의 값은 배열이 아닙니다."
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr "시스템의 DHCP 영역 편집"
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "DHCP 영역"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr "이 시스템에 대해 선언 된 DHCP 호스트"
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr "IP %s이 (가) 네트워크 %s / %d에 없습니다."
diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po
index e24058cb3f..f817e62297 100644
--- a/dhcp/locale/lv/fusiondirectory.po
+++ b/dhcp/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po
index 147d15b0e3..8b88405758 100644
--- a/dhcp/locale/nb/fusiondirectory.po
+++ b/dhcp/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po
index 668e8eb8dd..175536ded3 100644
--- a/dhcp/locale/nl/fusiondirectory.po
+++ b/dhcp/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -26,7 +26,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -530,7 +530,7 @@ msgstr "MAC"
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
@@ -539,24 +539,24 @@ msgstr ""
 "\"%s\" is locked (door \"%s\" since %s), kan veranderingen niet opslagen aan"
 " deze DHCP configuratie"
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr "De waarde van multi waarde velden \"%s\" is geen tabel"
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr "Editeer de DHCP-ranges van een systeem"
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr "DHCP zone"
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr "Gedeclareerde DHCP hosts "
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr "Het ip %s is niet aanwezig in het network %s/%d"
diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po
index 760779a30b..c8ba0da479 100644
--- a/dhcp/locale/pl/fusiondirectory.po
+++ b/dhcp/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po
index 33c56ffbef..8e5fb42f0f 100644
--- a/dhcp/locale/pt/fusiondirectory.po
+++ b/dhcp/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po
index 4494137830..6fcc4050bf 100644
--- a/dhcp/locale/pt_BR/fusiondirectory.po
+++ b/dhcp/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -503,31 +503,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po
index 43a975c037..4bcd9daeed 100644
--- a/dhcp/locale/ru/fusiondirectory.po
+++ b/dhcp/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr "DHCP"
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr "IP"
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po
index 3ed2fd1ede..bd4411c007 100644
--- a/dhcp/locale/ru@petr1708/fusiondirectory.po
+++ b/dhcp/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po
index 537c1d627f..6ca3f22142 100644
--- a/dhcp/locale/sv/fusiondirectory.po
+++ b/dhcp/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/tr_TR/fusiondirectory.po b/dhcp/locale/tr_TR/fusiondirectory.po
index 8ae9a0d978..c47581b119 100644
--- a/dhcp/locale/tr_TR/fusiondirectory.po
+++ b/dhcp/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -119,7 +123,7 @@ msgstr ""
 
 #: admin/dhcp/class_dhcpConfiguration.inc:420
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/dhcp/class_dhcpConfiguration.inc:420
 msgid ""
@@ -497,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po
index 39aad946f6..d549d0a43e 100644
--- a/dhcp/locale/ug/fusiondirectory.po
+++ b/dhcp/locale/ug/fusiondirectory.po
@@ -8,20 +8,20 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po
index 04a34666e4..5074827325 100644
--- a/dhcp/locale/vi_VN/fusiondirectory.po
+++ b/dhcp/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po
index 96c50bdb60..6d969bb8fa 100644
--- a/dhcp/locale/zh/fusiondirectory.po
+++ b/dhcp/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -25,7 +25,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -501,31 +501,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dhcp/locale/zh_TW/fusiondirectory.po b/dhcp/locale/zh_TW/fusiondirectory.po
index 89f1263c14..9d04f81aa7 100644
--- a/dhcp/locale/zh_TW/fusiondirectory.po
+++ b/dhcp/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
 #: admin/dhcp/sections/class_dhcpFailOverPeer.inc:39
 #: admin/dhcp/sections/class_dhcpDnsZone.inc:39
-#: admin/systems/class_dhcpSystem.inc:291
+#: admin/systems/class_dhcpSystem.inc:304
 msgid "DHCP"
 msgstr ""
 
@@ -497,31 +497,31 @@ msgstr ""
 msgid "IP"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:233
+#: admin/systems/class_dhcpSystem.inc:246
 #, php-format
 msgid ""
 "\"%s\" is locked (by \"%s\" since %s), could not save modifications to this "
 "DHCP configuration"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:256
+#: admin/systems/class_dhcpSystem.inc:269
 #, php-format
 msgid "The value for multivaluated field \"%s\" is not an array"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:292
+#: admin/systems/class_dhcpSystem.inc:305
 msgid "Edit the DHCP zones of a system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:306
+#: admin/systems/class_dhcpSystem.inc:319
 msgid "DHCP zones"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:310
+#: admin/systems/class_dhcpSystem.inc:323
 msgid "DHCP hosts declared for this system"
 msgstr ""
 
-#: admin/systems/class_dhcpSystem.inc:374
+#: admin/systems/class_dhcpSystem.inc:387
 #, php-format
 msgid "The ip %s is not in the network %s/%d"
 msgstr ""
diff --git a/dns/locale/af_ZA/fusiondirectory.po b/dns/locale/af_ZA/fusiondirectory.po
index 91dc7365be..326de4d593 100644
--- a/dns/locale/af_ZA/fusiondirectory.po
+++ b/dns/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po
index 19ca392ab7..75db03272c 100644
--- a/dns/locale/ar/fusiondirectory.po
+++ b/dns/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po
index 90900a0482..ea7ee52d01 100644
--- a/dns/locale/ca/fusiondirectory.po
+++ b/dns/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po
index 222438d022..ab4acfa4ab 100644
--- a/dns/locale/cs_CZ/fusiondirectory.po
+++ b/dns/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po
index f019f33427..3470d3e162 100644
--- a/dns/locale/de/fusiondirectory.po
+++ b/dns/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po
index 5a86ffabfe..70ae45f0f5 100644
--- a/dns/locale/el_GR/fusiondirectory.po
+++ b/dns/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po
index dbee15abe8..000b8d5b55 100644
--- a/dns/locale/es/fusiondirectory.po
+++ b/dns/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po
index b6d360aa04..74f01935f2 100644
--- a/dns/locale/es_CO/fusiondirectory.po
+++ b/dns/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po
index 03a0d7fb8d..28d715a9f3 100644
--- a/dns/locale/es_VE/fusiondirectory.po
+++ b/dns/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po
index a56e07bc8a..98b52bcde3 100644
--- a/dns/locale/fa_IR/fusiondirectory.po
+++ b/dns/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po
index 29ff4f6213..e4dada4155 100644
--- a/dns/locale/fi_FI/fusiondirectory.po
+++ b/dns/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po
index 945a730557..21d0a1ce9e 100644
--- a/dns/locale/fr/fusiondirectory.po
+++ b/dns/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po
index 9e9b1f6458..7114527356 100644
--- a/dns/locale/hu_HU/fusiondirectory.po
+++ b/dns/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po
index 829eb4428f..de3b1ffdfe 100644
--- a/dns/locale/id/fusiondirectory.po
+++ b/dns/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index 52e4cce8cc..78f2ff78e9 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dns/locale/ja/fusiondirectory.po b/dns/locale/ja/fusiondirectory.po
index bb297bd5e8..de48df014e 100644
--- a/dns/locale/ja/fusiondirectory.po
+++ b/dns/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/ko/fusiondirectory.po b/dns/locale/ko/fusiondirectory.po
index bbd79ffb6a..47741db0e0 100644
--- a/dns/locale/ko/fusiondirectory.po
+++ b/dns/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -24,27 +24,27 @@ msgstr ""
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
 msgid "DNS acl"
-msgstr ""
+msgstr "DNS ACL"
 
 #: admin/dns/class_dnsAcl.inc:47
 msgid "Acl"
-msgstr ""
+msgstr "ACL"
 
 #: admin/dns/class_dnsAcl.inc:51
 msgid "ACL name"
-msgstr ""
+msgstr "ACL 이름"
 
 #: admin/dns/class_dnsAcl.inc:51
 msgid "Name of this acl"
-msgstr ""
+msgstr "이 ACL의 이름"
 
 #: admin/dns/class_dnsAcl.inc:56
 msgid "Address match list"
-msgstr ""
+msgstr "주소 일치 목록"
 
 #: admin/dns/class_dnsAcl.inc:56
 msgid "The ip address match list for this acl"
-msgstr ""
+msgstr "이 ACL의 IP 주소 일치 목록"
 
 #: admin/dns/class_dnsManagement.inc:34 admin/systems/class_dnsHost.inc:139
 msgid "DNS"
@@ -52,7 +52,7 @@ msgstr "DNS"
 
 #: admin/dns/class_dnsManagement.inc:35
 msgid "DNS Management"
-msgstr ""
+msgstr "DNS 관리"
 
 #: admin/dns/class_dnsManagement.inc:37
 msgid "Systems"
@@ -62,28 +62,28 @@ msgstr "시스템"
 #: admin/dns/class_dnsManagement.inc:99 admin/systems/class_dnsHost.inc:323
 #: admin/systems/class_dnsHost.inc:332
 msgid "Could not run ldap2zone"
-msgstr ""
+msgstr "ldap2zone을 실행할 수 없습니다"
 
 #: admin/dns/class_dnsManagement.inc:91
 msgid "More than one server matches the SOA"
-msgstr ""
+msgstr "둘 이상의 서버가 SOA와 일치"
 
 #: admin/dns/class_dnsManagement.inc:93
 msgid "Could not find the primary server"
-msgstr ""
+msgstr "기본 서버를 찾을 수 없습니다"
 
 #: admin/dns/class_dnsManagement.inc:109
 msgid "Could not get run ldap2zone"
-msgstr ""
+msgstr "ldap2zone을 실행할 수 없습니다"
 
 #: admin/dns/class_dnsManagement.inc:111 admin/systems/class_dnsHost.inc:334
 msgid "Ldap2zone"
-msgstr ""
+msgstr "Ldap2zone"
 
 #: admin/dns/class_dnsManagement.inc:111 admin/systems/class_dnsHost.inc:334
 #, php-format
 msgid "Ldap2Zone called for zone \"%s\""
-msgstr ""
+msgstr "Ldap2Zone이 \"%s\" 영역을 호출했습니다."
 
 #: admin/dns/class_dnsManagement.inc:115 admin/dns/class_dnsZone.inc:381
 #: admin/systems/class_dnsHost.inc:338
@@ -390,7 +390,7 @@ msgstr ""
 
 #: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
 msgid "Content"
-msgstr ""
+msgstr "본문"
 
 #: admin/dns/class_DnsRecordAttribute.inc:368
 msgid "Content of this record"
diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po
index 66e8290c74..6bf3494d1a 100644
--- a/dns/locale/lv/fusiondirectory.po
+++ b/dns/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po
index cd8bf8d9d6..fa4582b276 100644
--- a/dns/locale/nb/fusiondirectory.po
+++ b/dns/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po
index 1e839b48f8..b101ddd64a 100644
--- a/dns/locale/nl/fusiondirectory.po
+++ b/dns/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po
index 2e160b176a..b4a9aed38a 100644
--- a/dns/locale/pl/fusiondirectory.po
+++ b/dns/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po
index 139d111cdc..48819542c2 100644
--- a/dns/locale/pt/fusiondirectory.po
+++ b/dns/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po
index 47a82c2675..1d2387179d 100644
--- a/dns/locale/pt_BR/fusiondirectory.po
+++ b/dns/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po
index a746fae20c..c4e0cf285b 100644
--- a/dns/locale/ru/fusiondirectory.po
+++ b/dns/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po
index cd18e0d11e..e28d043724 100644
--- a/dns/locale/ru@petr1708/fusiondirectory.po
+++ b/dns/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po
index d61aafd9b6..3049e2bb0a 100644
--- a/dns/locale/sv/fusiondirectory.po
+++ b/dns/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dns/locale/tr_TR/fusiondirectory.po b/dns/locale/tr_TR/fusiondirectory.po
index 3fb67401d5..d9582cc710 100644
--- a/dns/locale/tr_TR/fusiondirectory.po
+++ b/dns/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -84,7 +88,7 @@ msgstr ""
 #: admin/dns/class_dnsManagement.inc:115 admin/dns/class_dnsZone.inc:381
 #: admin/systems/class_dnsHost.inc:338
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/dns/class_dnsManagement.inc:115 admin/systems/class_dnsHost.inc:338
 msgid "Argonaut client needs to be activated to use ldap2zone remotely"
diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po
index 2d2c1d13c0..778021f767 100644
--- a/dns/locale/ug/fusiondirectory.po
+++ b/dns/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po
index 36afe29f42..42be83ffc5 100644
--- a/dns/locale/vi_VN/fusiondirectory.po
+++ b/dns/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po
index fd5f325523..f28040c6f1 100644
--- a/dns/locale/zh/fusiondirectory.po
+++ b/dns/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dns/locale/zh_TW/fusiondirectory.po b/dns/locale/zh_TW/fusiondirectory.po
index 7b432f1d79..f902ca360d 100644
--- a/dns/locale/zh_TW/fusiondirectory.po
+++ b/dns/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/af_ZA/fusiondirectory.po b/dovecot/locale/af_ZA/fusiondirectory.po
index eb443d3e75..04035c381d 100644
--- a/dovecot/locale/af_ZA/fusiondirectory.po
+++ b/dovecot/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po
index be726ef48d..9ef2325799 100644
--- a/dovecot/locale/ar/fusiondirectory.po
+++ b/dovecot/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po
index 43bc926e79..f6485c60e0 100644
--- a/dovecot/locale/ca/fusiondirectory.po
+++ b/dovecot/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po
index a220a55e70..47ee851be7 100644
--- a/dovecot/locale/cs_CZ/fusiondirectory.po
+++ b/dovecot/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po
index 522a5bcbdb..c2642d0deb 100644
--- a/dovecot/locale/de/fusiondirectory.po
+++ b/dovecot/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po
index fb86d0a976..31ee2d053c 100644
--- a/dovecot/locale/el_GR/fusiondirectory.po
+++ b/dovecot/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po
index edf13d6fc3..d1643b458b 100644
--- a/dovecot/locale/es/fusiondirectory.po
+++ b/dovecot/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po
index 75ba4dba1a..36136937f0 100644
--- a/dovecot/locale/es_CO/fusiondirectory.po
+++ b/dovecot/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po
index 231e9d9fb7..a223027728 100644
--- a/dovecot/locale/es_VE/fusiondirectory.po
+++ b/dovecot/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po
index 87e27061bc..f205263401 100644
--- a/dovecot/locale/fa_IR/fusiondirectory.po
+++ b/dovecot/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po
index 94eed3457d..09eede04d6 100644
--- a/dovecot/locale/fi_FI/fusiondirectory.po
+++ b/dovecot/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po
index 8bab661475..7efec1f40e 100644
--- a/dovecot/locale/fr/fusiondirectory.po
+++ b/dovecot/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po
index 2eb757e55f..058defab6d 100644
--- a/dovecot/locale/hu_HU/fusiondirectory.po
+++ b/dovecot/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po
index c7fc9fc2e1..f3d87f71e2 100644
--- a/dovecot/locale/id/fusiondirectory.po
+++ b/dovecot/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po
index 4be1c05533..1510930d62 100644
--- a/dovecot/locale/it_IT/fusiondirectory.po
+++ b/dovecot/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dovecot/locale/ja/fusiondirectory.po b/dovecot/locale/ja/fusiondirectory.po
index 84b5bd2af9..5249232bab 100644
--- a/dovecot/locale/ja/fusiondirectory.po
+++ b/dovecot/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ko/fusiondirectory.po b/dovecot/locale/ko/fusiondirectory.po
index 932d678699..b52195e8c5 100644
--- a/dovecot/locale/ko/fusiondirectory.po
+++ b/dovecot/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po
index 95491946a9..def26f65ae 100644
--- a/dovecot/locale/lv/fusiondirectory.po
+++ b/dovecot/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po
index 14b7ac36ca..59b7d06b60 100644
--- a/dovecot/locale/nb/fusiondirectory.po
+++ b/dovecot/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po
index ce71e5ddae..73b2e5c29f 100644
--- a/dovecot/locale/nl/fusiondirectory.po
+++ b/dovecot/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po
index 6ff4d64757..7dc7146dfd 100644
--- a/dovecot/locale/pl/fusiondirectory.po
+++ b/dovecot/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po
index c36a41fd97..a7905a809f 100644
--- a/dovecot/locale/pt/fusiondirectory.po
+++ b/dovecot/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po
index 7b99e603d7..54ebca130b 100644
--- a/dovecot/locale/pt_BR/fusiondirectory.po
+++ b/dovecot/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po
index 5c3594d29b..a226f903fc 100644
--- a/dovecot/locale/ru/fusiondirectory.po
+++ b/dovecot/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po
index 8d5ccc426e..60474de9cf 100644
--- a/dovecot/locale/ru@petr1708/fusiondirectory.po
+++ b/dovecot/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po
index 5b7e4021fa..1c6798710c 100644
--- a/dovecot/locale/sv/fusiondirectory.po
+++ b/dovecot/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dovecot/locale/tr_TR/fusiondirectory.po b/dovecot/locale/tr_TR/fusiondirectory.po
index dee4e1a0a0..d545c9d709 100644
--- a/dovecot/locale/tr_TR/fusiondirectory.po
+++ b/dovecot/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po
index 1a4199a857..42335d8d61 100644
--- a/dovecot/locale/ug/fusiondirectory.po
+++ b/dovecot/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po
index 498a53471b..d5b04e5ef2 100644
--- a/dovecot/locale/vi_VN/fusiondirectory.po
+++ b/dovecot/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po
index 8f20753125..d8a11b7349 100644
--- a/dovecot/locale/zh/fusiondirectory.po
+++ b/dovecot/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dovecot/locale/zh_TW/fusiondirectory.po b/dovecot/locale/zh_TW/fusiondirectory.po
index af7f9a67f9..258fbab46c 100644
--- a/dovecot/locale/zh_TW/fusiondirectory.po
+++ b/dovecot/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/af_ZA/fusiondirectory.po b/dsa/locale/af_ZA/fusiondirectory.po
index 1b958e413a..123a94f5c5 100644
--- a/dsa/locale/af_ZA/fusiondirectory.po
+++ b/dsa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po
index cbb3acd749..3c59a87175 100644
--- a/dsa/locale/ar/fusiondirectory.po
+++ b/dsa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po
index 050a9b1c5a..c353f8c171 100644
--- a/dsa/locale/ca/fusiondirectory.po
+++ b/dsa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po
index a3792d6131..55e58e273f 100644
--- a/dsa/locale/cs_CZ/fusiondirectory.po
+++ b/dsa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po
index cab5d5ef77..e95b85edad 100644
--- a/dsa/locale/de/fusiondirectory.po
+++ b/dsa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po
index 17772244c1..3d0e229963 100644
--- a/dsa/locale/el_GR/fusiondirectory.po
+++ b/dsa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po
index ed5525b895..27d7b45697 100644
--- a/dsa/locale/es/fusiondirectory.po
+++ b/dsa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po
index ad05321d07..f47e56b9d2 100644
--- a/dsa/locale/es_CO/fusiondirectory.po
+++ b/dsa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po
index e7cdade503..1f785c0be3 100644
--- a/dsa/locale/es_VE/fusiondirectory.po
+++ b/dsa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po
index cd109924cb..fad9a92e87 100644
--- a/dsa/locale/fa_IR/fusiondirectory.po
+++ b/dsa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po
index e60dac2ea0..72c141a486 100644
--- a/dsa/locale/fi_FI/fusiondirectory.po
+++ b/dsa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po
index cd704e352a..9d35da62a0 100644
--- a/dsa/locale/fr/fusiondirectory.po
+++ b/dsa/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po
index 6480a9776e..ca064ecbba 100644
--- a/dsa/locale/hu_HU/fusiondirectory.po
+++ b/dsa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po
index aa72613f38..7107b1aaa1 100644
--- a/dsa/locale/id/fusiondirectory.po
+++ b/dsa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po
index e71a97f09c..281080ef53 100644
--- a/dsa/locale/it_IT/fusiondirectory.po
+++ b/dsa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/dsa/locale/ja/fusiondirectory.po b/dsa/locale/ja/fusiondirectory.po
index 6d35df0e14..0c3574bc87 100644
--- a/dsa/locale/ja/fusiondirectory.po
+++ b/dsa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ko/fusiondirectory.po b/dsa/locale/ko/fusiondirectory.po
index 5267718162..49623cd917 100644
--- a/dsa/locale/ko/fusiondirectory.po
+++ b/dsa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po
index e5e99bdd6b..adec35882d 100644
--- a/dsa/locale/lv/fusiondirectory.po
+++ b/dsa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po
index ba93a00828..568abd79d0 100644
--- a/dsa/locale/nb/fusiondirectory.po
+++ b/dsa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po
index 9788065a71..52e58cb316 100644
--- a/dsa/locale/nl/fusiondirectory.po
+++ b/dsa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po
index 095e12034f..cfb41c0be6 100644
--- a/dsa/locale/pl/fusiondirectory.po
+++ b/dsa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po
index 190125f134..613a5e766a 100644
--- a/dsa/locale/pt/fusiondirectory.po
+++ b/dsa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po
index 64acf840f4..8d2f5199b6 100644
--- a/dsa/locale/pt_BR/fusiondirectory.po
+++ b/dsa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po
index 51007717a2..2cc4e2b242 100644
--- a/dsa/locale/ru/fusiondirectory.po
+++ b/dsa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po
index c0a8e794c7..c73cb1dc1d 100644
--- a/dsa/locale/ru@petr1708/fusiondirectory.po
+++ b/dsa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po
index 2db6d3bbb3..83c44058d8 100644
--- a/dsa/locale/sv/fusiondirectory.po
+++ b/dsa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dsa/locale/tr_TR/fusiondirectory.po b/dsa/locale/tr_TR/fusiondirectory.po
index fdcb72f5cc..00f340ec3c 100644
--- a/dsa/locale/tr_TR/fusiondirectory.po
+++ b/dsa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po
index 876efb6c3e..49d2ad5a05 100644
--- a/dsa/locale/ug/fusiondirectory.po
+++ b/dsa/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po
index 6143cd0e19..06e0df7a5b 100644
--- a/dsa/locale/vi_VN/fusiondirectory.po
+++ b/dsa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po
index 1bac5d5f56..6e40dca205 100644
--- a/dsa/locale/zh/fusiondirectory.po
+++ b/dsa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dsa/locale/zh_TW/fusiondirectory.po b/dsa/locale/zh_TW/fusiondirectory.po
index 91c3d7b68b..888a94f0df 100644
--- a/dsa/locale/zh_TW/fusiondirectory.po
+++ b/dsa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/af_ZA/fusiondirectory.po b/ejbca/locale/af_ZA/fusiondirectory.po
index 915155fbe0..f76d40f16a 100644
--- a/ejbca/locale/af_ZA/fusiondirectory.po
+++ b/ejbca/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po
index 6cb41941c1..d32fef8967 100644
--- a/ejbca/locale/ar/fusiondirectory.po
+++ b/ejbca/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po
index 8b6f26822f..f6604c8e7a 100644
--- a/ejbca/locale/ca/fusiondirectory.po
+++ b/ejbca/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po
index f8bd42d54e..0fee31e763 100644
--- a/ejbca/locale/cs_CZ/fusiondirectory.po
+++ b/ejbca/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po
index 1adfa5c823..1ea63fa2b0 100644
--- a/ejbca/locale/de/fusiondirectory.po
+++ b/ejbca/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po
index f16b71d367..ee9c88caa9 100644
--- a/ejbca/locale/el_GR/fusiondirectory.po
+++ b/ejbca/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po
index 8d8e0534b6..84c5b51cba 100644
--- a/ejbca/locale/es/fusiondirectory.po
+++ b/ejbca/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po
index 55bd572522..1265ce5086 100644
--- a/ejbca/locale/es_CO/fusiondirectory.po
+++ b/ejbca/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po
index 640b76ff51..39298b0865 100644
--- a/ejbca/locale/es_VE/fusiondirectory.po
+++ b/ejbca/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po
index 686614979a..ab048fdb9b 100644
--- a/ejbca/locale/fa_IR/fusiondirectory.po
+++ b/ejbca/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po
index de5c9f4d1c..762f47135e 100644
--- a/ejbca/locale/fi_FI/fusiondirectory.po
+++ b/ejbca/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po
index a4ff06c4e8..ff847c4c45 100644
--- a/ejbca/locale/fr/fusiondirectory.po
+++ b/ejbca/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po
index af11d6846d..2e643ca314 100644
--- a/ejbca/locale/hu_HU/fusiondirectory.po
+++ b/ejbca/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po
index 24893ef52a..1f48af2f94 100644
--- a/ejbca/locale/id/fusiondirectory.po
+++ b/ejbca/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po
index bab94339a1..05b234af3c 100644
--- a/ejbca/locale/it_IT/fusiondirectory.po
+++ b/ejbca/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ejbca/locale/ja/fusiondirectory.po b/ejbca/locale/ja/fusiondirectory.po
index c3606be039..1e10a6e57a 100644
--- a/ejbca/locale/ja/fusiondirectory.po
+++ b/ejbca/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ko/fusiondirectory.po b/ejbca/locale/ko/fusiondirectory.po
index a8398b16ed..2e973e5dae 100644
--- a/ejbca/locale/ko/fusiondirectory.po
+++ b/ejbca/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po
index f7bf0f0b38..4903de650d 100644
--- a/ejbca/locale/lv/fusiondirectory.po
+++ b/ejbca/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po
index 10223e676d..fb6b9f9e91 100644
--- a/ejbca/locale/nb/fusiondirectory.po
+++ b/ejbca/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po
index 3cc81b73bb..2bf4db6c2f 100644
--- a/ejbca/locale/nl/fusiondirectory.po
+++ b/ejbca/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po
index 4c20639266..2d79d8ce03 100644
--- a/ejbca/locale/pl/fusiondirectory.po
+++ b/ejbca/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po
index caab195cba..b88dfc3758 100644
--- a/ejbca/locale/pt/fusiondirectory.po
+++ b/ejbca/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po
index 518573b555..e74ca0c96a 100644
--- a/ejbca/locale/pt_BR/fusiondirectory.po
+++ b/ejbca/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po
index a8724bffe2..84cff5fd66 100644
--- a/ejbca/locale/ru/fusiondirectory.po
+++ b/ejbca/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po
index d8f1a58c7f..f96ac49e43 100644
--- a/ejbca/locale/ru@petr1708/fusiondirectory.po
+++ b/ejbca/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po
index 4f4e8d1374..92b0fd4b8d 100644
--- a/ejbca/locale/sv/fusiondirectory.po
+++ b/ejbca/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ejbca/locale/tr_TR/fusiondirectory.po b/ejbca/locale/tr_TR/fusiondirectory.po
index 81e2953bdf..840649c8e9 100644
--- a/ejbca/locale/tr_TR/fusiondirectory.po
+++ b/ejbca/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po
index fb04ccdf19..fc79efe1f9 100644
--- a/ejbca/locale/ug/fusiondirectory.po
+++ b/ejbca/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po
index 23828ad181..b9a7adad34 100644
--- a/ejbca/locale/vi_VN/fusiondirectory.po
+++ b/ejbca/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po
index 481d563140..2a55480164 100644
--- a/ejbca/locale/zh/fusiondirectory.po
+++ b/ejbca/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ejbca/locale/zh_TW/fusiondirectory.po b/ejbca/locale/zh_TW/fusiondirectory.po
index 7b0d45d6f7..d1c14b5a7d 100644
--- a/ejbca/locale/zh_TW/fusiondirectory.po
+++ b/ejbca/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/af_ZA/fusiondirectory.po b/fai/locale/af_ZA/fusiondirectory.po
index 0448dc1d52..550091e872 100644
--- a/fai/locale/af_ZA/fusiondirectory.po
+++ b/fai/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po
index 38883bf354..4ff0a18d23 100644
--- a/fai/locale/ar/fusiondirectory.po
+++ b/fai/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po
index 03b7088914..2c75e8acf4 100644
--- a/fai/locale/ca/fusiondirectory.po
+++ b/fai/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po
index 09c7ddcd4a..6f91e2035d 100644
--- a/fai/locale/cs_CZ/fusiondirectory.po
+++ b/fai/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -51,7 +51,7 @@ msgid "Variables class name"
 msgstr "Název třídy proměnných"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -79,7 +79,7 @@ msgstr "Proměnné v této třídě"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -126,78 +126,78 @@ msgstr ""
 "Oddíl nemůže být smazán když je používán v definici jednotky datového "
 "úložiště „%s“!"
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Položka tabulky rozdělení úložiště"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "položka tabulky rozdělení úložiště pro FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Zařízení"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr "Název disku"
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr "Stručný popis"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "položka v /etc/fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr "Klíč který použít v souboru fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "jmenovka"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Označení jednotky datového úložiště"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr "Náhodný limit"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr "Přepsat všechny oddíly k šifrování náhodnými daty"
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Položky oddílů"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Kombinované fyzické oddíly"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr "Fyzické oddíly zkombinované v tomto LVM svazku"
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Oddíly v této třídě"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr "V nastavení máte čtyři položky primárního oddílu"
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po
index fef50cf433..8360f36d88 100644
--- a/fai/locale/de/fusiondirectory.po
+++ b/fai/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr "Variablenklassenname"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr "Variablen in dieser Klasse"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Partitionstabellen-Eintrag"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "FAI-Partitionstabellen-Eintrag"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Gerät"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr "Festplattenname"
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr "Kurze Beschreibung"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "fstab-Schlüssel"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Label"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Disk-Label"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Partitions-Einträge"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Kombinierte physikalische Partitionen"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Partitionen in dieser Klasse"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po
index a405255775..dc0c5e5ee6 100644
--- a/fai/locale/el_GR/fusiondirectory.po
+++ b/fai/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr "Όνομα κλάσης μεταβλητών"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr "Μεταβλητές σε αυτή την κλάση"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Καταχώριση πίνακα κατατμήσεων"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Καταχώριση πίνακα κατατμήσεων FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Συσκευή"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "κλειδί fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Ετικέτα"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Ετικέτα δίσκου "
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Καταχωρίσεις κατάτμησης"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Συνδυασμένες φυσικές κατατμήσεις"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Κατατμήσεις σε αυτή την κλάση"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po
index 52515bf3cd..59eeaeeb10 100644
--- a/fai/locale/es/fusiondirectory.po
+++ b/fai/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Entrada en la tabla de particiones"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Entrada en la tabla de particiones FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Dispositivo"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "clave fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Etiqueta"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Etiqueta de disco"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Entradas en la partición"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Particiones físicas combinadas"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po
index 39c23f1890..800f6605a0 100644
--- a/fai/locale/es_CO/fusiondirectory.po
+++ b/fai/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po
index 36d65fda03..641d3590b4 100644
--- a/fai/locale/es_VE/fusiondirectory.po
+++ b/fai/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Entrada en la tabla de particiones"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Entrada en la tabla de particiones FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Dispositivo"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "clave fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Etiqueta"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Etiqueta de disco"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Entradas en la partición"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Particiones físicas combinadas"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po
index e8391d465d..c43c49e6f0 100644
--- a/fai/locale/fa_IR/fusiondirectory.po
+++ b/fai/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po
index f2f6b32175..34c0f60760 100644
--- a/fai/locale/fi_FI/fusiondirectory.po
+++ b/fai/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po
index 43f6b344dd..ad3ffd5301 100644
--- a/fai/locale/fr/fusiondirectory.po
+++ b/fai/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -52,7 +52,7 @@ msgid "Variables class name"
 msgstr "Nom de la classe variables"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -80,7 +80,7 @@ msgstr "Variables dans cette classe"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -127,80 +127,80 @@ msgstr ""
 "Ce disque ne peut pas être supprimé car il est utilisé par la définition de "
 "disque \"%s\" !"
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Entrée de la table des partitions"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Entrée de la table de partition FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Périphérique"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr "Nom du disque"
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr "Description courte"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "Entrée fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr "Clé à utiliser dans le fichier fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Étiquette"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Étiquette du disque"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr "Initialisation aléatoire"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 "Initialiser toutes les partitions chiffrées avec des données aléatoires"
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Liste de partitions"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Partitions physiques combinées"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr "Combination des partitions physiques dans volume LVM"
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Partitions dans cette classe"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 "Vous avez plus de quatre partitions primaires dans votre configuration."
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po
index 9e08444d03..57237e634d 100644
--- a/fai/locale/hu_HU/fusiondirectory.po
+++ b/fai/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po
index 52793f0dff..3190bcdade 100644
--- a/fai/locale/id/fusiondirectory.po
+++ b/fai/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index c996f6a575..0ffa7d8db8 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -51,7 +51,7 @@ msgid "Variables class name"
 msgstr "Nome di classe variabile"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -79,7 +79,7 @@ msgstr "Variabili di questa classe"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -126,78 +126,78 @@ msgstr ""
 "La partizione non può essere rimossa mentre é in uso nella definizione del "
 "disco '%s' !"
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Elenco della tavola delle partizioni"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Elenco della tavola delle partizioni FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Dispositivo"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr "Nome del disco"
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr "Breve descrizione"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "chiave fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr "Chiave da usare nel file fstab"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Etichetta"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Etichetta del disco"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr "Init casuale"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr "Inizializza tutte le partizioni crittografate con dati casuali"
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Elenco delle partizioni"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Combinazione delle partizioni fisiche"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr "Partizioni fisiche combinate in questo volume LVM"
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Partizioni in questa classe"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr "Ci sono più di quattro partizioni primarie nella tua configurazione"
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ja/fusiondirectory.po b/fai/locale/ja/fusiondirectory.po
index 5579fdc277..63ba4d74ca 100644
--- a/fai/locale/ja/fusiondirectory.po
+++ b/fai/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ko/fusiondirectory.po b/fai/locale/ko/fusiondirectory.po
index 1a249172b3..5577c24ba8 100644
--- a/fai/locale/ko/fusiondirectory.po
+++ b/fai/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2020
+# Choi Chris <chulwon.choi@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -97,7 +97,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:77
 msgid "Content"
-msgstr ""
+msgstr "본문"
 
 #: admin/fai/class_faiVariable.inc:77
 msgid "The content of the variable"
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
-msgstr ""
+msgstr "디바이스"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "라"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
@@ -226,7 +226,7 @@ msgstr ""
 
 #: admin/fai/class_faiPartition.inc:33
 msgid "Fixed"
-msgstr ""
+msgstr "수정됨"
 
 #: admin/fai/class_faiPartition.inc:33
 msgid "Dynamic"
@@ -369,7 +369,7 @@ msgstr ""
 
 #: admin/fai/class_faiPartition.inc:311
 msgid "Never"
-msgstr ""
+msgstr "제한없음"
 
 #: admin/fai/class_faiPartition.inc:311
 msgid "Always"
@@ -943,7 +943,7 @@ msgstr ""
 
 #: admin/systems/services/repository/class_serviceRepository.inc:174
 msgid "Repositories"
-msgstr ""
+msgstr "리포지토리"
 
 #: admin/systems/services/repository/class_serviceRepository.inc:179
 msgid "Repositories this server hosts"
diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po
index b832eab5ac..4c0a21428d 100644
--- a/fai/locale/lv/fusiondirectory.po
+++ b/fai/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po
index e839483dd9..1d7de893bc 100644
--- a/fai/locale/nb/fusiondirectory.po
+++ b/fai/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po
index e337d32fa6..7eda9fed11 100644
--- a/fai/locale/nl/fusiondirectory.po
+++ b/fai/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -51,7 +51,7 @@ msgid "Variables class name"
 msgstr "Variabele klassenaam"
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -79,7 +79,7 @@ msgstr "Variabelen in deze klasse"
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -126,78 +126,78 @@ msgstr ""
 "De partitie kan niet verwijderd worden terwijl het in gebruik is in de "
 "\"%s\" disk definitie!"
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Partitie tabelinvoer"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "FAI partitie tabelinvoer"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Apparaat"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr "Disk naam"
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr "korte omschrijving"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "fstab sleutel"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr "sleutel om in fstab bestand te gebruiken"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Label"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Disklabel"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Partitie regels"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Gecombineerd fysieke partities"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr "Fysieke partitie gecombineerd in dit LVM volume"
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr "Partitie in deze klasse"
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr "Je hebt meer dan vier primaire partitie tabelrijen in je configuratie"
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po
index 6fb00fbae7..0b8d1647f7 100644
--- a/fai/locale/pl/fusiondirectory.po
+++ b/fai/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "UrzÄ…dzenie"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Partycje"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po
index cab065e4cf..c924836dea 100644
--- a/fai/locale/pt/fusiondirectory.po
+++ b/fai/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po
index 297733fb68..abeb194d04 100644
--- a/fai/locale/pt_BR/fusiondirectory.po
+++ b/fai/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Entrada na tabela de partição"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "Entrada na tabela de partição FAI"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Dispositivo"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Rótulo"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po
index ef0990ad93..6180b30315 100644
--- a/fai/locale/ru/fusiondirectory.po
+++ b/fai/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Обозначение"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po
index 5386e53a5d..d3ce21cf53 100644
--- a/fai/locale/ru@petr1708/fusiondirectory.po
+++ b/fai/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po
index cb5da1669c..00260c8e42 100644
--- a/fai/locale/sv/fusiondirectory.po
+++ b/fai/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr "Partitionstabellspost"
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr "FAI-partitionstabellspost"
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "Enhet"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr "fstab-nyckel"
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr "Etikett"
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr "UUID"
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr "Disketikett"
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "Partitionsposter"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr "Kombinerade fysiska partitioner"
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/tr_TR/fusiondirectory.po b/fai/locale/tr_TR/fusiondirectory.po
index 1af9065272..faf9723740 100644
--- a/fai/locale/tr_TR/fusiondirectory.po
+++ b/fai/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -46,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -110,7 +114,7 @@ msgstr ""
 #: admin/fai/class_faiDiskEntry.inc:146 admin/systems/class_faiLogView.inc:201
 #: admin/systems/class_faiLogView.inc:243
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/fai/class_faiDiskEntry.inc:147
 #, php-format
@@ -119,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po
index 212e3d6382..616dbc3214 100644
--- a/fai/locale/ug/fusiondirectory.po
+++ b/fai/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po
index 4d71303f60..dd61d56c92 100644
--- a/fai/locale/vi_VN/fusiondirectory.po
+++ b/fai/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po
index afed600996..14310fd5f5 100644
--- a/fai/locale/zh/fusiondirectory.po
+++ b/fai/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -50,7 +50,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -78,7 +78,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -123,78 +123,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr "设备"
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr "分区条目"
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/fai/locale/zh_TW/fusiondirectory.po b/fai/locale/zh_TW/fusiondirectory.po
index 8db993b8c1..54d640f1d3 100644
--- a/fai/locale/zh_TW/fusiondirectory.po
+++ b/fai/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgid "Variables class name"
 msgstr ""
 
 #: admin/fai/class_faiVariable.inc:55 admin/fai/class_faiVariable.inc:73
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiScript.inc:75
 #: admin/fai/class_faiProfile.inc:56 admin/fai/class_faiPackage.inc:403
 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiHook.inc:73
@@ -74,7 +74,7 @@ msgstr ""
 
 #: admin/fai/class_faiVariable.inc:69
 #: admin/fai/class_faiSimplePluginClass.inc:51
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 #: admin/fai/packageSelect/selectPackage-list.xml:40
 #: admin/fai/class_faiPartition.inc:240 admin/fai/class_faiScript.inc:71
 #: admin/fai/class_faiHook.inc:69
@@ -119,78 +119,78 @@ msgid ""
 "definition!"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:226
+#: admin/fai/class_faiDiskEntry.inc:228
 msgid "Partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:227
+#: admin/fai/class_faiDiskEntry.inc:229
 msgid "FAI partition table entry"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:238 admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:240 admin/fai/class_faiDiskEntry.inc:256
 msgid "Device"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:241
+#: admin/fai/class_faiDiskEntry.inc:243
 msgid "Disk name"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:247 admin/fai/class_faiPartition.inc:246
+#: admin/fai/class_faiDiskEntry.inc:249 admin/fai/class_faiPartition.inc:246
 msgid "Short description"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "fstab key"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:251
+#: admin/fai/class_faiDiskEntry.inc:253
 msgid "Key to use in fstab file"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:254
+#: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:257
+#: admin/fai/class_faiDiskEntry.inc:259
 msgid "Disk label"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Random init"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:263
+#: admin/fai/class_faiDiskEntry.inc:265
 msgid "Initialise all encrypted partitions with random data"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:270
+#: admin/fai/class_faiDiskEntry.inc:272
 msgid "Partition entries"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275 admin/fai/class_faiPartition.inc:452
+#: admin/fai/class_faiDiskEntry.inc:277 admin/fai/class_faiPartition.inc:452
 msgid "Combined physical partitions"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:275
+#: admin/fai/class_faiDiskEntry.inc:277
 msgid "Physical partitions combined in this LVM volume"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:281
+#: admin/fai/class_faiDiskEntry.inc:283
 #: admin/fai/class_faiPartitionTable.inc:351
 msgid "Partitions in this class"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:579
+#: admin/fai/class_faiDiskEntry.inc:581
 msgid ""
 "You have more than four primary partition table entries in your "
 "configuration"
 msgstr ""
 
-#: admin/fai/class_faiDiskEntry.inc:583
+#: admin/fai/class_faiDiskEntry.inc:585
 msgid ""
 "You cannot have more than three primary partition while using logical "
 "partitions"
diff --git a/freeradius/locale/af_ZA/fusiondirectory.po b/freeradius/locale/af_ZA/fusiondirectory.po
index 1c515800c9..1653f1c952 100644
--- a/freeradius/locale/af_ZA/fusiondirectory.po
+++ b/freeradius/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po
index a8baf0ebe1..f664d2c2b3 100644
--- a/freeradius/locale/ar/fusiondirectory.po
+++ b/freeradius/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po
index 2262dfe461..af0899cb5b 100644
--- a/freeradius/locale/ca/fusiondirectory.po
+++ b/freeradius/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po
index c41533a482..a7dc2b107e 100644
--- a/freeradius/locale/cs_CZ/fusiondirectory.po
+++ b/freeradius/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po
index 786e8b805e..4a0ca953c4 100644
--- a/freeradius/locale/de/fusiondirectory.po
+++ b/freeradius/locale/de/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
+# Ettore Atalan <atalanttore@googlemail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
+"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +82,7 @@ msgstr "Gruppen"
 
 #: personal/freeradius/class_freeradiusAccount.inc:85
 msgid "FreeRadius Group"
-msgstr "FreeRadius Gruppe"
+msgstr "FreeRadius-Gruppe"
 
 #: personal/freeradius/class_freeradiusAccount.inc:94
 msgid "User preferences"
diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po
index fe51f7820d..dcd8ee790b 100644
--- a/freeradius/locale/el_GR/fusiondirectory.po
+++ b/freeradius/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po
index 5796bcfe54..565d12a863 100644
--- a/freeradius/locale/es/fusiondirectory.po
+++ b/freeradius/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po
index a9e8357a15..b45e6f72e0 100644
--- a/freeradius/locale/es_CO/fusiondirectory.po
+++ b/freeradius/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po
index f3cf0c5097..704f4ba454 100644
--- a/freeradius/locale/es_VE/fusiondirectory.po
+++ b/freeradius/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po
index a18b8d96b0..d3f99ded3e 100644
--- a/freeradius/locale/fa_IR/fusiondirectory.po
+++ b/freeradius/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po
index eef55965cc..64452dc816 100644
--- a/freeradius/locale/fi_FI/fusiondirectory.po
+++ b/freeradius/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po
index a071268b5a..e78a684cee 100644
--- a/freeradius/locale/fr/fusiondirectory.po
+++ b/freeradius/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po
index 5743596208..07a022d43b 100644
--- a/freeradius/locale/hu_HU/fusiondirectory.po
+++ b/freeradius/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po
index d52f722134..d30338933c 100644
--- a/freeradius/locale/id/fusiondirectory.po
+++ b/freeradius/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po
index 810f4551b9..d1b49f5ec7 100644
--- a/freeradius/locale/it_IT/fusiondirectory.po
+++ b/freeradius/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/freeradius/locale/ja/fusiondirectory.po b/freeradius/locale/ja/fusiondirectory.po
index 623994a549..9c963d67b7 100644
--- a/freeradius/locale/ja/fusiondirectory.po
+++ b/freeradius/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ko/fusiondirectory.po b/freeradius/locale/ko/fusiondirectory.po
index 63b89c1b12..e2af79b726 100644
--- a/freeradius/locale/ko/fusiondirectory.po
+++ b/freeradius/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po
index 0ae51d53ae..478dc808e4 100644
--- a/freeradius/locale/lv/fusiondirectory.po
+++ b/freeradius/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po
index 12533e5f3f..822921ddf7 100644
--- a/freeradius/locale/nb/fusiondirectory.po
+++ b/freeradius/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po
index 2f8f6ae1d2..5b98348b4b 100644
--- a/freeradius/locale/nl/fusiondirectory.po
+++ b/freeradius/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po
index ef51971403..a1e0015232 100644
--- a/freeradius/locale/pl/fusiondirectory.po
+++ b/freeradius/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po
index c6ecdf1405..5609eb52c7 100644
--- a/freeradius/locale/pt/fusiondirectory.po
+++ b/freeradius/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po
index fe643f6028..67e5d156ec 100644
--- a/freeradius/locale/pt_BR/fusiondirectory.po
+++ b/freeradius/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po
index 8db018dd86..66fa484b58 100644
--- a/freeradius/locale/ru/fusiondirectory.po
+++ b/freeradius/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po
index 633de3f6c6..f2306f3cb4 100644
--- a/freeradius/locale/ru@petr1708/fusiondirectory.po
+++ b/freeradius/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po
index e031fe6fb1..39e03eef28 100644
--- a/freeradius/locale/sv/fusiondirectory.po
+++ b/freeradius/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/freeradius/locale/tr_TR/fusiondirectory.po b/freeradius/locale/tr_TR/fusiondirectory.po
index c40be8c540..b50bc28bb0 100644
--- a/freeradius/locale/tr_TR/fusiondirectory.po
+++ b/freeradius/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -85,7 +89,7 @@ msgstr ""
 
 #: personal/freeradius/class_freeradiusAccount.inc:97
 msgid "Protocol"
-msgstr ""
+msgstr "İletişim kuralı"
 
 #: personal/freeradius/class_freeradiusAccount.inc:102
 msgid "IP Address"
diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po
index 9eb06d1468..68e76c2f22 100644
--- a/freeradius/locale/ug/fusiondirectory.po
+++ b/freeradius/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po
index e89fb4b2e3..e7b46942a4 100644
--- a/freeradius/locale/vi_VN/fusiondirectory.po
+++ b/freeradius/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po
index a2362c2c8b..4a7706c7b6 100644
--- a/freeradius/locale/zh/fusiondirectory.po
+++ b/freeradius/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/freeradius/locale/zh_TW/fusiondirectory.po b/freeradius/locale/zh_TW/fusiondirectory.po
index 085618daf9..68cafcc89a 100644
--- a/freeradius/locale/zh_TW/fusiondirectory.po
+++ b/freeradius/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/af_ZA/fusiondirectory.po b/fusioninventory/locale/af_ZA/fusiondirectory.po
index 76f520808c..e79452511e 100644
--- a/fusioninventory/locale/af_ZA/fusiondirectory.po
+++ b/fusioninventory/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po
index 14a50508ef..a335e18f2d 100644
--- a/fusioninventory/locale/ar/fusiondirectory.po
+++ b/fusioninventory/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po
index d352986c2c..e36ffc3db0 100644
--- a/fusioninventory/locale/ca/fusiondirectory.po
+++ b/fusioninventory/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po
index f514a8d15e..a5f186b329 100644
--- a/fusioninventory/locale/cs_CZ/fusiondirectory.po
+++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po
index f3291ea5ff..f9b91c5108 100644
--- a/fusioninventory/locale/de/fusiondirectory.po
+++ b/fusioninventory/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po
index 30738183e4..2c68c8d93a 100644
--- a/fusioninventory/locale/el_GR/fusiondirectory.po
+++ b/fusioninventory/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po
index 3dc0301d38..169f1dd0ca 100644
--- a/fusioninventory/locale/es/fusiondirectory.po
+++ b/fusioninventory/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po
index 36a2272576..deb430674c 100644
--- a/fusioninventory/locale/es_CO/fusiondirectory.po
+++ b/fusioninventory/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po
index 5662e604e8..bc177ed1af 100644
--- a/fusioninventory/locale/es_VE/fusiondirectory.po
+++ b/fusioninventory/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po
index 50fc54d678..805b44b822 100644
--- a/fusioninventory/locale/fa_IR/fusiondirectory.po
+++ b/fusioninventory/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po
index 50be744e1c..b5b45583ce 100644
--- a/fusioninventory/locale/fi_FI/fusiondirectory.po
+++ b/fusioninventory/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po
index 10a0f12b86..02852ae50f 100644
--- a/fusioninventory/locale/fr/fusiondirectory.po
+++ b/fusioninventory/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po
index 7af6472345..b89fd732f3 100644
--- a/fusioninventory/locale/hu_HU/fusiondirectory.po
+++ b/fusioninventory/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po
index 73bd4c3050..e290e17752 100644
--- a/fusioninventory/locale/id/fusiondirectory.po
+++ b/fusioninventory/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po
index c4c728dbdb..daa51455c8 100644
--- a/fusioninventory/locale/it_IT/fusiondirectory.po
+++ b/fusioninventory/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/fusioninventory/locale/ja/fusiondirectory.po b/fusioninventory/locale/ja/fusiondirectory.po
index a5423baa6f..d759627268 100644
--- a/fusioninventory/locale/ja/fusiondirectory.po
+++ b/fusioninventory/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ko/fusiondirectory.po b/fusioninventory/locale/ko/fusiondirectory.po
index 9200ca30a3..681732239d 100644
--- a/fusioninventory/locale/ko/fusiondirectory.po
+++ b/fusioninventory/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -52,7 +52,7 @@ msgstr "작업"
 
 #: admin/inventory/inventory-list.xml:61 admin/inventory/inventory-list.xml:85
 msgid "Edit"
-msgstr ""
+msgstr "편집"
 
 #: admin/inventory/inventory-list.xml:68 admin/inventory/inventory-list.xml:92
 msgid "Remove"
diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po
index 260e83f8ac..1ad7b9a4d3 100644
--- a/fusioninventory/locale/lv/fusiondirectory.po
+++ b/fusioninventory/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po
index 54a497caa4..c5b92e363a 100644
--- a/fusioninventory/locale/nb/fusiondirectory.po
+++ b/fusioninventory/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po
index 6e44c7b34d..123f30ca9c 100644
--- a/fusioninventory/locale/nl/fusiondirectory.po
+++ b/fusioninventory/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po
index 15859b6747..87b13bcfc9 100644
--- a/fusioninventory/locale/pl/fusiondirectory.po
+++ b/fusioninventory/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po
index e3a78a0488..4288061875 100644
--- a/fusioninventory/locale/pt/fusiondirectory.po
+++ b/fusioninventory/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po
index 2f150475e2..e5380ba680 100644
--- a/fusioninventory/locale/pt_BR/fusiondirectory.po
+++ b/fusioninventory/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po
index a04d7ca871..152ad14fa6 100644
--- a/fusioninventory/locale/ru/fusiondirectory.po
+++ b/fusioninventory/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
index d6d6c79cda..e39844d4f3 100644
--- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po
+++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po
index 2391487da3..ef83c19f0f 100644
--- a/fusioninventory/locale/sv/fusiondirectory.po
+++ b/fusioninventory/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fusioninventory/locale/tr_TR/fusiondirectory.po b/fusioninventory/locale/tr_TR/fusiondirectory.po
index bb1744df16..c953eb2bbe 100644
--- a/fusioninventory/locale/tr_TR/fusiondirectory.po
+++ b/fusioninventory/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po
index aada9a6614..666dc55f26 100644
--- a/fusioninventory/locale/ug/fusiondirectory.po
+++ b/fusioninventory/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po
index 08abc3b843..cdba7f9a2d 100644
--- a/fusioninventory/locale/vi_VN/fusiondirectory.po
+++ b/fusioninventory/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po
index be5b5d8093..ba35ea515c 100644
--- a/fusioninventory/locale/zh/fusiondirectory.po
+++ b/fusioninventory/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fusioninventory/locale/zh_TW/fusiondirectory.po b/fusioninventory/locale/zh_TW/fusiondirectory.po
index 8f53518060..42245c7a41 100644
--- a/fusioninventory/locale/zh_TW/fusiondirectory.po
+++ b/fusioninventory/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/af_ZA/fusiondirectory.po b/gpg/locale/af_ZA/fusiondirectory.po
index 1e8381a502..8ac02cfad7 100644
--- a/gpg/locale/af_ZA/fusiondirectory.po
+++ b/gpg/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po
index 2308f7f14c..1e661f0464 100644
--- a/gpg/locale/ar/fusiondirectory.po
+++ b/gpg/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po
index 2e2cac98dd..27719f9a76 100644
--- a/gpg/locale/ca/fusiondirectory.po
+++ b/gpg/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po
index a3c0410853..d0f19cadb5 100644
--- a/gpg/locale/cs_CZ/fusiondirectory.po
+++ b/gpg/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po
index 44fd9c9eaf..d64f31c9ab 100644
--- a/gpg/locale/de/fusiondirectory.po
+++ b/gpg/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po
index 76ef2785b3..7e8fd399d7 100644
--- a/gpg/locale/el_GR/fusiondirectory.po
+++ b/gpg/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po
index 3e8ebe3ea3..abc61b6b06 100644
--- a/gpg/locale/es/fusiondirectory.po
+++ b/gpg/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po
index 6d3ac625bb..7f6babcf3d 100644
--- a/gpg/locale/es_CO/fusiondirectory.po
+++ b/gpg/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po
index 4d79900c53..bdd0a73fa6 100644
--- a/gpg/locale/es_VE/fusiondirectory.po
+++ b/gpg/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po
index 7de1118d3f..a4a89d9d52 100644
--- a/gpg/locale/fa_IR/fusiondirectory.po
+++ b/gpg/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po
index 7a60c006fd..2c4cf0b397 100644
--- a/gpg/locale/fi_FI/fusiondirectory.po
+++ b/gpg/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po
index fa1993acd6..9801f1abee 100644
--- a/gpg/locale/fr/fusiondirectory.po
+++ b/gpg/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po
index 9e0e792394..a381f50ea5 100644
--- a/gpg/locale/hu_HU/fusiondirectory.po
+++ b/gpg/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po
index d434e1216d..b915ce81d5 100644
--- a/gpg/locale/id/fusiondirectory.po
+++ b/gpg/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po
index 8a82253c7a..aba683aa1d 100644
--- a/gpg/locale/it_IT/fusiondirectory.po
+++ b/gpg/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/gpg/locale/ja/fusiondirectory.po b/gpg/locale/ja/fusiondirectory.po
index 4b79f60b8c..696079761b 100644
--- a/gpg/locale/ja/fusiondirectory.po
+++ b/gpg/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ko/fusiondirectory.po b/gpg/locale/ko/fusiondirectory.po
index 79b42749a0..63a2dbfbc4 100644
--- a/gpg/locale/ko/fusiondirectory.po
+++ b/gpg/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po
index aacd42d419..35c3e127bb 100644
--- a/gpg/locale/lv/fusiondirectory.po
+++ b/gpg/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po
index ce1eda871e..5f39bf65ba 100644
--- a/gpg/locale/nb/fusiondirectory.po
+++ b/gpg/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po
index fded09fc77..17e510057d 100644
--- a/gpg/locale/nl/fusiondirectory.po
+++ b/gpg/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po
index ec274136ab..ec9c95f71f 100644
--- a/gpg/locale/pl/fusiondirectory.po
+++ b/gpg/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po
index 3b77b0fb9d..b1bffd638f 100644
--- a/gpg/locale/pt/fusiondirectory.po
+++ b/gpg/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po
index 03cc81366f..7a60c4ce55 100644
--- a/gpg/locale/pt_BR/fusiondirectory.po
+++ b/gpg/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po
index b7eeeb13b3..c1dbb1bf4c 100644
--- a/gpg/locale/ru/fusiondirectory.po
+++ b/gpg/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po
index d891b2f5f8..7edb7fd8c2 100644
--- a/gpg/locale/ru@petr1708/fusiondirectory.po
+++ b/gpg/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po
index 87a9744e1d..7f5be342d6 100644
--- a/gpg/locale/sv/fusiondirectory.po
+++ b/gpg/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/gpg/locale/tr_TR/fusiondirectory.po b/gpg/locale/tr_TR/fusiondirectory.po
index b3aeafb691..4223873695 100644
--- a/gpg/locale/tr_TR/fusiondirectory.po
+++ b/gpg/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po
index 5f820bd24a..e32da44e3f 100644
--- a/gpg/locale/ug/fusiondirectory.po
+++ b/gpg/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po
index 5bee5fcbc0..f85e6ff3a4 100644
--- a/gpg/locale/vi_VN/fusiondirectory.po
+++ b/gpg/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po
index e30f070c9b..7b22bc0115 100644
--- a/gpg/locale/zh/fusiondirectory.po
+++ b/gpg/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/gpg/locale/zh_TW/fusiondirectory.po b/gpg/locale/zh_TW/fusiondirectory.po
index d99c728759..4ca94ce966 100644
--- a/gpg/locale/zh_TW/fusiondirectory.po
+++ b/gpg/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/af_ZA/fusiondirectory.po b/ipmi/locale/af_ZA/fusiondirectory.po
index 28df87af40..5985a1db93 100644
--- a/ipmi/locale/af_ZA/fusiondirectory.po
+++ b/ipmi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po
index 6c40dd1d53..035fd5f8b8 100644
--- a/ipmi/locale/ar/fusiondirectory.po
+++ b/ipmi/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po
index c0245a012c..e1b0e37f47 100644
--- a/ipmi/locale/ca/fusiondirectory.po
+++ b/ipmi/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po
index 4fd057df22..ee1b106a19 100644
--- a/ipmi/locale/cs_CZ/fusiondirectory.po
+++ b/ipmi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po
index 47231bc1fb..819cd31518 100644
--- a/ipmi/locale/de/fusiondirectory.po
+++ b/ipmi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po
index 48083a7e60..2d0e581d3c 100644
--- a/ipmi/locale/el_GR/fusiondirectory.po
+++ b/ipmi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po
index 07f2bc016e..17d6e0c7c1 100644
--- a/ipmi/locale/es/fusiondirectory.po
+++ b/ipmi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po
index ea7d9d4b7a..ca1e805e36 100644
--- a/ipmi/locale/es_CO/fusiondirectory.po
+++ b/ipmi/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po
index 18a92bea35..46a8e653b4 100644
--- a/ipmi/locale/es_VE/fusiondirectory.po
+++ b/ipmi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po
index c063a5165a..f94fb66968 100644
--- a/ipmi/locale/fa_IR/fusiondirectory.po
+++ b/ipmi/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po
index 6a354a05a5..daf90450af 100644
--- a/ipmi/locale/fi_FI/fusiondirectory.po
+++ b/ipmi/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po
index 47b62941ef..4e4f841248 100644
--- a/ipmi/locale/fr/fusiondirectory.po
+++ b/ipmi/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po
index 88ab2d996e..17a0a40c8a 100644
--- a/ipmi/locale/hu_HU/fusiondirectory.po
+++ b/ipmi/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po
index 3676db3a99..e3b5d9e1d1 100644
--- a/ipmi/locale/id/fusiondirectory.po
+++ b/ipmi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po
index 5a21a3cc21..fcea5c1a7b 100644
--- a/ipmi/locale/it_IT/fusiondirectory.po
+++ b/ipmi/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ipmi/locale/ja/fusiondirectory.po b/ipmi/locale/ja/fusiondirectory.po
index 790c328df7..e4f29998d6 100644
--- a/ipmi/locale/ja/fusiondirectory.po
+++ b/ipmi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ko/fusiondirectory.po b/ipmi/locale/ko/fusiondirectory.po
index 0ca49a46a6..ce8b7d2265 100644
--- a/ipmi/locale/ko/fusiondirectory.po
+++ b/ipmi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po
index 2e4ab9c6b9..2e7421ab4b 100644
--- a/ipmi/locale/lv/fusiondirectory.po
+++ b/ipmi/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po
index efc6de11a8..c26efefea0 100644
--- a/ipmi/locale/nb/fusiondirectory.po
+++ b/ipmi/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po
index b43cb857d6..88d792be28 100644
--- a/ipmi/locale/nl/fusiondirectory.po
+++ b/ipmi/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po
index 16f69878a1..43ab3a8df0 100644
--- a/ipmi/locale/pl/fusiondirectory.po
+++ b/ipmi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po
index e05d9bb1d0..6829a77d23 100644
--- a/ipmi/locale/pt/fusiondirectory.po
+++ b/ipmi/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po
index fe3b56b7a9..77f0f0ec27 100644
--- a/ipmi/locale/pt_BR/fusiondirectory.po
+++ b/ipmi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po
index 5f966d1296..51c9485b5d 100644
--- a/ipmi/locale/ru/fusiondirectory.po
+++ b/ipmi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po
index 2d28a834d2..76866da468 100644
--- a/ipmi/locale/ru@petr1708/fusiondirectory.po
+++ b/ipmi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po
index 129fcd9a26..a3adc556d5 100644
--- a/ipmi/locale/sv/fusiondirectory.po
+++ b/ipmi/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/tr_TR/fusiondirectory.po b/ipmi/locale/tr_TR/fusiondirectory.po
index 187d73947d..1adc99ef1b 100644
--- a/ipmi/locale/tr_TR/fusiondirectory.po
+++ b/ipmi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po
index f8d9c7ccf3..309cee7a0b 100644
--- a/ipmi/locale/ug/fusiondirectory.po
+++ b/ipmi/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po
index 5519a69bd2..85fe041cce 100644
--- a/ipmi/locale/vi_VN/fusiondirectory.po
+++ b/ipmi/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po
index 5b2d3b1611..e34d0c95ed 100644
--- a/ipmi/locale/zh/fusiondirectory.po
+++ b/ipmi/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh_TW/fusiondirectory.po b/ipmi/locale/zh_TW/fusiondirectory.po
index 25004f5657..8fb0e858bc 100644
--- a/ipmi/locale/zh_TW/fusiondirectory.po
+++ b/ipmi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/af_ZA/fusiondirectory.po b/ldapdump/locale/af_ZA/fusiondirectory.po
index 50884d16c1..8bf9f83678 100644
--- a/ldapdump/locale/af_ZA/fusiondirectory.po
+++ b/ldapdump/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po
index 904da69f0a..10e5d24868 100644
--- a/ldapdump/locale/ar/fusiondirectory.po
+++ b/ldapdump/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po
index d1999e1ca4..67173cbe22 100644
--- a/ldapdump/locale/ca/fusiondirectory.po
+++ b/ldapdump/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po
index aef7142d11..f7a352690d 100644
--- a/ldapdump/locale/cs_CZ/fusiondirectory.po
+++ b/ldapdump/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po
index 8b77bb35d0..b0acc6c9df 100644
--- a/ldapdump/locale/de/fusiondirectory.po
+++ b/ldapdump/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po
index 7ce143d64f..101958b864 100644
--- a/ldapdump/locale/el_GR/fusiondirectory.po
+++ b/ldapdump/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po
index b2eb8b3cfa..dc3be3e1f1 100644
--- a/ldapdump/locale/es/fusiondirectory.po
+++ b/ldapdump/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po
index 9e09874f8f..6890c93b9d 100644
--- a/ldapdump/locale/es_CO/fusiondirectory.po
+++ b/ldapdump/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po
index a5737924dd..f9f8b5032c 100644
--- a/ldapdump/locale/es_VE/fusiondirectory.po
+++ b/ldapdump/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po
index 1e33e772f6..2490885315 100644
--- a/ldapdump/locale/fa_IR/fusiondirectory.po
+++ b/ldapdump/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po
index 6d5feaf142..214ca4e6e2 100644
--- a/ldapdump/locale/fi_FI/fusiondirectory.po
+++ b/ldapdump/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po
index 5f0f759b98..c34abfbf28 100644
--- a/ldapdump/locale/fr/fusiondirectory.po
+++ b/ldapdump/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po
index b060a0d249..5f771009ca 100644
--- a/ldapdump/locale/hu_HU/fusiondirectory.po
+++ b/ldapdump/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po
index 756e0c580b..7db8824fe6 100644
--- a/ldapdump/locale/id/fusiondirectory.po
+++ b/ldapdump/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po
index 18571a577b..4464b5a7c9 100644
--- a/ldapdump/locale/it_IT/fusiondirectory.po
+++ b/ldapdump/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapdump/locale/ja/fusiondirectory.po b/ldapdump/locale/ja/fusiondirectory.po
index c10346d226..912965174d 100644
--- a/ldapdump/locale/ja/fusiondirectory.po
+++ b/ldapdump/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ko/fusiondirectory.po b/ldapdump/locale/ko/fusiondirectory.po
index de86efa352..68ff30f9af 100644
--- a/ldapdump/locale/ko/fusiondirectory.po
+++ b/ldapdump/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po
index 48fa10552f..29357b51df 100644
--- a/ldapdump/locale/lv/fusiondirectory.po
+++ b/ldapdump/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po
index 68e73336c4..3807af8add 100644
--- a/ldapdump/locale/nb/fusiondirectory.po
+++ b/ldapdump/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po
index 91d7aba7ac..07ccdf917e 100644
--- a/ldapdump/locale/nl/fusiondirectory.po
+++ b/ldapdump/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po
index 4d7a402575..5bd8e50fb2 100644
--- a/ldapdump/locale/pl/fusiondirectory.po
+++ b/ldapdump/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po
index a012f1d9fe..34824c64a9 100644
--- a/ldapdump/locale/pt/fusiondirectory.po
+++ b/ldapdump/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po
index 0024fe3d7b..8e60ede72a 100644
--- a/ldapdump/locale/pt_BR/fusiondirectory.po
+++ b/ldapdump/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po
index ffc1fceaab..0e8e6a381e 100644
--- a/ldapdump/locale/ru/fusiondirectory.po
+++ b/ldapdump/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po
index 8e6e3aaaee..3721ed32f5 100644
--- a/ldapdump/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po
index 2f60a62938..c4616895b1 100644
--- a/ldapdump/locale/sv/fusiondirectory.po
+++ b/ldapdump/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapdump/locale/tr_TR/fusiondirectory.po b/ldapdump/locale/tr_TR/fusiondirectory.po
index 4ab22b4374..eab551f227 100644
--- a/ldapdump/locale/tr_TR/fusiondirectory.po
+++ b/ldapdump/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po
index 97df67a8a5..4f92d32fa1 100644
--- a/ldapdump/locale/ug/fusiondirectory.po
+++ b/ldapdump/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po
index 115615a57f..7e2fa61a8d 100644
--- a/ldapdump/locale/vi_VN/fusiondirectory.po
+++ b/ldapdump/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po
index 903a35ee61..50263f2e45 100644
--- a/ldapdump/locale/zh/fusiondirectory.po
+++ b/ldapdump/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/zh_TW/fusiondirectory.po b/ldapdump/locale/zh_TW/fusiondirectory.po
index 35ab3abf9d..4460411e09 100644
--- a/ldapdump/locale/zh_TW/fusiondirectory.po
+++ b/ldapdump/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/af_ZA/fusiondirectory.po b/ldapmanager/locale/af_ZA/fusiondirectory.po
index dfbf03f367..6f2296b893 100644
--- a/ldapmanager/locale/af_ZA/fusiondirectory.po
+++ b/ldapmanager/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po
index a1b193b83b..ebe0584715 100644
--- a/ldapmanager/locale/ar/fusiondirectory.po
+++ b/ldapmanager/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po
index dc9191adfa..9d9e0320c8 100644
--- a/ldapmanager/locale/ca/fusiondirectory.po
+++ b/ldapmanager/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po
index 9d59d9dd0f..e34be13a66 100644
--- a/ldapmanager/locale/cs_CZ/fusiondirectory.po
+++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po
index 6814ccd5a1..7c2cca7dae 100644
--- a/ldapmanager/locale/de/fusiondirectory.po
+++ b/ldapmanager/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po
index cd06f91334..09a732f5ad 100644
--- a/ldapmanager/locale/el_GR/fusiondirectory.po
+++ b/ldapmanager/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po
index 879487af90..1768e1a131 100644
--- a/ldapmanager/locale/es/fusiondirectory.po
+++ b/ldapmanager/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po
index 18780e1fe3..ab73f9cb20 100644
--- a/ldapmanager/locale/es_CO/fusiondirectory.po
+++ b/ldapmanager/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po
index 3b1da4875a..4f6cc0671f 100644
--- a/ldapmanager/locale/es_VE/fusiondirectory.po
+++ b/ldapmanager/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po
index 425167c2b1..367455ae24 100644
--- a/ldapmanager/locale/fa_IR/fusiondirectory.po
+++ b/ldapmanager/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po
index 79f6b052f7..6a8363c412 100644
--- a/ldapmanager/locale/fi_FI/fusiondirectory.po
+++ b/ldapmanager/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po
index 9b1924e46c..3523382e62 100644
--- a/ldapmanager/locale/fr/fusiondirectory.po
+++ b/ldapmanager/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po
index 938a68ec68..c0b39f3d80 100644
--- a/ldapmanager/locale/hu_HU/fusiondirectory.po
+++ b/ldapmanager/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po
index 226389dcc6..ae2cadd49d 100644
--- a/ldapmanager/locale/id/fusiondirectory.po
+++ b/ldapmanager/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index 04da0373fa..1c78292367 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ldapmanager/locale/ja/fusiondirectory.po b/ldapmanager/locale/ja/fusiondirectory.po
index e7a66c5c7c..034eda6eac 100644
--- a/ldapmanager/locale/ja/fusiondirectory.po
+++ b/ldapmanager/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ko/fusiondirectory.po b/ldapmanager/locale/ko/fusiondirectory.po
index 280e0aa0bd..c58015df33 100644
--- a/ldapmanager/locale/ko/fusiondirectory.po
+++ b/ldapmanager/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po
index 3a36ca00da..5aa3d5fbd2 100644
--- a/ldapmanager/locale/lv/fusiondirectory.po
+++ b/ldapmanager/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po
index 090b083d59..663e9370cf 100644
--- a/ldapmanager/locale/nb/fusiondirectory.po
+++ b/ldapmanager/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po
index cd329790b3..9f06918e28 100644
--- a/ldapmanager/locale/nl/fusiondirectory.po
+++ b/ldapmanager/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po
index 47044710d2..d23a9401a6 100644
--- a/ldapmanager/locale/pl/fusiondirectory.po
+++ b/ldapmanager/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po
index a3a64321cd..2e9bdb255f 100644
--- a/ldapmanager/locale/pt/fusiondirectory.po
+++ b/ldapmanager/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po
index 050d713f2c..b2d4686bcb 100644
--- a/ldapmanager/locale/pt_BR/fusiondirectory.po
+++ b/ldapmanager/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po
index a6c9795a48..587f73e65d 100644
--- a/ldapmanager/locale/ru/fusiondirectory.po
+++ b/ldapmanager/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
index 11eca55adc..5eee44effc 100644
--- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po
index 63f6666506..14bfda914e 100644
--- a/ldapmanager/locale/sv/fusiondirectory.po
+++ b/ldapmanager/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapmanager/locale/tr_TR/fusiondirectory.po b/ldapmanager/locale/tr_TR/fusiondirectory.po
index 64be24aa44..8cbdce6a0c 100644
--- a/ldapmanager/locale/tr_TR/fusiondirectory.po
+++ b/ldapmanager/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -124,7 +128,7 @@ msgstr ""
 
 #: addons/ldapmanager/class_ldapmanager.inc:181
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: addons/ldapmanager/class_ldapmanager.inc:182
 #, php-format
@@ -143,7 +147,7 @@ msgstr ""
 #: addons/ldapmanager/class_ldapmanager.inc:201
 #: addons/ldapmanager/class_csvimport.inc:251
 msgid "Success"
-msgstr ""
+msgstr "Başarı"
 
 #: addons/ldapmanager/class_ldapmanager.inc:201
 #, php-format
diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po
index e01a11802b..7c8f328404 100644
--- a/ldapmanager/locale/ug/fusiondirectory.po
+++ b/ldapmanager/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po
index a52b5c9aac..c6638e2991 100644
--- a/ldapmanager/locale/vi_VN/fusiondirectory.po
+++ b/ldapmanager/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po
index ae4d6629c0..b1bb98574f 100644
--- a/ldapmanager/locale/zh/fusiondirectory.po
+++ b/ldapmanager/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ldapmanager/locale/zh_TW/fusiondirectory.po b/ldapmanager/locale/zh_TW/fusiondirectory.po
index be6ce89fe0..734a1801d3 100644
--- a/ldapmanager/locale/zh_TW/fusiondirectory.po
+++ b/ldapmanager/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/af_ZA/fusiondirectory.po b/mail/locale/af_ZA/fusiondirectory.po
index b94e3dbdff..3a8961f6b2 100644
--- a/mail/locale/af_ZA/fusiondirectory.po
+++ b/mail/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po
index 17eef8a07b..8ddb75d49f 100644
--- a/mail/locale/ar/fusiondirectory.po
+++ b/mail/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po
index 495881cebe..58a2ccb837 100644
--- a/mail/locale/ca/fusiondirectory.po
+++ b/mail/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po
index ea948ac360..53e9c041cf 100644
--- a/mail/locale/cs_CZ/fusiondirectory.po
+++ b/mail/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po
index c727554d8c..9dba10057c 100644
--- a/mail/locale/de/fusiondirectory.po
+++ b/mail/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po
index f5aec42a48..144f22af11 100644
--- a/mail/locale/el_GR/fusiondirectory.po
+++ b/mail/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po
index c87495b5ab..47ea92eac3 100644
--- a/mail/locale/es/fusiondirectory.po
+++ b/mail/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po
index 843f154fb8..85a1b00466 100644
--- a/mail/locale/es_CO/fusiondirectory.po
+++ b/mail/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po
index 56eb1da530..a90580503e 100644
--- a/mail/locale/es_VE/fusiondirectory.po
+++ b/mail/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po
index 25433794ba..a6777b4c23 100644
--- a/mail/locale/fa_IR/fusiondirectory.po
+++ b/mail/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po
index ac8c9f786e..e3f7339e61 100644
--- a/mail/locale/fi_FI/fusiondirectory.po
+++ b/mail/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po
index a75d7f3ac5..34588d9340 100644
--- a/mail/locale/fr/fusiondirectory.po
+++ b/mail/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po
index d17c2d41d3..ad6d2a99c1 100644
--- a/mail/locale/hu_HU/fusiondirectory.po
+++ b/mail/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po
index 7422fd0686..c9919a602a 100644
--- a/mail/locale/id/fusiondirectory.po
+++ b/mail/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po
index 1658180860..00ecb1418b 100644
--- a/mail/locale/it_IT/fusiondirectory.po
+++ b/mail/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mail/locale/ja/fusiondirectory.po b/mail/locale/ja/fusiondirectory.po
index eb353f5ca7..6fbaf48221 100644
--- a/mail/locale/ja/fusiondirectory.po
+++ b/mail/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ko/fusiondirectory.po b/mail/locale/ko/fusiondirectory.po
index d0785b59bb..f4a88ecde7 100644
--- a/mail/locale/ko/fusiondirectory.po
+++ b/mail/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po
index a4101b5271..d765e75560 100644
--- a/mail/locale/lv/fusiondirectory.po
+++ b/mail/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po
index da9db2143f..b45ea66c13 100644
--- a/mail/locale/nb/fusiondirectory.po
+++ b/mail/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po
index 225b78ebf0..0f9ab00d09 100644
--- a/mail/locale/nl/fusiondirectory.po
+++ b/mail/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po
index 5ebe54561d..75e6cc2c17 100644
--- a/mail/locale/pl/fusiondirectory.po
+++ b/mail/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po
index 03dcce8ae2..254beb0331 100644
--- a/mail/locale/pt/fusiondirectory.po
+++ b/mail/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po
index fa71c6c8e4..a3e2ea045d 100644
--- a/mail/locale/pt_BR/fusiondirectory.po
+++ b/mail/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po
index b1a50fd3be..40111fecf7 100644
--- a/mail/locale/ru/fusiondirectory.po
+++ b/mail/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po
index 94c4de45f0..8799a9bf0b 100644
--- a/mail/locale/ru@petr1708/fusiondirectory.po
+++ b/mail/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po
index 95f66210b6..83ab06d4c5 100644
--- a/mail/locale/sv/fusiondirectory.po
+++ b/mail/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mail/locale/tr_TR/fusiondirectory.po b/mail/locale/tr_TR/fusiondirectory.po
index 621bac60f4..e67161a44b 100644
--- a/mail/locale/tr_TR/fusiondirectory.po
+++ b/mail/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po
index 7a8c36c84a..23980a7322 100644
--- a/mail/locale/ug/fusiondirectory.po
+++ b/mail/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po
index f937d9cbf2..5eee5bad83 100644
--- a/mail/locale/vi_VN/fusiondirectory.po
+++ b/mail/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po
index dd5a8d3f7d..db03172433 100644
--- a/mail/locale/zh/fusiondirectory.po
+++ b/mail/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mail/locale/zh_TW/fusiondirectory.po b/mail/locale/zh_TW/fusiondirectory.po
index 3a20f0c51f..c6a0ac89e5 100644
--- a/mail/locale/zh_TW/fusiondirectory.po
+++ b/mail/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/af_ZA/fusiondirectory.po b/mixedgroups/locale/af_ZA/fusiondirectory.po
index 6f15e9e980..8eb7fd5d83 100644
--- a/mixedgroups/locale/af_ZA/fusiondirectory.po
+++ b/mixedgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po
index 6675f01896..0b4dddb026 100644
--- a/mixedgroups/locale/ar/fusiondirectory.po
+++ b/mixedgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po
index 3e659a4b24..1591f82123 100644
--- a/mixedgroups/locale/ca/fusiondirectory.po
+++ b/mixedgroups/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po
index b6424ed34f..b199cc2ab1 100644
--- a/mixedgroups/locale/cs_CZ/fusiondirectory.po
+++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po
index e931d0a274..92125de45d 100644
--- a/mixedgroups/locale/de/fusiondirectory.po
+++ b/mixedgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po
index d3b65c0817..d2cb49cb81 100644
--- a/mixedgroups/locale/el_GR/fusiondirectory.po
+++ b/mixedgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po
index 2c3a08bda9..8cabed6336 100644
--- a/mixedgroups/locale/es/fusiondirectory.po
+++ b/mixedgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po
index 8ceb6fbea1..dcce387854 100644
--- a/mixedgroups/locale/es_CO/fusiondirectory.po
+++ b/mixedgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po
index 7bfc25c5be..62353e38e6 100644
--- a/mixedgroups/locale/es_VE/fusiondirectory.po
+++ b/mixedgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po
index e903dd4cb4..6709aa2604 100644
--- a/mixedgroups/locale/fa_IR/fusiondirectory.po
+++ b/mixedgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po
index 085b6ec875..02817a94ec 100644
--- a/mixedgroups/locale/fi_FI/fusiondirectory.po
+++ b/mixedgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po
index bf4caf939b..47be8caaa4 100644
--- a/mixedgroups/locale/fr/fusiondirectory.po
+++ b/mixedgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po
index d3f7643739..41488cde71 100644
--- a/mixedgroups/locale/hu_HU/fusiondirectory.po
+++ b/mixedgroups/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po
index e89bae93ed..aa99e21fb5 100644
--- a/mixedgroups/locale/id/fusiondirectory.po
+++ b/mixedgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po
index b3b7ef293c..430c2ed29b 100644
--- a/mixedgroups/locale/it_IT/fusiondirectory.po
+++ b/mixedgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/mixedgroups/locale/ja/fusiondirectory.po b/mixedgroups/locale/ja/fusiondirectory.po
index ab6f6221cf..563462956f 100644
--- a/mixedgroups/locale/ja/fusiondirectory.po
+++ b/mixedgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ko/fusiondirectory.po b/mixedgroups/locale/ko/fusiondirectory.po
index d7ee4a70c2..a1adc206fd 100644
--- a/mixedgroups/locale/ko/fusiondirectory.po
+++ b/mixedgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po
index b5e9b2b34d..38c5ac061a 100644
--- a/mixedgroups/locale/lv/fusiondirectory.po
+++ b/mixedgroups/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po
index 072369c6be..1166541907 100644
--- a/mixedgroups/locale/nb/fusiondirectory.po
+++ b/mixedgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po
index 6fb280e13c..3baf27127e 100644
--- a/mixedgroups/locale/nl/fusiondirectory.po
+++ b/mixedgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po
index c36c572cef..070f5704b2 100644
--- a/mixedgroups/locale/pl/fusiondirectory.po
+++ b/mixedgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po
index d02a704362..3777ab89a7 100644
--- a/mixedgroups/locale/pt/fusiondirectory.po
+++ b/mixedgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po
index 48723630ad..ff19a5de23 100644
--- a/mixedgroups/locale/pt_BR/fusiondirectory.po
+++ b/mixedgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po
index c60eb1108a..aa7df1c65c 100644
--- a/mixedgroups/locale/ru/fusiondirectory.po
+++ b/mixedgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
index 945db18618..3d98602417 100644
--- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po
index 3c118c7551..fd64632e89 100644
--- a/mixedgroups/locale/sv/fusiondirectory.po
+++ b/mixedgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mixedgroups/locale/tr_TR/fusiondirectory.po b/mixedgroups/locale/tr_TR/fusiondirectory.po
index fa529893e9..6eb471ec1c 100644
--- a/mixedgroups/locale/tr_TR/fusiondirectory.po
+++ b/mixedgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po
index b5509faded..5623fbeceb 100644
--- a/mixedgroups/locale/ug/fusiondirectory.po
+++ b/mixedgroups/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po
index 7369b37a9a..732c70d0a9 100644
--- a/mixedgroups/locale/vi_VN/fusiondirectory.po
+++ b/mixedgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po
index 4f15fa4aa4..f7793d5171 100644
--- a/mixedgroups/locale/zh/fusiondirectory.po
+++ b/mixedgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mixedgroups/locale/zh_TW/fusiondirectory.po b/mixedgroups/locale/zh_TW/fusiondirectory.po
index 7515309351..643de5c271 100644
--- a/mixedgroups/locale/zh_TW/fusiondirectory.po
+++ b/mixedgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/af_ZA/fusiondirectory.po b/nagios/locale/af_ZA/fusiondirectory.po
index 59da2257eb..dbd81dae1a 100644
--- a/nagios/locale/af_ZA/fusiondirectory.po
+++ b/nagios/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po
index 4c0a3666d5..93fdf5019d 100644
--- a/nagios/locale/ar/fusiondirectory.po
+++ b/nagios/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po
index 2d877f5b2f..c7734b726d 100644
--- a/nagios/locale/ca/fusiondirectory.po
+++ b/nagios/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po
index 607aa4923d..b76523eacf 100644
--- a/nagios/locale/cs_CZ/fusiondirectory.po
+++ b/nagios/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po
index a5f5e367b0..4503d40f89 100644
--- a/nagios/locale/de/fusiondirectory.po
+++ b/nagios/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po
index 8d13643c3a..da9c042fac 100644
--- a/nagios/locale/el_GR/fusiondirectory.po
+++ b/nagios/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po
index 8486ebe730..c1c42d6918 100644
--- a/nagios/locale/es/fusiondirectory.po
+++ b/nagios/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po
index cd6491eaab..a39717ffc0 100644
--- a/nagios/locale/es_CO/fusiondirectory.po
+++ b/nagios/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po
index 20d485fd88..c7e62676c6 100644
--- a/nagios/locale/es_VE/fusiondirectory.po
+++ b/nagios/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po
index 8c67418474..62ca987a14 100644
--- a/nagios/locale/fa_IR/fusiondirectory.po
+++ b/nagios/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po
index 132662f79f..a6e6be2066 100644
--- a/nagios/locale/fi_FI/fusiondirectory.po
+++ b/nagios/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po
index 4cf7ed71c9..2fb2a2d9e3 100644
--- a/nagios/locale/fr/fusiondirectory.po
+++ b/nagios/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po
index f920b861f2..c34ab26ae1 100644
--- a/nagios/locale/hu_HU/fusiondirectory.po
+++ b/nagios/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po
index 108923e4eb..96a6490640 100644
--- a/nagios/locale/id/fusiondirectory.po
+++ b/nagios/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po
index da579a583e..4ba9347c05 100644
--- a/nagios/locale/it_IT/fusiondirectory.po
+++ b/nagios/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/nagios/locale/ja/fusiondirectory.po b/nagios/locale/ja/fusiondirectory.po
index c0ffb4d57e..d61a6ad72b 100644
--- a/nagios/locale/ja/fusiondirectory.po
+++ b/nagios/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ko/fusiondirectory.po b/nagios/locale/ko/fusiondirectory.po
index 3046f66adb..451ac7f156 100644
--- a/nagios/locale/ko/fusiondirectory.po
+++ b/nagios/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po
index 18236bcbd4..e3b13dbc8e 100644
--- a/nagios/locale/lv/fusiondirectory.po
+++ b/nagios/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po
index b3c5627633..a069ffc13a 100644
--- a/nagios/locale/nb/fusiondirectory.po
+++ b/nagios/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po
index ec09f5ae22..c5133df758 100644
--- a/nagios/locale/nl/fusiondirectory.po
+++ b/nagios/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po
index fe720a104a..b11d92e82f 100644
--- a/nagios/locale/pl/fusiondirectory.po
+++ b/nagios/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po
index 4248bb97a5..27bbd8888f 100644
--- a/nagios/locale/pt/fusiondirectory.po
+++ b/nagios/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po
index b99c3b6395..6ccff29e51 100644
--- a/nagios/locale/pt_BR/fusiondirectory.po
+++ b/nagios/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po
index 07e78d2f18..497acb19c0 100644
--- a/nagios/locale/ru/fusiondirectory.po
+++ b/nagios/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po
index e8d3127a63..bdbff0b607 100644
--- a/nagios/locale/ru@petr1708/fusiondirectory.po
+++ b/nagios/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po
index c9c6d24265..8c0a41c693 100644
--- a/nagios/locale/sv/fusiondirectory.po
+++ b/nagios/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/nagios/locale/tr_TR/fusiondirectory.po b/nagios/locale/tr_TR/fusiondirectory.po
index daa15c064f..4d7f8e2b6d 100644
--- a/nagios/locale/tr_TR/fusiondirectory.po
+++ b/nagios/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po
index 9296e76beb..929b11659d 100644
--- a/nagios/locale/ug/fusiondirectory.po
+++ b/nagios/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po
index b0d2ba8fb4..835c15f914 100644
--- a/nagios/locale/vi_VN/fusiondirectory.po
+++ b/nagios/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po
index f598ea50fa..ee86af3b42 100644
--- a/nagios/locale/zh/fusiondirectory.po
+++ b/nagios/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/nagios/locale/zh_TW/fusiondirectory.po b/nagios/locale/zh_TW/fusiondirectory.po
index 075cf184e6..6f8049e302 100644
--- a/nagios/locale/zh_TW/fusiondirectory.po
+++ b/nagios/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/af_ZA/fusiondirectory.po b/netgroups/locale/af_ZA/fusiondirectory.po
index 1b015cecf9..950a73e685 100644
--- a/netgroups/locale/af_ZA/fusiondirectory.po
+++ b/netgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po
index 040936d276..69fefb382f 100644
--- a/netgroups/locale/ar/fusiondirectory.po
+++ b/netgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po
index 5a6e77b2aa..b4c19d756f 100644
--- a/netgroups/locale/ca/fusiondirectory.po
+++ b/netgroups/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po
index 8c614be937..216f0e3fc0 100644
--- a/netgroups/locale/cs_CZ/fusiondirectory.po
+++ b/netgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po
index 46eb1051d9..d802d60e05 100644
--- a/netgroups/locale/de/fusiondirectory.po
+++ b/netgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po
index b2ddb1045c..33ed9ee4c2 100644
--- a/netgroups/locale/el_GR/fusiondirectory.po
+++ b/netgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po
index 3db13106e2..0d79ec2e9a 100644
--- a/netgroups/locale/es/fusiondirectory.po
+++ b/netgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po
index 48f990d05f..12f14e5eaa 100644
--- a/netgroups/locale/es_CO/fusiondirectory.po
+++ b/netgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po
index cbba0094cf..d9acdde50c 100644
--- a/netgroups/locale/es_VE/fusiondirectory.po
+++ b/netgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po
index 097621162f..92e5e8b49e 100644
--- a/netgroups/locale/fa_IR/fusiondirectory.po
+++ b/netgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po
index f617b3d5eb..b00420ee3a 100644
--- a/netgroups/locale/fi_FI/fusiondirectory.po
+++ b/netgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po
index 7b29f6d455..aea6d5094f 100644
--- a/netgroups/locale/fr/fusiondirectory.po
+++ b/netgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po
index 4c1af5a1d7..aea09379ab 100644
--- a/netgroups/locale/hu_HU/fusiondirectory.po
+++ b/netgroups/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po
index 8c1b468aa6..64956333c8 100644
--- a/netgroups/locale/id/fusiondirectory.po
+++ b/netgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po
index 12c4ed351e..7b57a24c8b 100644
--- a/netgroups/locale/it_IT/fusiondirectory.po
+++ b/netgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/netgroups/locale/ja/fusiondirectory.po b/netgroups/locale/ja/fusiondirectory.po
index 48ddd1958a..491455af00 100644
--- a/netgroups/locale/ja/fusiondirectory.po
+++ b/netgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ko/fusiondirectory.po b/netgroups/locale/ko/fusiondirectory.po
index 7e31273c99..8a83356f5f 100644
--- a/netgroups/locale/ko/fusiondirectory.po
+++ b/netgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po
index e8ce2c8984..b3f96835b1 100644
--- a/netgroups/locale/lv/fusiondirectory.po
+++ b/netgroups/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po
index 0ff7ff4022..444b198af7 100644
--- a/netgroups/locale/nb/fusiondirectory.po
+++ b/netgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po
index 7abe5b5e60..b853148ae6 100644
--- a/netgroups/locale/nl/fusiondirectory.po
+++ b/netgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po
index 27667e9f72..59dc1a05f9 100644
--- a/netgroups/locale/pl/fusiondirectory.po
+++ b/netgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po
index 5f6b246e27..2aa55da130 100644
--- a/netgroups/locale/pt/fusiondirectory.po
+++ b/netgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po
index 1c59e46237..32eb3714d5 100644
--- a/netgroups/locale/pt_BR/fusiondirectory.po
+++ b/netgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po
index a8c712acd9..c716f742ac 100644
--- a/netgroups/locale/ru/fusiondirectory.po
+++ b/netgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po
index 83c15b5bcc..bd8131f21a 100644
--- a/netgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/netgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po
index fc0e67b013..3e5a67d613 100644
--- a/netgroups/locale/sv/fusiondirectory.po
+++ b/netgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/netgroups/locale/tr_TR/fusiondirectory.po b/netgroups/locale/tr_TR/fusiondirectory.po
index a5166e6c26..48115ff622 100644
--- a/netgroups/locale/tr_TR/fusiondirectory.po
+++ b/netgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po
index e46e3f46bf..d3dbabafae 100644
--- a/netgroups/locale/ug/fusiondirectory.po
+++ b/netgroups/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po
index 784f911755..faad879c54 100644
--- a/netgroups/locale/vi_VN/fusiondirectory.po
+++ b/netgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po
index a071754c74..600cc2f42c 100644
--- a/netgroups/locale/zh/fusiondirectory.po
+++ b/netgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/netgroups/locale/zh_TW/fusiondirectory.po b/netgroups/locale/zh_TW/fusiondirectory.po
index a8725c8a2a..9d7e222d5c 100644
--- a/netgroups/locale/zh_TW/fusiondirectory.po
+++ b/netgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/af_ZA/fusiondirectory.po b/newsletter/locale/af_ZA/fusiondirectory.po
index 18c27ac031..9ebefe7181 100644
--- a/newsletter/locale/af_ZA/fusiondirectory.po
+++ b/newsletter/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po
index dedf27c53b..03280b1a33 100644
--- a/newsletter/locale/ar/fusiondirectory.po
+++ b/newsletter/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po
index 8f0e6e317a..2a2bb3021d 100644
--- a/newsletter/locale/ca/fusiondirectory.po
+++ b/newsletter/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po
index 815c22cfb4..1ea935258d 100644
--- a/newsletter/locale/cs_CZ/fusiondirectory.po
+++ b/newsletter/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po
index 75ac55b76b..a02531f961 100644
--- a/newsletter/locale/de/fusiondirectory.po
+++ b/newsletter/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po
index ae0697fa05..48671f8bf5 100644
--- a/newsletter/locale/el_GR/fusiondirectory.po
+++ b/newsletter/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po
index 358544a7ff..d53da14941 100644
--- a/newsletter/locale/es/fusiondirectory.po
+++ b/newsletter/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po
index dd5b2c4661..9a644a0169 100644
--- a/newsletter/locale/es_CO/fusiondirectory.po
+++ b/newsletter/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po
index e624dc9855..2d6c21eac6 100644
--- a/newsletter/locale/es_VE/fusiondirectory.po
+++ b/newsletter/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po
index ca1002a586..0bf2a52ba9 100644
--- a/newsletter/locale/fa_IR/fusiondirectory.po
+++ b/newsletter/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po
index 6f58b93085..1176b23272 100644
--- a/newsletter/locale/fi_FI/fusiondirectory.po
+++ b/newsletter/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po
index 8484aa0943..bf72c2bb62 100644
--- a/newsletter/locale/fr/fusiondirectory.po
+++ b/newsletter/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po
index 75222c8b5b..3e5ecabda4 100644
--- a/newsletter/locale/hu_HU/fusiondirectory.po
+++ b/newsletter/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po
index 42f2103cb8..d160f9b9b6 100644
--- a/newsletter/locale/id/fusiondirectory.po
+++ b/newsletter/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po
index 1406d501fd..e469d5102b 100644
--- a/newsletter/locale/it_IT/fusiondirectory.po
+++ b/newsletter/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/newsletter/locale/ja/fusiondirectory.po b/newsletter/locale/ja/fusiondirectory.po
index cd46c9a796..a61218064b 100644
--- a/newsletter/locale/ja/fusiondirectory.po
+++ b/newsletter/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ko/fusiondirectory.po b/newsletter/locale/ko/fusiondirectory.po
index b048f4c369..85ba440b9b 100644
--- a/newsletter/locale/ko/fusiondirectory.po
+++ b/newsletter/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po
index 0175257e11..82da47db17 100644
--- a/newsletter/locale/lv/fusiondirectory.po
+++ b/newsletter/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po
index 07ee0462eb..ede0e27c4b 100644
--- a/newsletter/locale/nb/fusiondirectory.po
+++ b/newsletter/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po
index 77806e6d13..3bf4295781 100644
--- a/newsletter/locale/nl/fusiondirectory.po
+++ b/newsletter/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po
index 435ccf5e8c..0879b1a98a 100644
--- a/newsletter/locale/pl/fusiondirectory.po
+++ b/newsletter/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po
index 9632e44f4f..a6e212e877 100644
--- a/newsletter/locale/pt/fusiondirectory.po
+++ b/newsletter/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po
index 51f85b01c8..59eb3082af 100644
--- a/newsletter/locale/pt_BR/fusiondirectory.po
+++ b/newsletter/locale/pt_BR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po
index 24fbca87f0..79d1a31754 100644
--- a/newsletter/locale/ru/fusiondirectory.po
+++ b/newsletter/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po
index e0b195b6d6..8725b9caa3 100644
--- a/newsletter/locale/ru@petr1708/fusiondirectory.po
+++ b/newsletter/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po
index 303ea80201..7806056326 100644
--- a/newsletter/locale/sv/fusiondirectory.po
+++ b/newsletter/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/tr_TR/fusiondirectory.po b/newsletter/locale/tr_TR/fusiondirectory.po
index bfe16bd16b..1c32479877 100644
--- a/newsletter/locale/tr_TR/fusiondirectory.po
+++ b/newsletter/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po
index 3631e6d53d..2b2392aaa5 100644
--- a/newsletter/locale/ug/fusiondirectory.po
+++ b/newsletter/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po
index 370d067f7c..7c79fe3213 100644
--- a/newsletter/locale/vi_VN/fusiondirectory.po
+++ b/newsletter/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po
index 8b1cdeeed2..679b7b37e0 100644
--- a/newsletter/locale/zh/fusiondirectory.po
+++ b/newsletter/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh_TW/fusiondirectory.po b/newsletter/locale/zh_TW/fusiondirectory.po
index 7872c0d6ad..cd2b550bc4 100644
--- a/newsletter/locale/zh_TW/fusiondirectory.po
+++ b/newsletter/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/af_ZA/fusiondirectory.po b/opsi/locale/af_ZA/fusiondirectory.po
index bcbdf814be..5bc2c3181c 100644
--- a/opsi/locale/af_ZA/fusiondirectory.po
+++ b/opsi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po
index 9bbd980422..43f1c98ab6 100644
--- a/opsi/locale/ar/fusiondirectory.po
+++ b/opsi/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po
index cadbdc256b..70befe0b94 100644
--- a/opsi/locale/ca/fusiondirectory.po
+++ b/opsi/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po
index 22cccebaf2..0484045e03 100644
--- a/opsi/locale/cs_CZ/fusiondirectory.po
+++ b/opsi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po
index e3d5ce6664..ff01a77dbb 100644
--- a/opsi/locale/de/fusiondirectory.po
+++ b/opsi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po
index 60a0ba2365..9a643cfb65 100644
--- a/opsi/locale/el_GR/fusiondirectory.po
+++ b/opsi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po
index 79a39a35e1..90fe8fc99e 100644
--- a/opsi/locale/es/fusiondirectory.po
+++ b/opsi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po
index 910219cb81..43ea0c9beb 100644
--- a/opsi/locale/es_CO/fusiondirectory.po
+++ b/opsi/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po
index 41ba76fb0f..7fb099fae4 100644
--- a/opsi/locale/es_VE/fusiondirectory.po
+++ b/opsi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po
index 7ade493803..0d4cde7909 100644
--- a/opsi/locale/fa_IR/fusiondirectory.po
+++ b/opsi/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po
index ff30ccbf2f..2d79498fcf 100644
--- a/opsi/locale/fi_FI/fusiondirectory.po
+++ b/opsi/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po
index 5ef64a3223..80bc2f6cee 100644
--- a/opsi/locale/fr/fusiondirectory.po
+++ b/opsi/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po
index 6327371320..59d5dbb9ef 100644
--- a/opsi/locale/hu_HU/fusiondirectory.po
+++ b/opsi/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po
index 5f62e8ca40..4ab286396d 100644
--- a/opsi/locale/id/fusiondirectory.po
+++ b/opsi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index d4a385638a..e304cfc1b3 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/opsi/locale/ja/fusiondirectory.po b/opsi/locale/ja/fusiondirectory.po
index bcefa88e94..0e897a7cf8 100644
--- a/opsi/locale/ja/fusiondirectory.po
+++ b/opsi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ko/fusiondirectory.po b/opsi/locale/ko/fusiondirectory.po
index 26efdc9f8d..4a1dfc194f 100644
--- a/opsi/locale/ko/fusiondirectory.po
+++ b/opsi/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -340,7 +340,7 @@ msgstr ""
 
 #: admin/systems/opsi/class_opsiClient.inc:368
 msgid "Never"
-msgstr ""
+msgstr "제한없음"
 
 #: config/opsi/class_opsiConfig.inc:28
 msgid "OPSI configuration"
diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po
index a99d8d7e04..b88dbbe3d2 100644
--- a/opsi/locale/lv/fusiondirectory.po
+++ b/opsi/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po
index 3aeeec9290..071fa902d1 100644
--- a/opsi/locale/nb/fusiondirectory.po
+++ b/opsi/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po
index 6d3417b12c..164450c164 100644
--- a/opsi/locale/nl/fusiondirectory.po
+++ b/opsi/locale/nl/fusiondirectory.po
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po
index dade03c3bf..6340a4bc5c 100644
--- a/opsi/locale/pl/fusiondirectory.po
+++ b/opsi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po
index 92a327abed..9317b2469e 100644
--- a/opsi/locale/pt/fusiondirectory.po
+++ b/opsi/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po
index 1194ceb1df..1fe6a37421 100644
--- a/opsi/locale/pt_BR/fusiondirectory.po
+++ b/opsi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po
index 560ff84fa4..0e1c3a780c 100644
--- a/opsi/locale/ru/fusiondirectory.po
+++ b/opsi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po
index 642df8e2ed..0eede09427 100644
--- a/opsi/locale/ru@petr1708/fusiondirectory.po
+++ b/opsi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po
index 2a01e4bced..919de7817b 100644
--- a/opsi/locale/sv/fusiondirectory.po
+++ b/opsi/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/opsi/locale/tr_TR/fusiondirectory.po b/opsi/locale/tr_TR/fusiondirectory.po
index 6514edc179..b97e467a63 100644
--- a/opsi/locale/tr_TR/fusiondirectory.po
+++ b/opsi/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -246,7 +250,7 @@ msgstr ""
 #: admin/systems/opsi/class_opsiLogView.inc:113
 #: addons/dashboard/class_dashBoardOpsi.inc:91
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/systems/opsi/class_opsiClient.inc:36
 msgid "OPSI client"
diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po
index 1c34489c3d..c6811cec83 100644
--- a/opsi/locale/ug/fusiondirectory.po
+++ b/opsi/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po
index d7904bfd2f..1ef5f1e6a6 100644
--- a/opsi/locale/vi_VN/fusiondirectory.po
+++ b/opsi/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po
index d0a204db55..3314c00849 100644
--- a/opsi/locale/zh/fusiondirectory.po
+++ b/opsi/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/opsi/locale/zh_TW/fusiondirectory.po b/opsi/locale/zh_TW/fusiondirectory.po
index a5105500fe..a5298d41d6 100644
--- a/opsi/locale/zh_TW/fusiondirectory.po
+++ b/opsi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/af_ZA/fusiondirectory.po b/personal/locale/af_ZA/fusiondirectory.po
index 06d924a02a..f21c1db228 100644
--- a/personal/locale/af_ZA/fusiondirectory.po
+++ b/personal/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po
index 011866d55b..18018881a7 100644
--- a/personal/locale/ar/fusiondirectory.po
+++ b/personal/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po
index 82e7a2fd05..23fcc9bcc7 100644
--- a/personal/locale/ca/fusiondirectory.po
+++ b/personal/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po
index 8bd774385b..3949344633 100644
--- a/personal/locale/cs_CZ/fusiondirectory.po
+++ b/personal/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po
index 3f8ac6136b..ef50caf1da 100644
--- a/personal/locale/de/fusiondirectory.po
+++ b/personal/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po
index db59dbbf53..5d973220f4 100644
--- a/personal/locale/el_GR/fusiondirectory.po
+++ b/personal/locale/el_GR/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
+# LOUKAS SKOUROLIAKOS, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
+"Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -110,7 +111,7 @@ msgstr "Χώρα"
 
 #: personal/personal/class_personalInfo.inc:132
 msgid "Start date"
-msgstr ""
+msgstr "Ημερομηνία Εκκίνησης "
 
 #: personal/personal/class_personalInfo.inc:132
 msgid "Date this user joined the company"
diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po
index 1de0222a18..d33f0d92ef 100644
--- a/personal/locale/es/fusiondirectory.po
+++ b/personal/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po
index 057cc32ded..daf5beb40c 100644
--- a/personal/locale/es_CO/fusiondirectory.po
+++ b/personal/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po
index 9a9f238085..86c6f04235 100644
--- a/personal/locale/es_VE/fusiondirectory.po
+++ b/personal/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po
index 1b950119d0..500083fdc5 100644
--- a/personal/locale/fa_IR/fusiondirectory.po
+++ b/personal/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po
index d632edc732..08f653e0b1 100644
--- a/personal/locale/fi_FI/fusiondirectory.po
+++ b/personal/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po
index ef81506227..44c9df5b79 100644
--- a/personal/locale/fr/fusiondirectory.po
+++ b/personal/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po
index 5197ebdb6e..448b2cc264 100644
--- a/personal/locale/hu_HU/fusiondirectory.po
+++ b/personal/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po
index 7f406f2a2b..0486f6a6bf 100644
--- a/personal/locale/id/fusiondirectory.po
+++ b/personal/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index ff668a5068..a8f3f551cc 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/personal/locale/ja/fusiondirectory.po b/personal/locale/ja/fusiondirectory.po
index a5f6884ab8..c4382a2aa8 100644
--- a/personal/locale/ja/fusiondirectory.po
+++ b/personal/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ko/fusiondirectory.po b/personal/locale/ko/fusiondirectory.po
index db3125e800..74e479d1af 100644
--- a/personal/locale/ko/fusiondirectory.po
+++ b/personal/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po
index d36c6890d8..c71b8fac1d 100644
--- a/personal/locale/lv/fusiondirectory.po
+++ b/personal/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po
index 6f980b7b33..bb879bd2a7 100644
--- a/personal/locale/nb/fusiondirectory.po
+++ b/personal/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po
index 956ee95b4a..744b9b12c5 100644
--- a/personal/locale/nl/fusiondirectory.po
+++ b/personal/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po
index 3d73ad7e28..6d9fc00055 100644
--- a/personal/locale/pl/fusiondirectory.po
+++ b/personal/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po
index f8222ca7d8..8202551bd8 100644
--- a/personal/locale/pt/fusiondirectory.po
+++ b/personal/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po
index a5bf07e956..7c9140763d 100644
--- a/personal/locale/pt_BR/fusiondirectory.po
+++ b/personal/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po
index 5078246067..2ac3fc69cc 100644
--- a/personal/locale/ru/fusiondirectory.po
+++ b/personal/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po
index e75767ce40..0490f4435f 100644
--- a/personal/locale/ru@petr1708/fusiondirectory.po
+++ b/personal/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po
index d77192ffa3..787efa1258 100644
--- a/personal/locale/sv/fusiondirectory.po
+++ b/personal/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/personal/locale/tr_TR/fusiondirectory.po b/personal/locale/tr_TR/fusiondirectory.po
index d5a304df1c..d0b1acf6b7 100644
--- a/personal/locale/tr_TR/fusiondirectory.po
+++ b/personal/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po
index fb37785764..d9d6faeaaa 100644
--- a/personal/locale/ug/fusiondirectory.po
+++ b/personal/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po
index ebbe2d0434..820d96d758 100644
--- a/personal/locale/vi_VN/fusiondirectory.po
+++ b/personal/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po
index 3399fcd860..5f24fb9b79 100644
--- a/personal/locale/zh/fusiondirectory.po
+++ b/personal/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/personal/locale/zh_TW/fusiondirectory.po b/personal/locale/zh_TW/fusiondirectory.po
index e78167047f..c930e40507 100644
--- a/personal/locale/zh_TW/fusiondirectory.po
+++ b/personal/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/af_ZA/fusiondirectory.po b/posix/locale/af_ZA/fusiondirectory.po
index 510288c5eb..baae8f67af 100644
--- a/posix/locale/af_ZA/fusiondirectory.po
+++ b/posix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ar/fusiondirectory.po b/posix/locale/ar/fusiondirectory.po
index 86d90e1c1f..a83d8fa10d 100644
--- a/posix/locale/ar/fusiondirectory.po
+++ b/posix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/posix/locale/ca/fusiondirectory.po b/posix/locale/ca/fusiondirectory.po
index 98764a7541..b54f138d88 100644
--- a/posix/locale/ca/fusiondirectory.po
+++ b/posix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/posix/locale/cs_CZ/fusiondirectory.po b/posix/locale/cs_CZ/fusiondirectory.po
index 2279805c6d..4f8e00f63b 100644
--- a/posix/locale/cs_CZ/fusiondirectory.po
+++ b/posix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/posix/locale/de/fusiondirectory.po b/posix/locale/de/fusiondirectory.po
index 8f1549f825..f8fd86f931 100644
--- a/posix/locale/de/fusiondirectory.po
+++ b/posix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/posix/locale/el_GR/fusiondirectory.po b/posix/locale/el_GR/fusiondirectory.po
index ee8587e341..c134916f20 100644
--- a/posix/locale/el_GR/fusiondirectory.po
+++ b/posix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/posix/locale/es/fusiondirectory.po b/posix/locale/es/fusiondirectory.po
index b72839b07b..8866e62b32 100644
--- a/posix/locale/es/fusiondirectory.po
+++ b/posix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/posix/locale/es_CO/fusiondirectory.po b/posix/locale/es_CO/fusiondirectory.po
index bc97875ee3..2ed46e850d 100644
--- a/posix/locale/es_CO/fusiondirectory.po
+++ b/posix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/posix/locale/es_VE/fusiondirectory.po b/posix/locale/es_VE/fusiondirectory.po
index 0ab13d2e8a..ad72765942 100644
--- a/posix/locale/es_VE/fusiondirectory.po
+++ b/posix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/posix/locale/fa_IR/fusiondirectory.po b/posix/locale/fa_IR/fusiondirectory.po
index f15cfa689a..576cfd5d06 100644
--- a/posix/locale/fa_IR/fusiondirectory.po
+++ b/posix/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/posix/locale/fi_FI/fusiondirectory.po b/posix/locale/fi_FI/fusiondirectory.po
index 48b1dc0870..52dfbedbce 100644
--- a/posix/locale/fi_FI/fusiondirectory.po
+++ b/posix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/posix/locale/fr/fusiondirectory.po b/posix/locale/fr/fusiondirectory.po
index 124cc4cd13..02b260cd54 100644
--- a/posix/locale/fr/fusiondirectory.po
+++ b/posix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/posix/locale/hu_HU/fusiondirectory.po b/posix/locale/hu_HU/fusiondirectory.po
index 9722850609..b1f95510bd 100644
--- a/posix/locale/hu_HU/fusiondirectory.po
+++ b/posix/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/posix/locale/id/fusiondirectory.po b/posix/locale/id/fusiondirectory.po
index 9ebabc10e1..4fb4981788 100644
--- a/posix/locale/id/fusiondirectory.po
+++ b/posix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index 9a5670ada7..1a1c71729e 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/posix/locale/ja/fusiondirectory.po b/posix/locale/ja/fusiondirectory.po
index cc6f3e323c..ff61ce6c41 100644
--- a/posix/locale/ja/fusiondirectory.po
+++ b/posix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ko/fusiondirectory.po b/posix/locale/ko/fusiondirectory.po
index acc78bf8df..70aefd1f10 100644
--- a/posix/locale/ko/fusiondirectory.po
+++ b/posix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/posix/locale/lv/fusiondirectory.po b/posix/locale/lv/fusiondirectory.po
index b935528e78..c514a1c517 100644
--- a/posix/locale/lv/fusiondirectory.po
+++ b/posix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/posix/locale/nb/fusiondirectory.po b/posix/locale/nb/fusiondirectory.po
index d3ff6971ac..f1dae61df3 100644
--- a/posix/locale/nb/fusiondirectory.po
+++ b/posix/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/posix/locale/nl/fusiondirectory.po b/posix/locale/nl/fusiondirectory.po
index 2ef3d17ae5..051b959d0f 100644
--- a/posix/locale/nl/fusiondirectory.po
+++ b/posix/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/posix/locale/pl/fusiondirectory.po b/posix/locale/pl/fusiondirectory.po
index 8eb640ce44..a86f2a595e 100644
--- a/posix/locale/pl/fusiondirectory.po
+++ b/posix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/posix/locale/pt/fusiondirectory.po b/posix/locale/pt/fusiondirectory.po
index 869ebb339a..b5ad2a5ccb 100644
--- a/posix/locale/pt/fusiondirectory.po
+++ b/posix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/posix/locale/pt_BR/fusiondirectory.po b/posix/locale/pt_BR/fusiondirectory.po
index 7b7efde809..8b9a675224 100644
--- a/posix/locale/pt_BR/fusiondirectory.po
+++ b/posix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/posix/locale/ru/fusiondirectory.po b/posix/locale/ru/fusiondirectory.po
index 6670934b59..ad903b334e 100644
--- a/posix/locale/ru/fusiondirectory.po
+++ b/posix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/posix/locale/ru@petr1708/fusiondirectory.po b/posix/locale/ru@petr1708/fusiondirectory.po
index c426e3230e..a64cfa3f08 100644
--- a/posix/locale/ru@petr1708/fusiondirectory.po
+++ b/posix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/sv/fusiondirectory.po b/posix/locale/sv/fusiondirectory.po
index cd2181496b..e855e8bddd 100644
--- a/posix/locale/sv/fusiondirectory.po
+++ b/posix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/posix/locale/tr_TR/fusiondirectory.po b/posix/locale/tr_TR/fusiondirectory.po
index dd5ac60790..336d0d3f5f 100644
--- a/posix/locale/tr_TR/fusiondirectory.po
+++ b/posix/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -439,7 +443,7 @@ msgstr ""
 #: personal/posix/class_posixAccount.inc:900
 #: personal/posix/class_posixAccount.inc:962
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: personal/posix/class_posixAccount.inc:828
 #: personal/posix/class_posixAccount.inc:868
diff --git a/posix/locale/ug/fusiondirectory.po b/posix/locale/ug/fusiondirectory.po
index 993bbaa5ac..c110073815 100644
--- a/posix/locale/ug/fusiondirectory.po
+++ b/posix/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/vi_VN/fusiondirectory.po b/posix/locale/vi_VN/fusiondirectory.po
index 0b8690635b..bddf635a12 100644
--- a/posix/locale/vi_VN/fusiondirectory.po
+++ b/posix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/posix/locale/zh/fusiondirectory.po b/posix/locale/zh/fusiondirectory.po
index f4a0c439ef..00f52f1945 100644
--- a/posix/locale/zh/fusiondirectory.po
+++ b/posix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/posix/locale/zh_TW/fusiondirectory.po b/posix/locale/zh_TW/fusiondirectory.po
index 3c24c771c6..6dca78177c 100644
--- a/posix/locale/zh_TW/fusiondirectory.po
+++ b/posix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/af_ZA/fusiondirectory.po b/postfix/locale/af_ZA/fusiondirectory.po
index 74992ce7ff..f844877295 100644
--- a/postfix/locale/af_ZA/fusiondirectory.po
+++ b/postfix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po
index 7fdafb7511..a25efd2d5e 100644
--- a/postfix/locale/ar/fusiondirectory.po
+++ b/postfix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po
index 0166bcb09c..38acc65c5f 100644
--- a/postfix/locale/ca/fusiondirectory.po
+++ b/postfix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po
index f2699a4d14..42da7761cb 100644
--- a/postfix/locale/cs_CZ/fusiondirectory.po
+++ b/postfix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po
index 9bb3b8508d..d925a2d5d2 100644
--- a/postfix/locale/de/fusiondirectory.po
+++ b/postfix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po
index 0d3576db03..fbbdb1ebed 100644
--- a/postfix/locale/el_GR/fusiondirectory.po
+++ b/postfix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po
index a2424cdc03..d76a01f9f4 100644
--- a/postfix/locale/es/fusiondirectory.po
+++ b/postfix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po
index 4542fb4ccb..9e58e4d030 100644
--- a/postfix/locale/es_CO/fusiondirectory.po
+++ b/postfix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po
index be9b63059a..01aab0c981 100644
--- a/postfix/locale/es_VE/fusiondirectory.po
+++ b/postfix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po
index d739894744..09bd70a536 100644
--- a/postfix/locale/fa_IR/fusiondirectory.po
+++ b/postfix/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po
index e48e7da074..f99e6a4aa3 100644
--- a/postfix/locale/fi_FI/fusiondirectory.po
+++ b/postfix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po
index a7b5ce277a..5146598288 100644
--- a/postfix/locale/fr/fusiondirectory.po
+++ b/postfix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po
index 976ff4ae65..eec314a022 100644
--- a/postfix/locale/hu_HU/fusiondirectory.po
+++ b/postfix/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po
index df9e8c46fc..2ff5912bd6 100644
--- a/postfix/locale/id/fusiondirectory.po
+++ b/postfix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index d50466cf56..320fb9b4c7 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/postfix/locale/ja/fusiondirectory.po b/postfix/locale/ja/fusiondirectory.po
index d751f75bdc..8dff2e8c36 100644
--- a/postfix/locale/ja/fusiondirectory.po
+++ b/postfix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ko/fusiondirectory.po b/postfix/locale/ko/fusiondirectory.po
index b4301d8252..bdaf144756 100644
--- a/postfix/locale/ko/fusiondirectory.po
+++ b/postfix/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,11 +45,11 @@ msgstr "호스트"
 #: admin/systems/services/postfix/class_servicePostfix.inc:79
 #: admin/systems/services/postfix/class_servicePostfix.inc:131
 msgid "Domain"
-msgstr "도메"
+msgstr "도메인"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:79
 msgid "The domain."
-msgstr "도메"
+msgstr "도메인"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:84
 msgid "Max mail header size (KB)"
@@ -97,43 +97,43 @@ msgstr "전송 규칙"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:127
 msgid "Catchall table"
-msgstr ""
+msgstr "Catchall 테이블"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:131
 msgid "Domain concerned by this catchall rule"
-msgstr ""
+msgstr "이 catchall 규칙이 관련된 도메인"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:135
 msgid "Recipient"
-msgstr ""
+msgstr "수신자"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:135
 msgid "Recipient mail address for this catchall rule"
-msgstr ""
+msgstr "이 catchall 규칙의 수신자 메일 주소"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:141
 msgid "Domain alias table"
-msgstr ""
+msgstr "도메인 별칭 테이블"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:145
 msgid "From"
-msgstr ""
+msgstr "보낸사람"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:145
 msgid "Domain concerned by this alias rule"
-msgstr ""
+msgstr "이 별칭 규칙이 관련된 도메인"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:149
 msgid "To"
-msgstr ""
+msgstr "받는사람"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:149
 msgid "Recipient domain for this alias rule"
-msgstr ""
+msgstr "이 별칭 규칙의 받는사람 도메인"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:157
 msgid "Restrictions"
-msgstr "제"
+msgstr "제한"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:161
 msgid "Restrictions for sender"
@@ -145,7 +145,7 @@ msgstr "발신자의 경우"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:175
 msgid "Restrictions for recipient"
-msgstr "수신자 제"
+msgstr "수신자 제한"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:184
 msgid "For recipient"
diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po
index a099117e2c..5a5c668696 100644
--- a/postfix/locale/lv/fusiondirectory.po
+++ b/postfix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po
index b982435b1d..9c541a559f 100644
--- a/postfix/locale/nb/fusiondirectory.po
+++ b/postfix/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po
index ff07e4facf..560b23d6ca 100644
--- a/postfix/locale/nl/fusiondirectory.po
+++ b/postfix/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po
index ddd768be72..58f28b573a 100644
--- a/postfix/locale/pl/fusiondirectory.po
+++ b/postfix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po
index 4a9ec6b9db..8c0a9e8edf 100644
--- a/postfix/locale/pt/fusiondirectory.po
+++ b/postfix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po
index 1a5057ba2c..d4d34561db 100644
--- a/postfix/locale/pt_BR/fusiondirectory.po
+++ b/postfix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po
index d98e82006e..8ea3543308 100644
--- a/postfix/locale/ru/fusiondirectory.po
+++ b/postfix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po
index 433f6ba2ab..7e441282de 100644
--- a/postfix/locale/ru@petr1708/fusiondirectory.po
+++ b/postfix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po
index fa93db6df2..d0b28009a4 100644
--- a/postfix/locale/sv/fusiondirectory.po
+++ b/postfix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/postfix/locale/tr_TR/fusiondirectory.po b/postfix/locale/tr_TR/fusiondirectory.po
index 897e415e8c..2e0ed02214 100644
--- a/postfix/locale/tr_TR/fusiondirectory.po
+++ b/postfix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po
index 816446d61c..2c8d030fd0 100644
--- a/postfix/locale/ug/fusiondirectory.po
+++ b/postfix/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po
index 09c256765c..f10636cb18 100644
--- a/postfix/locale/vi_VN/fusiondirectory.po
+++ b/postfix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po
index d6dbb3b235..bee01cb2e9 100644
--- a/postfix/locale/zh/fusiondirectory.po
+++ b/postfix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/postfix/locale/zh_TW/fusiondirectory.po b/postfix/locale/zh_TW/fusiondirectory.po
index cc4eb6e407..be3a92fdf1 100644
--- a/postfix/locale/zh_TW/fusiondirectory.po
+++ b/postfix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/af_ZA/fusiondirectory.po b/ppolicy/locale/af_ZA/fusiondirectory.po
index 826f36962e..80c7982005 100644
--- a/ppolicy/locale/af_ZA/fusiondirectory.po
+++ b/ppolicy/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po
index b32367c250..fdff9264e7 100644
--- a/ppolicy/locale/ar/fusiondirectory.po
+++ b/ppolicy/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po
index 22b3b316b2..6a2640d6eb 100644
--- a/ppolicy/locale/ca/fusiondirectory.po
+++ b/ppolicy/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po
index 6bbd5820d5..6486690f6a 100644
--- a/ppolicy/locale/cs_CZ/fusiondirectory.po
+++ b/ppolicy/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po
index c6c0c158dd..86aeaec5e6 100644
--- a/ppolicy/locale/de/fusiondirectory.po
+++ b/ppolicy/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po
index c4bff63772..a45632f233 100644
--- a/ppolicy/locale/el_GR/fusiondirectory.po
+++ b/ppolicy/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po
index 804a38653a..0234238d16 100644
--- a/ppolicy/locale/es/fusiondirectory.po
+++ b/ppolicy/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po
index 4e5e171631..bda856da06 100644
--- a/ppolicy/locale/es_CO/fusiondirectory.po
+++ b/ppolicy/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po
index 0ba83736d8..3a9802cc08 100644
--- a/ppolicy/locale/es_VE/fusiondirectory.po
+++ b/ppolicy/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po
index 76d72e6d9f..5c6c85106b 100644
--- a/ppolicy/locale/fa_IR/fusiondirectory.po
+++ b/ppolicy/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po
index 5626581d4b..37d311de9b 100644
--- a/ppolicy/locale/fi_FI/fusiondirectory.po
+++ b/ppolicy/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po
index cd5a035db1..ce6a389c2b 100644
--- a/ppolicy/locale/fr/fusiondirectory.po
+++ b/ppolicy/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po
index 06e6d0de0d..0d17000444 100644
--- a/ppolicy/locale/hu_HU/fusiondirectory.po
+++ b/ppolicy/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po
index a4afb8a8f1..b9c8f47de7 100644
--- a/ppolicy/locale/id/fusiondirectory.po
+++ b/ppolicy/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po
index 132dce07e0..69733e4890 100644
--- a/ppolicy/locale/it_IT/fusiondirectory.po
+++ b/ppolicy/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ppolicy/locale/ja/fusiondirectory.po b/ppolicy/locale/ja/fusiondirectory.po
index a034370827..76af272d60 100644
--- a/ppolicy/locale/ja/fusiondirectory.po
+++ b/ppolicy/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ko/fusiondirectory.po b/ppolicy/locale/ko/fusiondirectory.po
index db01fd7219..40c1418db0 100644
--- a/ppolicy/locale/ko/fusiondirectory.po
+++ b/ppolicy/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -23,30 +23,30 @@ msgstr ""
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
-msgstr ""
+msgstr "패스워드 정책"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:30
 msgid "Password policies management"
-msgstr ""
+msgstr "패스워드 정책 관리"
 
 #: admin/ppolicy/class_ppolicy.inc:32 admin/ppolicy/class_ppolicy.inc:35
 #: personal/ppolicy/class_ppolicyAccount.inc:29
 #: personal/ppolicy/class_ppolicyAccount.inc:44
 msgid "Password policy"
-msgstr ""
+msgstr "패스워드 정책"
 
 #: admin/ppolicy/class_ppolicy.inc:33
 msgid "Password policy for ppolicy overlay"
-msgstr ""
+msgstr "ppolicy 오버레이에 대한 비밀번호 정책"
 
 #: admin/ppolicy/class_ppolicy.inc:51
 #: personal/ppolicy/class_ppolicyAccount.inc:47
 msgid "Policy"
-msgstr ""
+msgstr "ì •ì±…"
 
 #: admin/ppolicy/class_ppolicy.inc:56
 msgid "Policy name"
-msgstr ""
+msgstr "정책명"
 
 #: admin/ppolicy/class_ppolicy.inc:60
 msgid "Description"
@@ -54,27 +54,27 @@ msgstr "설명"
 
 #: admin/ppolicy/class_ppolicy.inc:60
 msgid "A short description of this policy"
-msgstr ""
+msgstr "정책에 대한 간략한 설명"
 
 #: admin/ppolicy/class_ppolicy.inc:64
 msgid "Minimum length"
-msgstr ""
+msgstr "최대 길이"
 
 #: admin/ppolicy/class_ppolicy.inc:64
 msgid ""
 "Minimum length of the user supplied password - passwords shorter than this "
 "value will be rejected"
-msgstr ""
+msgstr "사용자 비밀번호의 최소 길이 - 이 값보다 짧은 비밀번호는 거부됩니다."
 
 #: admin/ppolicy/class_ppolicy.inc:69
 msgid "Passwords in history"
-msgstr ""
+msgstr "이전 이력의 비밀번호"
 
 #: admin/ppolicy/class_ppolicy.inc:69
 msgid ""
 "Number of passwords that are maintained in a list of previously used "
 "passwords"
-msgstr ""
+msgstr "이전에 사용한 비밀번호 목록에서 관리되는 비밀번호 수"
 
 #: admin/ppolicy/class_ppolicy.inc:74
 msgid "Minimum password age"
@@ -82,7 +82,7 @@ msgstr "최소 암호 사용 기간"
 
 #: admin/ppolicy/class_ppolicy.inc:74
 msgid "Minimum time between password changes"
-msgstr ""
+msgstr "비밀번호 변경 사이의 최소 시간"
 
 #: admin/ppolicy/class_ppolicy.inc:79
 msgid "Maximum password age"
@@ -94,53 +94,55 @@ msgid ""
 "usable and any bind operations attempted with the expired password will be "
 "treated as invalid"
 msgstr ""
+"비밀번호가 유효한 최대 시간이며, 그 이후에는 더 이상 사용할 수없는 것으로 간주되며 만료된 비밀번호로 시도한 바인드 조작은 유효하지 "
+"않은 것으로 간주됩니다."
 
 #: admin/ppolicy/class_ppolicy.inc:84
 msgid "Expiry warning delay"
-msgstr ""
+msgstr "만료 경고 지연"
 
 #: admin/ppolicy/class_ppolicy.inc:84
 msgid ""
 "Defines the start time - in seconds - prior to the password expiry that "
 "password expiry warning messages are returned in bind responses. 0 to "
 "disable"
-msgstr ""
+msgstr "비밀번호 만기 경고 메시지가 바인드 응답으로 리턴되는 비밀번호 만기 전의 시작 시간 (초)을 정의합니다. 비활성화하려면 0"
 
 #: admin/ppolicy/class_ppolicy.inc:89
 msgid "Grace period"
-msgstr ""
+msgstr "유예 기간"
 
 #: admin/ppolicy/class_ppolicy.inc:89
 msgid ""
 "Number of times a user is allowed to successfully bind using an expired "
 "password"
-msgstr ""
+msgstr "만료된 비밀번호를 사용하여 사용자가 바인드 할 수 있는 횟수"
 
 #: admin/ppolicy/class_ppolicy.inc:94
 msgid "Allow user change"
-msgstr ""
+msgstr "사용자 변경 허용"
 
 #: admin/ppolicy/class_ppolicy.inc:94
 msgid "Whether users are allowed to change their own passwords"
-msgstr ""
+msgstr "사용자가 자신의 비밀번호를 변경할 수 있는지 여부"
 
 #: admin/ppolicy/class_ppolicy.inc:99
 msgid "Safe modify"
-msgstr ""
+msgstr "안전한 수정"
 
 #: admin/ppolicy/class_ppolicy.inc:99
 msgid ""
 "Whether a user must send the current password during a password modification"
 " operation"
-msgstr ""
+msgstr "비밀번호 수정 조작 중에 사용자가 현재 비밀번호를 보내야하는지 여부"
 
 #: admin/ppolicy/class_ppolicy.inc:104
 msgid "Check quality"
-msgstr ""
+msgstr "품질 점검"
 
 #: admin/ppolicy/class_ppolicy.inc:104
 msgid "Decides what to do if the function in \"Check module\" is not available"
-msgstr ""
+msgstr "\"모듈 점검\"의 기능을 사용할 수없는 경우 수행 할 조치를 결정합니다."
 
 #: admin/ppolicy/class_ppolicy.inc:107
 msgid "Disabled"
@@ -152,11 +154,11 @@ msgstr "오류 무시"
 
 #: admin/ppolicy/class_ppolicy.inc:107
 msgid "Reject on errors"
-msgstr ""
+msgstr "오류 거부"
 
 #: admin/ppolicy/class_ppolicy.inc:110
 msgid "Check module"
-msgstr ""
+msgstr "모듈 점검"
 
 #: admin/ppolicy/class_ppolicy.inc:110
 msgid ""
@@ -164,104 +166,106 @@ msgid ""
 " perform password quality checks and is only relevant if pwdCheckQuality is "
 "either 1 or 2"
 msgstr ""
+"비밀번호 품질 점검을 수행하기 위해 호출되며 pwdCheckQuality가 1 또는 2 인 경우에만 관련된 사용자 제공 비밀번호 품질 "
+"점검 모듈의 이름"
 
 #: admin/ppolicy/class_ppolicy.inc:116
 msgid "Lock out"
-msgstr ""
+msgstr "잠금"
 
 #: admin/ppolicy/class_ppolicy.inc:120
 msgid "Activate lock out"
-msgstr ""
+msgstr "잠금 활성화"
 
 #: admin/ppolicy/class_ppolicy.inc:120
 msgid ""
 "Whether to lock an account that had more consecutive failed bind attempts "
 "with invalid passwords than is defined by \"Maximum failures\""
-msgstr ""
+msgstr "\"Maximum failures\"에 정의 된 것보다 유효하지 않은 암호로 바인드 시도가 연속적으로 실패한 계정을 잠글지 여부"
 
 #: admin/ppolicy/class_ppolicy.inc:125
 msgid "Lock out duration"
-msgstr ""
+msgstr "잠금 기간"
 
 #: admin/ppolicy/class_ppolicy.inc:125
 msgid ""
 "Time the account remains locked after an automatic lock out (0 means for "
 "ever)"
-msgstr ""
+msgstr "자동 잠금 후에도 계정이 잠긴 상태로 유지되는 시간 (0은 영원히)"
 
 #: admin/ppolicy/class_ppolicy.inc:130
 msgid "Maximum failures"
-msgstr ""
+msgstr "최대 실패"
 
 #: admin/ppolicy/class_ppolicy.inc:130
 msgid ""
 "Number of consecutive password failures allowed before automatic lock out"
-msgstr ""
+msgstr "자동 잠금 전에 허용되는 연속 암호 실패 횟수"
 
 #: admin/ppolicy/class_ppolicy.inc:135
 msgid "Failure count interval"
-msgstr ""
+msgstr "실패 횟수 간격"
 
 #: admin/ppolicy/class_ppolicy.inc:135
 msgid ""
 "Time after which the count of consecutive password failures is reset even if"
 " no successful authentication has occurred"
-msgstr ""
+msgstr "성공적인 인증이 수행되지 않은 경우에도 연속 비밀번호 실패 횟수가 재설정되는 시간"
 
 #: admin/ppolicy/class_ppolicy.inc:140
 msgid "Must change"
-msgstr ""
+msgstr "반드시 변경"
 
 #: admin/ppolicy/class_ppolicy.inc:140
 msgid ""
 "Whether the user must change their password after an account is reset by an "
 "administrator following an automatic lockout"
-msgstr ""
+msgstr "관리자가 자동 ​​잠금 후 계정을 재설정 한 후 사용자가 비밀번호를 변경해야하는지 여부"
 
 #: config/ppolicy/class_ppolicyConfig.inc:29
 msgid "Ppolicy plugin configuration"
-msgstr ""
+msgstr "Ppolicy 플러그인 구성"
 
 #: config/ppolicy/class_ppolicyConfig.inc:30
 msgid "FusionDirectory ppolicy plugin configuration"
-msgstr ""
+msgstr "FusionDirectory ppolicy 플러그인 구성"
 
 #: config/ppolicy/class_ppolicyConfig.inc:43
 msgid "Ppolicy plugin"
-msgstr ""
+msgstr "Ppolicy 플러그인"
 
 #: config/ppolicy/class_ppolicyConfig.inc:46
 msgid "Ppolicy RDN"
-msgstr ""
+msgstr "Ppolicy RDN"
 
 #: config/ppolicy/class_ppolicyConfig.inc:46
 msgid "Branch in which ppolicies will be stored"
-msgstr ""
+msgstr "정책이 저장 될 브랜치"
 
 #: config/ppolicy/class_ppolicyConfig.inc:51
 msgid "Default ppolicy cn"
-msgstr ""
+msgstr "기본 ppolicy cn"
 
 #: config/ppolicy/class_ppolicyConfig.inc:51
 msgid "What you put as default ppolicy in the overlay config"
-msgstr ""
+msgstr "오버레이 설정에서 기본 정책으로 설정한 사항"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:27
 msgid "Ppolicy"
-msgstr ""
+msgstr "Ppolicy"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:28
 msgid "Statistics about ppolicy expired users"
-msgstr ""
+msgstr "ppolicy가 만료된 사용자에 대한 통계"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:40
 msgid "Expired accounts"
-msgstr ""
+msgstr "만료된 계정"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:45
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:8
 msgid "Locked accounts"
-msgstr ""
+msgstr "잠긴 계정"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:58
 msgid "Login"
@@ -275,7 +279,7 @@ msgstr "명칭"
 #: addons/dashboard/class_dashBoardPPolicy.inc:60
 #: addons/dashboard/class_dashBoardPPolicy.inc:66
 msgid "Phone number"
-msgstr ""
+msgstr "전화 번호"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:61
 msgid "Expiration date"
@@ -283,7 +287,7 @@ msgstr "만료일자"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:65
 msgid "Email"
-msgstr ""
+msgstr "이메일"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:86
 #: addons/dashboard/class_dashBoardPPolicy.inc:139
@@ -293,103 +297,103 @@ msgstr "설정 에러"
 #: addons/dashboard/class_dashBoardPPolicy.inc:87
 #, php-format
 msgid "Default ppolicy \"%s\" could not be found in the LDAP!"
-msgstr ""
+msgstr "LDAP에서 기본 ppolicy \"%s\"를 찾을 수 없습니다!"
 
 #: addons/dashboard/class_dashBoardPPolicy.inc:140
 #, php-format
 msgid "Ppolicy \"%s\" set for user \"%s\" could not be found in the LDAP!"
-msgstr ""
+msgstr "LDAP에서 사용자 \"%s\"에 대한 Ppolicy \"%s\" 세트를 찾을 수 없습니다!"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:30
 msgid "Edit user's password policy"
-msgstr ""
+msgstr "사용자 비밀번호 정책 편집"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:47
 msgid "Use a specific policy for this user"
-msgstr ""
+msgstr "이 사용자에 대한 특정 정책을 사용하십시오"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:51
 msgid "Last password change"
-msgstr ""
+msgstr "마지막 비밀번호 변경"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:51
 msgid "Last time the password for the entry was changed"
-msgstr ""
+msgstr "항목의 비밀번호가 마지막으로 변경된 시간"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:55
 msgid "Account locked time"
-msgstr ""
+msgstr "계정 잠금 시간"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:55
 msgid "Time the account was locked"
-msgstr ""
+msgstr "계정이 잠긴 시간"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:59
 msgid "Reset locking / force change"
-msgstr ""
+msgstr "잠금 /  강제변경 초기화"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:59
 msgid "Resets the lock status of this account and/or force a password change"
-msgstr ""
+msgstr "이 계정의 잠금 상태를 재설정하거나 비밀번호를 강제로 변경합니다"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:62
 msgid "Force password change (resets locking)"
-msgstr ""
+msgstr "비밀번호 변경 강제 실행 (잠금 재설정)"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:62
 msgid "Reset locking (same password)"
-msgstr ""
+msgstr "잠금 재설정 (동일한 비밀번호)"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:77
 msgid "Use the default"
-msgstr ""
+msgstr "기본값을 사용하십시오"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:83
 msgid "Never"
-msgstr ""
+msgstr "제한없음"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:90
 msgid "Unlocked"
-msgstr ""
+msgstr "잠금 해제"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:92
 msgid "Locked permanently"
-msgstr ""
+msgstr "영구적으로 잠김"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:2
 msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
-msgstr[0] ""
+msgstr[0] "잠긴 계정 %1 이 있습니다"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
-msgstr ""
+msgstr "잠긴 계정이 없습니다"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:11
 msgid "Manager concerned"
-msgstr "관심있는 관리자"
+msgstr "연관된 관리자"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:14
 msgid "uid"
-msgstr ""
+msgstr "uid"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:17
 msgid "cn"
-msgstr ""
+msgstr "cn"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:20
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:32
 msgid "telephoneNumber"
-msgstr ""
+msgstr "telephoneNumber"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:23
 msgid "pwdAccountLockedTime"
-msgstr ""
+msgstr "pwdAccountLockedTime"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:26
 msgid "manager"
-msgstr ""
+msgstr "관리자"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:29
 msgid "mail"
-msgstr ""
+msgstr "메일"
diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po
index fc71676897..45b8cdb0e2 100644
--- a/ppolicy/locale/lv/fusiondirectory.po
+++ b/ppolicy/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po
index eb233bf456..414804fff9 100644
--- a/ppolicy/locale/nb/fusiondirectory.po
+++ b/ppolicy/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po
index e2f55c35ab..a10674021b 100644
--- a/ppolicy/locale/nl/fusiondirectory.po
+++ b/ppolicy/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po
index 343e63c02b..f217c31baf 100644
--- a/ppolicy/locale/pl/fusiondirectory.po
+++ b/ppolicy/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po
index 2018d02206..a628ebe9cf 100644
--- a/ppolicy/locale/pt/fusiondirectory.po
+++ b/ppolicy/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po
index 25655782ac..a837270684 100644
--- a/ppolicy/locale/pt_BR/fusiondirectory.po
+++ b/ppolicy/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po
index 312fafdd52..e933002f5d 100644
--- a/ppolicy/locale/ru/fusiondirectory.po
+++ b/ppolicy/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po
index f562b1e66b..fb04a7dd53 100644
--- a/ppolicy/locale/ru@petr1708/fusiondirectory.po
+++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po
index 1ca4d683a1..2768ec2051 100644
--- a/ppolicy/locale/sv/fusiondirectory.po
+++ b/ppolicy/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ppolicy/locale/tr_TR/fusiondirectory.po b/ppolicy/locale/tr_TR/fusiondirectory.po
index e006267427..180e0fce6e 100644
--- a/ppolicy/locale/tr_TR/fusiondirectory.po
+++ b/ppolicy/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po
index b2efafe30b..36e5e0997c 100644
--- a/ppolicy/locale/ug/fusiondirectory.po
+++ b/ppolicy/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -356,6 +356,7 @@ msgstr ""
 msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
+msgstr[1] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po
index e54e277835..2fd2225f47 100644
--- a/ppolicy/locale/vi_VN/fusiondirectory.po
+++ b/ppolicy/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po
index 327b851f2b..f22a79f953 100644
--- a/ppolicy/locale/zh/fusiondirectory.po
+++ b/ppolicy/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ppolicy/locale/zh_TW/fusiondirectory.po b/ppolicy/locale/zh_TW/fusiondirectory.po
index 25efdd8fd8..2c47c246f8 100644
--- a/ppolicy/locale/zh_TW/fusiondirectory.po
+++ b/ppolicy/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/af_ZA/fusiondirectory.po b/puppet/locale/af_ZA/fusiondirectory.po
index 984dcd8a1f..4f58809331 100644
--- a/puppet/locale/af_ZA/fusiondirectory.po
+++ b/puppet/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po
index fa825f98fa..7810b4c05b 100644
--- a/puppet/locale/ar/fusiondirectory.po
+++ b/puppet/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po
index 949c90ad5d..39bc53de50 100644
--- a/puppet/locale/ca/fusiondirectory.po
+++ b/puppet/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po
index 214a7c5f38..c6bc267e48 100644
--- a/puppet/locale/cs_CZ/fusiondirectory.po
+++ b/puppet/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po
index 949cb791bd..0ab532caa6 100644
--- a/puppet/locale/de/fusiondirectory.po
+++ b/puppet/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po
index fab01611e4..7bc63fcfc6 100644
--- a/puppet/locale/el_GR/fusiondirectory.po
+++ b/puppet/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po
index e2a52bf9ce..a0188ad2ca 100644
--- a/puppet/locale/es/fusiondirectory.po
+++ b/puppet/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po
index 233142090b..9095548301 100644
--- a/puppet/locale/es_CO/fusiondirectory.po
+++ b/puppet/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po
index 14602ef047..68ad51e6c1 100644
--- a/puppet/locale/es_VE/fusiondirectory.po
+++ b/puppet/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po
index 49ed574aca..10ea88562f 100644
--- a/puppet/locale/fa_IR/fusiondirectory.po
+++ b/puppet/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po
index c1ec1fbb80..2ba847173b 100644
--- a/puppet/locale/fi_FI/fusiondirectory.po
+++ b/puppet/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po
index 1aa4101148..685d7d20e2 100644
--- a/puppet/locale/fr/fusiondirectory.po
+++ b/puppet/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po
index 04dff7ce56..8068e69348 100644
--- a/puppet/locale/hu_HU/fusiondirectory.po
+++ b/puppet/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po
index 7f5fbc0b64..79b6bae479 100644
--- a/puppet/locale/id/fusiondirectory.po
+++ b/puppet/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index 7fa16b4f29..61273f544e 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/puppet/locale/ja/fusiondirectory.po b/puppet/locale/ja/fusiondirectory.po
index 1a71de0ef8..98c3898943 100644
--- a/puppet/locale/ja/fusiondirectory.po
+++ b/puppet/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ko/fusiondirectory.po b/puppet/locale/ko/fusiondirectory.po
index ed24b691e4..50994971de 100644
--- a/puppet/locale/ko/fusiondirectory.po
+++ b/puppet/locale/ko/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# Choi Chris <chulwon.choi@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,70 +24,70 @@ msgstr ""
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
 msgid "Puppet server"
-msgstr ""
+msgstr "Puppet 서버"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:29
 msgid "This service allows you to use a puppet server"
-msgstr ""
+msgstr "이 서비스를 통해 퍼펫 서버를 사용할 수 있습니다"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:46
 msgid "Environments"
-msgstr ""
+msgstr "환경"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:47
 msgid "Available environments for puppet nodes"
-msgstr ""
+msgstr "퍼펫 노드에 사용 가능한 환경"
 
 #: admin/systems/puppet/class_puppetNode.inc:32
 msgid "Puppet node settings"
-msgstr ""
+msgstr "퍼펫 노드 설정"
 
 #: admin/systems/puppet/class_puppetNode.inc:35
 msgid "Puppet class"
-msgstr ""
+msgstr "퍼펫 클래스"
 
 #: admin/systems/puppet/class_puppetNode.inc:35
 msgid "Puppet Node Class"
-msgstr ""
+msgstr "퍼펫 노드 클래스"
 
 #: admin/systems/puppet/class_puppetNode.inc:37
 msgid "Parent node"
-msgstr ""
+msgstr "부모 노드"
 
 #: admin/systems/puppet/class_puppetNode.inc:37
 msgid "Puppet Parent Node"
-msgstr ""
+msgstr "퍼펫 부모 노드"
 
 #: admin/systems/puppet/class_puppetNode.inc:38
 msgid "Environment"
-msgstr ""
+msgstr "환경"
 
 #: admin/systems/puppet/class_puppetNode.inc:38
 msgid "Puppet Node Environment"
-msgstr ""
+msgstr "퍼펫 노드 환경"
 
 #: admin/systems/puppet/class_puppetNode.inc:41
 msgid "A variable setting for puppet"
-msgstr ""
+msgstr "퍼펫에 대한 변수 설정"
 
 #: admin/systems/puppet/class_puppetNode.inc:44
 msgid "Name of the variable"
-msgstr ""
+msgstr "변수 이름"
 
 #: admin/systems/puppet/class_puppetNode.inc:45
 msgid "Value of the variable"
-msgstr ""
+msgstr "변수의 값"
 
 #: admin/systems/puppet/class_puppetNode.inc:65
 msgid "Puppet"
-msgstr ""
+msgstr "퍼펫"
 
 #: admin/systems/puppet/class_puppetNode.inc:66
 msgid ""
 "Support for puppet schema in order to edit puppet classes and puppet vars"
-msgstr ""
+msgstr "퍼펫 클래스 및 퍼펫 변수를 편집하기위한 퍼펫 스키마 지원"
 
 #: admin/systems/puppet/class_puppetNode.inc:102
 msgid ""
 "You need to add the puppet service to a server to be able to use this tab"
-msgstr ""
+msgstr "이 탭을 사용하려면 서버에 퍼펫 서비스를 추가해야합니다"
diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po
index 370bd5f134..679cd2dfaf 100644
--- a/puppet/locale/lv/fusiondirectory.po
+++ b/puppet/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po
index c38e6df9e1..e36c8fdb7e 100644
--- a/puppet/locale/nb/fusiondirectory.po
+++ b/puppet/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po
index cc3e4f7cc2..9ef772f4c2 100644
--- a/puppet/locale/nl/fusiondirectory.po
+++ b/puppet/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po
index 3037fbab0b..411b4d94fb 100644
--- a/puppet/locale/pl/fusiondirectory.po
+++ b/puppet/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po
index 42f1a2766e..0973337919 100644
--- a/puppet/locale/pt/fusiondirectory.po
+++ b/puppet/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po
index 536148f150..10004670c3 100644
--- a/puppet/locale/pt_BR/fusiondirectory.po
+++ b/puppet/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po
index 04dfffa714..9d8be88637 100644
--- a/puppet/locale/ru/fusiondirectory.po
+++ b/puppet/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po
index fae3acf3ed..e923d21a9b 100644
--- a/puppet/locale/ru@petr1708/fusiondirectory.po
+++ b/puppet/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po
index 106c641476..1e18412049 100644
--- a/puppet/locale/sv/fusiondirectory.po
+++ b/puppet/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/puppet/locale/tr_TR/fusiondirectory.po b/puppet/locale/tr_TR/fusiondirectory.po
index 7b680d86cf..fde5066627 100644
--- a/puppet/locale/tr_TR/fusiondirectory.po
+++ b/puppet/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po
index 8632a4da2a..ef50ef1b5c 100644
--- a/puppet/locale/ug/fusiondirectory.po
+++ b/puppet/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po
index 3e18d782a5..d9b7ce2405 100644
--- a/puppet/locale/vi_VN/fusiondirectory.po
+++ b/puppet/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po
index e0afe93864..c37f7164c4 100644
--- a/puppet/locale/zh/fusiondirectory.po
+++ b/puppet/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/puppet/locale/zh_TW/fusiondirectory.po b/puppet/locale/zh_TW/fusiondirectory.po
index 22203f0735..439d50d405 100644
--- a/puppet/locale/zh_TW/fusiondirectory.po
+++ b/puppet/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/af_ZA/fusiondirectory.po b/pureftpd/locale/af_ZA/fusiondirectory.po
index 121684691c..80f58aacec 100644
--- a/pureftpd/locale/af_ZA/fusiondirectory.po
+++ b/pureftpd/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po
index 966fbd072d..8ad2d555f9 100644
--- a/pureftpd/locale/ar/fusiondirectory.po
+++ b/pureftpd/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po
index 44f9a33b03..21c38def38 100644
--- a/pureftpd/locale/ca/fusiondirectory.po
+++ b/pureftpd/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po
index 7d84f20628..4aca48e497 100644
--- a/pureftpd/locale/cs_CZ/fusiondirectory.po
+++ b/pureftpd/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po
index edd463c448..8db5c58034 100644
--- a/pureftpd/locale/de/fusiondirectory.po
+++ b/pureftpd/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po
index 12a756a4b8..4c37197faf 100644
--- a/pureftpd/locale/el_GR/fusiondirectory.po
+++ b/pureftpd/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po
index 6dc6bc8a0b..ca4ae9cf48 100644
--- a/pureftpd/locale/es/fusiondirectory.po
+++ b/pureftpd/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po
index b2dd93a840..bfc2002acf 100644
--- a/pureftpd/locale/es_CO/fusiondirectory.po
+++ b/pureftpd/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po
index 2284b8079e..3d47624ebc 100644
--- a/pureftpd/locale/es_VE/fusiondirectory.po
+++ b/pureftpd/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po
index 1a5b8fcaad..4bba7c064e 100644
--- a/pureftpd/locale/fa_IR/fusiondirectory.po
+++ b/pureftpd/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po
index 1ce50bb3ba..1780cfdd66 100644
--- a/pureftpd/locale/fi_FI/fusiondirectory.po
+++ b/pureftpd/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po
index ecf4da76e2..328b96115f 100644
--- a/pureftpd/locale/fr/fusiondirectory.po
+++ b/pureftpd/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po
index 4f4df58a52..9bf52b72c6 100644
--- a/pureftpd/locale/hu_HU/fusiondirectory.po
+++ b/pureftpd/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po
index 0e1c2f1420..42e4bd6c6c 100644
--- a/pureftpd/locale/id/fusiondirectory.po
+++ b/pureftpd/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po
index ee889e208f..52ce0d1ad6 100644
--- a/pureftpd/locale/it_IT/fusiondirectory.po
+++ b/pureftpd/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/pureftpd/locale/ja/fusiondirectory.po b/pureftpd/locale/ja/fusiondirectory.po
index 43289fbcae..86f0cdde9d 100644
--- a/pureftpd/locale/ja/fusiondirectory.po
+++ b/pureftpd/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ko/fusiondirectory.po b/pureftpd/locale/ko/fusiondirectory.po
index f1a18bf790..fdf3bf2fcb 100644
--- a/pureftpd/locale/ko/fusiondirectory.po
+++ b/pureftpd/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po
index d40ffff5de..1db7569676 100644
--- a/pureftpd/locale/lv/fusiondirectory.po
+++ b/pureftpd/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po
index fb218e0fe8..767ed86b6d 100644
--- a/pureftpd/locale/nb/fusiondirectory.po
+++ b/pureftpd/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po
index f7e7879a93..599cf39335 100644
--- a/pureftpd/locale/nl/fusiondirectory.po
+++ b/pureftpd/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po
index 8dc556d323..25f1b1ebe5 100644
--- a/pureftpd/locale/pl/fusiondirectory.po
+++ b/pureftpd/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po
index e03f0c7188..dc8ace9f6e 100644
--- a/pureftpd/locale/pt/fusiondirectory.po
+++ b/pureftpd/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po
index 225d34132f..7b8b440d8d 100644
--- a/pureftpd/locale/pt_BR/fusiondirectory.po
+++ b/pureftpd/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po
index b790b34d63..352bcdc7f9 100644
--- a/pureftpd/locale/ru/fusiondirectory.po
+++ b/pureftpd/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po
index b587e71e75..fdc7ae7869 100644
--- a/pureftpd/locale/ru@petr1708/fusiondirectory.po
+++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po
index 1c40c14e4d..bfa1058129 100644
--- a/pureftpd/locale/sv/fusiondirectory.po
+++ b/pureftpd/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/pureftpd/locale/tr_TR/fusiondirectory.po b/pureftpd/locale/tr_TR/fusiondirectory.po
index 9a95c4c796..9d2bb2a112 100644
--- a/pureftpd/locale/tr_TR/fusiondirectory.po
+++ b/pureftpd/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po
index df3db10b47..fed2a27dcd 100644
--- a/pureftpd/locale/ug/fusiondirectory.po
+++ b/pureftpd/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po
index 5aa2021920..b5c2ae2671 100644
--- a/pureftpd/locale/vi_VN/fusiondirectory.po
+++ b/pureftpd/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po
index f61be89b07..251de81855 100644
--- a/pureftpd/locale/zh/fusiondirectory.po
+++ b/pureftpd/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/pureftpd/locale/zh_TW/fusiondirectory.po b/pureftpd/locale/zh_TW/fusiondirectory.po
index 535ed199a3..d9b955189f 100644
--- a/pureftpd/locale/zh_TW/fusiondirectory.po
+++ b/pureftpd/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/af_ZA/fusiondirectory.po b/quota/locale/af_ZA/fusiondirectory.po
index 8feb650b06..81b85afd3a 100644
--- a/quota/locale/af_ZA/fusiondirectory.po
+++ b/quota/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po
index e8c512d428..7bf643292c 100644
--- a/quota/locale/ar/fusiondirectory.po
+++ b/quota/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po
index 3ff159b2a1..08694b756d 100644
--- a/quota/locale/ca/fusiondirectory.po
+++ b/quota/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po
index 42298458ca..d1b4600bb2 100644
--- a/quota/locale/cs_CZ/fusiondirectory.po
+++ b/quota/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po
index 57df4899cd..e01de8ffdf 100644
--- a/quota/locale/de/fusiondirectory.po
+++ b/quota/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po
index 1823b2e345..fb9ae48459 100644
--- a/quota/locale/el_GR/fusiondirectory.po
+++ b/quota/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po
index 2e820fa965..538c7d3aad 100644
--- a/quota/locale/es/fusiondirectory.po
+++ b/quota/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po
index 9902f8c54a..cf0f38729e 100644
--- a/quota/locale/es_CO/fusiondirectory.po
+++ b/quota/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po
index 033ed7a70a..f87d10a9ff 100644
--- a/quota/locale/es_VE/fusiondirectory.po
+++ b/quota/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po
index 9712eecbcf..5dfdd109ea 100644
--- a/quota/locale/fa_IR/fusiondirectory.po
+++ b/quota/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po
index cb75ce699c..3c551fd1af 100644
--- a/quota/locale/fi_FI/fusiondirectory.po
+++ b/quota/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po
index 1a1d3c87ee..c137e0865e 100644
--- a/quota/locale/fr/fusiondirectory.po
+++ b/quota/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po
index 1f8410e3ff..5943a8be98 100644
--- a/quota/locale/hu_HU/fusiondirectory.po
+++ b/quota/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po
index 4109fee70e..cada1ebc5d 100644
--- a/quota/locale/id/fusiondirectory.po
+++ b/quota/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po
index 45159fdc36..bee8f4f556 100644
--- a/quota/locale/it_IT/fusiondirectory.po
+++ b/quota/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/quota/locale/ja/fusiondirectory.po b/quota/locale/ja/fusiondirectory.po
index 340de4c4b0..435b8597ce 100644
--- a/quota/locale/ja/fusiondirectory.po
+++ b/quota/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ko/fusiondirectory.po b/quota/locale/ko/fusiondirectory.po
index 0cbdd9fef4..165c59d2d8 100644
--- a/quota/locale/ko/fusiondirectory.po
+++ b/quota/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2018
+# Choi Chris <chulwon.choi@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,6 +25,10 @@ msgstr ""
 #: admin/systems/services/quota/class_serviceQuota.inc:30
 msgid "Quota service"
 msgstr ""
+" \n"
+"\n"
+" \n"
+"할당량 서비스"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:30
 msgid "Services"
@@ -36,76 +40,76 @@ msgstr "공유"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:46
 msgid "Quotas for the shares this server hosts"
-msgstr ""
+msgstr "이 서버 호스트의 공유 할당량"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:50
 #: personal/quota/class_quotaAccount.inc:129
 msgid "Device"
-msgstr ""
+msgstr "디바이스"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:50
 msgid "Device concerned by this quota"
-msgstr ""
+msgstr "이 할당량에 관련된 장치"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:54
 msgid "Quota block size"
-msgstr ""
+msgstr "할당량 블록 크기"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:54
 msgid "Quota block size on this share (usually 1024)"
-msgstr ""
+msgstr "이 공유의 할당량 블록 크기 (일반적으로 1024)"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:63
 msgid "Comment"
-msgstr ""
+msgstr "주석"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:63
 msgid "Short comment about this quota"
-msgstr ""
+msgstr "이 할당량에 대한 간단한 의견"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:78
 msgid "Quota warning message"
-msgstr ""
+msgstr "할당량 경고 메시지"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:81
 msgid "Charset"
-msgstr ""
+msgstr "문자셋"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:81
 msgid "Charset use for the message"
-msgstr ""
+msgstr "메시지의 문자셋 사용"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:85
 msgid "Mail command"
-msgstr ""
+msgstr "메일 명령"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:85
 msgid "Command allowing the server to send mails"
-msgstr ""
+msgstr "서버가 메일을 보내도록 허용하는 명령"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:89
 msgid "Support contact"
-msgstr ""
+msgstr "지원 연락처"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:89
 msgid "Email address to contact the administrator"
-msgstr ""
+msgstr "관리자에게 연락할 이메일 주소"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:93
 msgid "From"
-msgstr ""
+msgstr "From"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:93
 msgid "Email from which the email is sent"
-msgstr ""
+msgstr "이메일이 발송된 메일주소"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:97
 msgid "CC"
-msgstr ""
+msgstr "참조"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:97
 msgid "Send a copy of this email to"
-msgstr ""
+msgstr "이 이메일의 사본을 발송"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:101
 msgid "Subject"
@@ -113,51 +117,51 @@ msgstr "제목"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:101
 msgid "Subject of the sent warning email"
-msgstr ""
+msgstr "전송된 경고 이메일의 제목"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:105
 msgid "Content"
-msgstr ""
+msgstr "본문"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:105
 msgid "Content of the sent email"
-msgstr ""
+msgstr "전송된 이메일 내용"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:109
 msgid "Signature"
-msgstr ""
+msgstr "서명"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:109
 msgid "Signature to put at the end of the mail"
-msgstr ""
+msgstr "메일의 끝에 넣을 서명"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:115
 msgid "LDAP message support"
-msgstr ""
+msgstr "LDAP 메시지 지원"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:118
 msgid "LDAP server"
-msgstr ""
+msgstr "LDAP  서버"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:118
 msgid "The LDAP server to bind to"
-msgstr ""
+msgstr "바인딩 할 LDAP 서버"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:122
 msgid "Bind user dn"
-msgstr ""
+msgstr "사용자 DN 바인딩"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:122
 msgid "The user dn to use for bind"
-msgstr ""
+msgstr "바인드에 사용할 suer dn"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:126
 msgid "Bind user password"
-msgstr ""
+msgstr "사용자 비밀번호 바인딩"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:126
 msgid "The password of the user used for bind"
-msgstr ""
+msgstr "바인드에 사용된 사용자의 비밀번호"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:159
 msgid "Warning"
@@ -171,59 +175,59 @@ msgstr "잘못된 인코딩 값 : %s"
 #: admin/systems/services/quota/class_serviceQuota.inc:176
 #, php-format
 msgid "(%s by %s)"
-msgstr ""
+msgstr "(%s 중 %s)"
 
 #: personal/quota/class_quotaAccount.inc:101
 msgid "Quota"
-msgstr ""
+msgstr "할당량"
 
 #: personal/quota/class_quotaAccount.inc:102
 msgid "Plugin for quota support"
-msgstr ""
+msgstr "할당량 지원을 위한 플러그인"
 
 #: personal/quota/class_quotaAccount.inc:120
 msgid "Quota information"
-msgstr ""
+msgstr "할당량 정보"
 
 #: personal/quota/class_quotaAccount.inc:125
 msgid "Quota information for this user"
-msgstr ""
+msgstr "이 사용자의 할당량 정보"
 
 #: personal/quota/class_quotaAccount.inc:129
 msgid "Device this quota is for"
-msgstr ""
+msgstr "이 할당량의 기기"
 
 #: personal/quota/class_quotaAccount.inc:133
 msgid "Block soft limit"
-msgstr ""
+msgstr "소프트 제한 차단"
 
 #: personal/quota/class_quotaAccount.inc:133
 msgid "Soft limit for the block the user can use"
-msgstr ""
+msgstr "사용자가 사용할 수 있는 블록에 대한 소프트 제한"
 
 #: personal/quota/class_quotaAccount.inc:142
 msgid "Block hard limit"
-msgstr ""
+msgstr "하드 제한 차단"
 
 #: personal/quota/class_quotaAccount.inc:142
 msgid "Hard limit for the block the user can use"
-msgstr ""
+msgstr "사용자가 사용할 수있는 블록에 대한 하드 제한"
 
 #: personal/quota/class_quotaAccount.inc:151
 msgid "Inode soft limit"
-msgstr ""
+msgstr "Inode 소프트 제한"
 
 #: personal/quota/class_quotaAccount.inc:151
 msgid "Soft limit for the inodes the user can use"
-msgstr ""
+msgstr "사용자가 사용할 수있는 inode에 대한 소프트 제한"
 
 #: personal/quota/class_quotaAccount.inc:160
 msgid "Inode hard limit"
-msgstr ""
+msgstr "Inode 하드 제한"
 
 #: personal/quota/class_quotaAccount.inc:160
 msgid "Hard limit for the inodes the user can use"
-msgstr ""
+msgstr "사용자가 사용할 수있는 inode에 대한 하드 제한"
 
 #: personal/quota/class_quotaAccount.inc:169
 msgid "Server"
@@ -231,4 +235,4 @@ msgstr "서버"
 
 #: personal/quota/class_quotaAccount.inc:169
 msgid "Server hosting the device this quota is for"
-msgstr ""
+msgstr "이 할당량의 대상 장치를 호스팅하는 서버"
diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po
index 6f8654e361..4a88edcb13 100644
--- a/quota/locale/lv/fusiondirectory.po
+++ b/quota/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po
index fcf408e316..17e73d7da8 100644
--- a/quota/locale/nb/fusiondirectory.po
+++ b/quota/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po
index 53079e4a41..1dc4670413 100644
--- a/quota/locale/nl/fusiondirectory.po
+++ b/quota/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po
index 7d98757ad4..04c8f7b51a 100644
--- a/quota/locale/pl/fusiondirectory.po
+++ b/quota/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po
index b3ce750ca1..b3417dbeaa 100644
--- a/quota/locale/pt/fusiondirectory.po
+++ b/quota/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po
index cdaefa91d4..88677baf83 100644
--- a/quota/locale/pt_BR/fusiondirectory.po
+++ b/quota/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po
index 98ff744c74..79439dd798 100644
--- a/quota/locale/ru/fusiondirectory.po
+++ b/quota/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po
index c6fa98bff2..ea8a70e9aa 100644
--- a/quota/locale/ru@petr1708/fusiondirectory.po
+++ b/quota/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po
index f7a592f888..c3438db1f8 100644
--- a/quota/locale/sv/fusiondirectory.po
+++ b/quota/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/quota/locale/tr_TR/fusiondirectory.po b/quota/locale/tr_TR/fusiondirectory.po
index 76178b918e..abeb5765c4 100644
--- a/quota/locale/tr_TR/fusiondirectory.po
+++ b/quota/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po
index fa07a46494..269675c59a 100644
--- a/quota/locale/ug/fusiondirectory.po
+++ b/quota/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po
index 0bc7d34a10..f204f286aa 100644
--- a/quota/locale/vi_VN/fusiondirectory.po
+++ b/quota/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po
index fbeb57d1ca..aa8920b6e8 100644
--- a/quota/locale/zh/fusiondirectory.po
+++ b/quota/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/quota/locale/zh_TW/fusiondirectory.po b/quota/locale/zh_TW/fusiondirectory.po
index be79ee8103..663e2ab8e6 100644
--- a/quota/locale/zh_TW/fusiondirectory.po
+++ b/quota/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/af_ZA/fusiondirectory.po b/renater-partage/locale/af_ZA/fusiondirectory.po
index 89ec2ea4bc..87a4113825 100644
--- a/renater-partage/locale/af_ZA/fusiondirectory.po
+++ b/renater-partage/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ar/fusiondirectory.po b/renater-partage/locale/ar/fusiondirectory.po
index 6bb4cadf99..48b50a6d0a 100644
--- a/renater-partage/locale/ar/fusiondirectory.po
+++ b/renater-partage/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/renater-partage/locale/ca/fusiondirectory.po b/renater-partage/locale/ca/fusiondirectory.po
index 591f3ec93a..c8cbf1c809 100644
--- a/renater-partage/locale/ca/fusiondirectory.po
+++ b/renater-partage/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/renater-partage/locale/cs_CZ/fusiondirectory.po b/renater-partage/locale/cs_CZ/fusiondirectory.po
index 7fd40af363..a1fdb8a801 100644
--- a/renater-partage/locale/cs_CZ/fusiondirectory.po
+++ b/renater-partage/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/renater-partage/locale/de/fusiondirectory.po b/renater-partage/locale/de/fusiondirectory.po
index ea7d6aed72..a7f799163e 100644
--- a/renater-partage/locale/de/fusiondirectory.po
+++ b/renater-partage/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/renater-partage/locale/el_GR/fusiondirectory.po b/renater-partage/locale/el_GR/fusiondirectory.po
index d3611cf2d1..40e4623e17 100644
--- a/renater-partage/locale/el_GR/fusiondirectory.po
+++ b/renater-partage/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/renater-partage/locale/es/fusiondirectory.po b/renater-partage/locale/es/fusiondirectory.po
index acec791397..69a91bd9b9 100644
--- a/renater-partage/locale/es/fusiondirectory.po
+++ b/renater-partage/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/renater-partage/locale/es_CO/fusiondirectory.po b/renater-partage/locale/es_CO/fusiondirectory.po
index d074a21084..aa46cea3b4 100644
--- a/renater-partage/locale/es_CO/fusiondirectory.po
+++ b/renater-partage/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/renater-partage/locale/es_VE/fusiondirectory.po b/renater-partage/locale/es_VE/fusiondirectory.po
index 27f4c3f260..6a83577327 100644
--- a/renater-partage/locale/es_VE/fusiondirectory.po
+++ b/renater-partage/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/renater-partage/locale/fa_IR/fusiondirectory.po b/renater-partage/locale/fa_IR/fusiondirectory.po
index 70b7b30f04..1235530db1 100644
--- a/renater-partage/locale/fa_IR/fusiondirectory.po
+++ b/renater-partage/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/fi_FI/fusiondirectory.po b/renater-partage/locale/fi_FI/fusiondirectory.po
index e635cd842b..c73ef580f5 100644
--- a/renater-partage/locale/fi_FI/fusiondirectory.po
+++ b/renater-partage/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/renater-partage/locale/fr/fusiondirectory.po b/renater-partage/locale/fr/fusiondirectory.po
index 836285dd1d..2893316658 100644
--- a/renater-partage/locale/fr/fusiondirectory.po
+++ b/renater-partage/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/renater-partage/locale/hu_HU/fusiondirectory.po b/renater-partage/locale/hu_HU/fusiondirectory.po
index ca7ed06061..f58e5fec29 100644
--- a/renater-partage/locale/hu_HU/fusiondirectory.po
+++ b/renater-partage/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/id/fusiondirectory.po b/renater-partage/locale/id/fusiondirectory.po
index fb2527691e..53bd16163b 100644
--- a/renater-partage/locale/id/fusiondirectory.po
+++ b/renater-partage/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index 6b0dc31812..47c79367b6 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/renater-partage/locale/ja/fusiondirectory.po b/renater-partage/locale/ja/fusiondirectory.po
index 939ff25bb9..ca99496ca5 100644
--- a/renater-partage/locale/ja/fusiondirectory.po
+++ b/renater-partage/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ko/fusiondirectory.po b/renater-partage/locale/ko/fusiondirectory.po
index 388008c837..98afd27e7d 100644
--- a/renater-partage/locale/ko/fusiondirectory.po
+++ b/renater-partage/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2019
+# Choi Chris <chulwon.choi@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,11 +24,11 @@ msgstr ""
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
 msgid "Partage"
-msgstr ""
+msgstr "파티지"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:30
 msgid "Partage group options"
-msgstr ""
+msgstr "파티지 그룹 옵션"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:42
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:40
@@ -43,17 +43,17 @@ msgstr "표시 이름"
 #: admin/groups/renater-partage/class_partageGroup.inc:45
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:48
 msgid "Name to display for this group"
-msgstr ""
+msgstr "이 그룹에 대해 표시할 이름"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:49
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:52
 msgid "Hide from global catalog"
-msgstr ""
+msgstr "글로벌 카탈로그에서 숨기기"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:49
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:52
 msgid "Whether this group should be hidden from the global catalog"
-msgstr ""
+msgstr "이 그룹을 글로벌 카탈로그에서 숨겨야 하는지 여부"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:54
 msgid "Type"
@@ -61,11 +61,11 @@ msgstr "타입"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:54
 msgid "Type of PARTAGE group"
-msgstr ""
+msgstr "PARTAGE 그룹 유형"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:57
 msgid "Distribution list"
-msgstr ""
+msgstr "배포 목록"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:57
 msgid "Group"
@@ -73,26 +73,26 @@ msgstr "그룹"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:60
 msgid "Alert new members"
-msgstr ""
+msgstr "새 회원에게 알림"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:60
 msgid "Send a message to alert new members, they have joined this group"
-msgstr ""
+msgstr "이 그룹에 가입한 새 회원에게 알리는 메시지를 보내십시오."
 
 #: admin/groups/renater-partage/class_partageGroup.inc:65
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:65
 msgid "Notes"
-msgstr ""
+msgstr "노트"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:65
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:65
 msgid "Notes about this group"
-msgstr ""
+msgstr "이 그룹에 대한 참고 사항"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:28
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:29
 msgid "Renater Partage"
-msgstr ""
+msgstr "레나터 파티지"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:40
 msgid "Settings"
@@ -100,46 +100,46 @@ msgstr "설정"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
 msgid "URI"
-msgstr ""
+msgstr "URI"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
 msgid "URI to contact the Renater Partage API"
-msgstr ""
+msgstr "Renater Partage API에 연결하기위한 URI"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
 msgid "User Agent"
-msgstr ""
+msgstr "사용자 에이전트"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:48
 msgid "User Agent to use to contact the Renater Partage API"
-msgstr ""
+msgstr "Renater Partage API에 연결하는데 사용할 사용자 에이전트"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
 msgid "Mailbox deletion"
-msgstr ""
+msgstr "사서함 삭제"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:53
 msgid ""
 "What to do with the PARTAGE account when mail tab is deactivated or user is "
 "deleted"
-msgstr ""
+msgstr "메일 탭이 비활성화되거나 사용자가 삭제 된 경우 Partage 계정으로 수행 할 작업"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
 msgid "Delete"
-msgstr ""
+msgstr "삭제"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
 msgid "Disable"
-msgstr ""
+msgstr "미사용"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:62
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:88
 msgid "Domains"
-msgstr ""
+msgstr "도메인"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:67
 msgid "Domains handled by this Renater Partage server"
-msgstr ""
+msgstr "이 Renater Partage 서버에서 처리하는 도메인"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
 msgid "Domain"
@@ -147,7 +147,7 @@ msgstr "도메"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:71
 msgid "Domain handled by this server"
-msgstr ""
+msgstr "이 서버에서 처리하는 도메인"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
 msgid "Key"
@@ -155,21 +155,23 @@ msgstr "키"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:75
 msgid "Key for this domain"
-msgstr ""
+msgstr "이 도메인의 키"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
 msgid "Classes of service"
-msgstr ""
+msgstr "서비스 등급"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:79
 msgid ""
 "Possible classes of service for this domain and their ids, separated by "
 "commas. Format is cos1Name|cos1Id,cos2Name|cos2Id."
 msgstr ""
+"이 도메인 및 해당 ID에 대해 가능한 서비스 클래스 (쉼표로 구분). 형식은 cos1Name | cos1Id, cos2Name | "
+"cos2Id입니다."
 
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:30
 msgid "Partage sympa options"
-msgstr ""
+msgstr "Partage sympa 옵션"
 
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:43
 msgid "Server"
@@ -185,7 +187,7 @@ msgstr "대체메일"
 
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:70
 msgid "Alternative mail addresses for the list"
-msgstr ""
+msgstr "목록의 대체 메일 주소"
 
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:173
 #, php-format
@@ -214,35 +216,35 @@ msgstr "메일박스 삭제 불가: %s"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:64
 msgid "Server did not return auth token"
-msgstr ""
+msgstr "서버가 인증 토큰을 반환하지 않았습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:129
 msgid "Partage API answer malformated"
-msgstr ""
+msgstr "Partage API 응답 형식이 잘못되었습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:133
 #, php-format
 msgid "Partage API Auth failed: %s"
-msgstr ""
+msgstr "Partage API 인증 실패 : %s"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:135
 msgid "Partage API Auth failed with no error message"
-msgstr ""
+msgstr "오류 메시지없이 Partage API 인증에 실패했습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:144
 #, php-format
 msgid "Unable to connect to %s: %s"
-msgstr ""
+msgstr "%s 에 연결할 수 없습니다 : %s"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:146
 #, php-format
 msgid "Unable to connect to %s"
-msgstr ""
+msgstr "%s에 연결할 수 없습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:172
 #, php-format
 msgid "Email address \"%s\" does not use the correct partage domain \"%s\""
-msgstr ""
+msgstr "이메일 주소 \"%s\"에서 올바른 파티지 도메인 \"%s\"을 사용하지 않습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:259
 msgid "Warning"
@@ -254,6 +256,8 @@ msgid ""
 "Several addresses were given in gosaMailForwardingAddress but only one is "
 "supported by PARTAGE. %s will be sent to PARTAGE."
 msgstr ""
+"gosaMailForwardingAddress에 여러 주소가 제공되었지만 Partage에서는 하나만 지원합니다. %s는 Partage로 "
+"전송됩니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:491
 msgid "PARTAGE error"
@@ -262,28 +266,28 @@ msgstr ""
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:492
 #, php-format
 msgid "Several users have uid \"%s\". Ignoring this member."
-msgstr ""
+msgstr "여러 사용자가 uid \"%s\"를 가지고 있습니다. 이 멤버를 무시합니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:531
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:544
 msgid "An account with the same email address already exists in Partage"
-msgstr ""
+msgstr "동일한 이메일 주소를 가진 계정이 이미 Partage에 있습니다."
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:609
 msgid "Invalid value in fdRenaterPartageServerDeletionType"
-msgstr ""
+msgstr "fdRenaterPartageServerDeletionType의 잘못된 값"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:646
 msgid "Never"
-msgstr ""
+msgstr "제한없음"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:653
 msgid "Last login"
-msgstr ""
+msgstr "마지막 로그인"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:654
 msgid "Account status"
-msgstr ""
+msgstr "계정 상태"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:654
 msgid "Unknown"
diff --git a/renater-partage/locale/lv/fusiondirectory.po b/renater-partage/locale/lv/fusiondirectory.po
index 1a02ca7a3a..f9d23d8f0a 100644
--- a/renater-partage/locale/lv/fusiondirectory.po
+++ b/renater-partage/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/renater-partage/locale/nb/fusiondirectory.po b/renater-partage/locale/nb/fusiondirectory.po
index fb0d33038b..7eafc4a167 100644
--- a/renater-partage/locale/nb/fusiondirectory.po
+++ b/renater-partage/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/renater-partage/locale/nl/fusiondirectory.po b/renater-partage/locale/nl/fusiondirectory.po
index 3baf45dfd6..95b057d28e 100644
--- a/renater-partage/locale/nl/fusiondirectory.po
+++ b/renater-partage/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/renater-partage/locale/pl/fusiondirectory.po b/renater-partage/locale/pl/fusiondirectory.po
index e6268934dd..6662289b75 100644
--- a/renater-partage/locale/pl/fusiondirectory.po
+++ b/renater-partage/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/renater-partage/locale/pt/fusiondirectory.po b/renater-partage/locale/pt/fusiondirectory.po
index 6fc55daf8a..f05cff3e8e 100644
--- a/renater-partage/locale/pt/fusiondirectory.po
+++ b/renater-partage/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/renater-partage/locale/pt_BR/fusiondirectory.po b/renater-partage/locale/pt_BR/fusiondirectory.po
index 4455f80e53..e8f379407e 100644
--- a/renater-partage/locale/pt_BR/fusiondirectory.po
+++ b/renater-partage/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/renater-partage/locale/ru/fusiondirectory.po b/renater-partage/locale/ru/fusiondirectory.po
index 062d5510b5..ed8d9d63be 100644
--- a/renater-partage/locale/ru/fusiondirectory.po
+++ b/renater-partage/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/renater-partage/locale/ru@petr1708/fusiondirectory.po b/renater-partage/locale/ru@petr1708/fusiondirectory.po
index dec47f884d..d03f98a821 100644
--- a/renater-partage/locale/ru@petr1708/fusiondirectory.po
+++ b/renater-partage/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/sv/fusiondirectory.po b/renater-partage/locale/sv/fusiondirectory.po
index b530ef01e7..de7f5f5c6a 100644
--- a/renater-partage/locale/sv/fusiondirectory.po
+++ b/renater-partage/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/renater-partage/locale/tr_TR/fusiondirectory.po b/renater-partage/locale/tr_TR/fusiondirectory.po
index ba8406eee7..cbed6fd29a 100644
--- a/renater-partage/locale/tr_TR/fusiondirectory.po
+++ b/renater-partage/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -92,7 +96,7 @@ msgstr ""
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:40
 msgid "Settings"
-msgstr ""
+msgstr "Ayarlar"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:44
 msgid "URI"
diff --git a/renater-partage/locale/ug/fusiondirectory.po b/renater-partage/locale/ug/fusiondirectory.po
index 66e9767d69..8f7c43b7ca 100644
--- a/renater-partage/locale/ug/fusiondirectory.po
+++ b/renater-partage/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/vi_VN/fusiondirectory.po b/renater-partage/locale/vi_VN/fusiondirectory.po
index 343c8123b4..8460563796 100644
--- a/renater-partage/locale/vi_VN/fusiondirectory.po
+++ b/renater-partage/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/renater-partage/locale/zh/fusiondirectory.po b/renater-partage/locale/zh/fusiondirectory.po
index c850ed0b55..eb77af6a48 100644
--- a/renater-partage/locale/zh/fusiondirectory.po
+++ b/renater-partage/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/renater-partage/locale/zh_TW/fusiondirectory.po b/renater-partage/locale/zh_TW/fusiondirectory.po
index 5c77b1690c..0df6564497 100644
--- a/renater-partage/locale/zh_TW/fusiondirectory.po
+++ b/renater-partage/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/af_ZA/fusiondirectory.po b/repository/locale/af_ZA/fusiondirectory.po
index 2a139d1fec..4178f37b1c 100644
--- a/repository/locale/af_ZA/fusiondirectory.po
+++ b/repository/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po
index 7197638b46..c1256260e7 100644
--- a/repository/locale/ar/fusiondirectory.po
+++ b/repository/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po
index 9151d2b3d8..75b7f4ad0b 100644
--- a/repository/locale/ca/fusiondirectory.po
+++ b/repository/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po
index cdbd547795..d2484fb349 100644
--- a/repository/locale/cs_CZ/fusiondirectory.po
+++ b/repository/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po
index b666d5c512..5768ef55e3 100644
--- a/repository/locale/de/fusiondirectory.po
+++ b/repository/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po
index f74a09e34d..1c49748c67 100644
--- a/repository/locale/el_GR/fusiondirectory.po
+++ b/repository/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po
index ca5b75337e..5d64714fe5 100644
--- a/repository/locale/es/fusiondirectory.po
+++ b/repository/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po
index 3ac976210d..0fcd151d2f 100644
--- a/repository/locale/es_CO/fusiondirectory.po
+++ b/repository/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po
index ee7ea3760e..9393a24c6b 100644
--- a/repository/locale/es_VE/fusiondirectory.po
+++ b/repository/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po
index baf3068477..109a4fe262 100644
--- a/repository/locale/fa_IR/fusiondirectory.po
+++ b/repository/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po
index 14a2fcf056..a6bf6284d1 100644
--- a/repository/locale/fi_FI/fusiondirectory.po
+++ b/repository/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po
index 19359f01a9..27fbc6d6f1 100644
--- a/repository/locale/fr/fusiondirectory.po
+++ b/repository/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po
index 4ce7dd9078..5d30360ced 100644
--- a/repository/locale/hu_HU/fusiondirectory.po
+++ b/repository/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po
index 6aa3f5623e..d44b38480b 100644
--- a/repository/locale/id/fusiondirectory.po
+++ b/repository/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po
index 7159327aeb..69e5b8504b 100644
--- a/repository/locale/it_IT/fusiondirectory.po
+++ b/repository/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/repository/locale/ja/fusiondirectory.po b/repository/locale/ja/fusiondirectory.po
index 6aca57797f..13c57ddc2b 100644
--- a/repository/locale/ja/fusiondirectory.po
+++ b/repository/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ko/fusiondirectory.po b/repository/locale/ko/fusiondirectory.po
index 4445201e98..8050a8b773 100644
--- a/repository/locale/ko/fusiondirectory.po
+++ b/repository/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po
index e60eddacf9..36013a7532 100644
--- a/repository/locale/lv/fusiondirectory.po
+++ b/repository/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po
index 068529f6aa..01d89dc6c3 100644
--- a/repository/locale/nb/fusiondirectory.po
+++ b/repository/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po
index ace6d528c6..5c04ebbf9d 100644
--- a/repository/locale/nl/fusiondirectory.po
+++ b/repository/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po
index 10e1a738d8..df8eb52ae0 100644
--- a/repository/locale/pl/fusiondirectory.po
+++ b/repository/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po
index 454798dd38..7827798d35 100644
--- a/repository/locale/pt/fusiondirectory.po
+++ b/repository/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po
index a653a88332..355a18e91f 100644
--- a/repository/locale/pt_BR/fusiondirectory.po
+++ b/repository/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po
index a5b1720e0f..1f12c7fc45 100644
--- a/repository/locale/ru/fusiondirectory.po
+++ b/repository/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po
index b7fc55fcf3..706ff69248 100644
--- a/repository/locale/ru@petr1708/fusiondirectory.po
+++ b/repository/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po
index 23e1ec6312..c9e42a1360 100644
--- a/repository/locale/sv/fusiondirectory.po
+++ b/repository/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/repository/locale/tr_TR/fusiondirectory.po b/repository/locale/tr_TR/fusiondirectory.po
index ddfb3ec018..ee9c357ab3 100644
--- a/repository/locale/tr_TR/fusiondirectory.po
+++ b/repository/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po
index 0e32b27ace..8d6099d8f1 100644
--- a/repository/locale/ug/fusiondirectory.po
+++ b/repository/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po
index 64bda72dbf..674c417d10 100644
--- a/repository/locale/vi_VN/fusiondirectory.po
+++ b/repository/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po
index aa6d816e26..05603d6a35 100644
--- a/repository/locale/zh/fusiondirectory.po
+++ b/repository/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/repository/locale/zh_TW/fusiondirectory.po b/repository/locale/zh_TW/fusiondirectory.po
index 0661148635..33dc254f93 100644
--- a/repository/locale/zh_TW/fusiondirectory.po
+++ b/repository/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/af_ZA/fusiondirectory.po b/samba/locale/af_ZA/fusiondirectory.po
index a22aeba287..cc4170987c 100644
--- a/samba/locale/af_ZA/fusiondirectory.po
+++ b/samba/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po
index 495b3fb529..8fe28e8927 100644
--- a/samba/locale/ar/fusiondirectory.po
+++ b/samba/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po
index efa5b23ec7..0073a728d3 100644
--- a/samba/locale/ca/fusiondirectory.po
+++ b/samba/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po
index 2b5f26d954..c7dac5b701 100644
--- a/samba/locale/cs_CZ/fusiondirectory.po
+++ b/samba/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po
index 6cc4ed6448..bbcb35300f 100644
--- a/samba/locale/de/fusiondirectory.po
+++ b/samba/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po
index c51ef0672c..3185cde017 100644
--- a/samba/locale/el_GR/fusiondirectory.po
+++ b/samba/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po
index 538c1cd4e9..958b0ecd18 100644
--- a/samba/locale/es/fusiondirectory.po
+++ b/samba/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po
index 535907ba72..fe6a89e957 100644
--- a/samba/locale/es_CO/fusiondirectory.po
+++ b/samba/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po
index 8ed9a9b2d0..f799b5a497 100644
--- a/samba/locale/es_VE/fusiondirectory.po
+++ b/samba/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po
index bb5005a23b..1d33944bc2 100644
--- a/samba/locale/fa_IR/fusiondirectory.po
+++ b/samba/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po
index 3744927d46..7a19f07d48 100644
--- a/samba/locale/fi_FI/fusiondirectory.po
+++ b/samba/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po
index 9676bec77c..c934d4fabc 100644
--- a/samba/locale/fr/fusiondirectory.po
+++ b/samba/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po
index 384f63f0ec..f52c0c7970 100644
--- a/samba/locale/hu_HU/fusiondirectory.po
+++ b/samba/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po
index f8b6a9af35..752e36da78 100644
--- a/samba/locale/id/fusiondirectory.po
+++ b/samba/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po
index 22395a34e5..388e194e36 100644
--- a/samba/locale/it_IT/fusiondirectory.po
+++ b/samba/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/samba/locale/ja/fusiondirectory.po b/samba/locale/ja/fusiondirectory.po
index dcf84cf616..9a3d16f3ee 100644
--- a/samba/locale/ja/fusiondirectory.po
+++ b/samba/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ko/fusiondirectory.po b/samba/locale/ko/fusiondirectory.po
index 46ade421e3..6198b807a1 100644
--- a/samba/locale/ko/fusiondirectory.po
+++ b/samba/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -98,7 +98,7 @@ msgstr "다음 RID"
 
 #: admin/samba/class_sambaDomain.inc:79
 msgid "Next NT rid to give out for anything"
-msgstr ""
+msgstr "다음 번 NT rid가 제공하는 것"
 
 #: admin/samba/class_sambaDomain.inc:83
 msgid "Next group RID"
@@ -477,111 +477,111 @@ msgstr "미사용"
 
 #: personal/samba/class_sambaAccount.inc:279
 msgid "input on, notify on"
-msgstr ""
+msgstr "입력, 알림"
 
 #: personal/samba/class_sambaAccount.inc:279
 msgid "input on, notify off"
-msgstr ""
+msgstr "입력, 알림 끄기"
 
 #: personal/samba/class_sambaAccount.inc:280
 msgid "input off, notify on"
-msgstr ""
+msgstr "입력 해제, 알림"
 
 #: personal/samba/class_sambaAccount.inc:280
 msgid "input off, nofify off"
-msgstr ""
+msgstr "입력 해제, 알림 해제"
 
 #: personal/samba/class_sambaAccount.inc:283
 msgid "On broken or timed out"
-msgstr ""
+msgstr "고장 또는 시간 초과"
 
 #: personal/samba/class_sambaAccount.inc:283
 msgid "What happen if disconnected or timeout"
-msgstr ""
+msgstr "연결이 끊어지거나 시간이 초과되면 어떻게 됩니까?"
 
 #: personal/samba/class_sambaAccount.inc:286
 msgid "disconnect"
-msgstr ""
+msgstr "연결 끊김"
 
 #: personal/samba/class_sambaAccount.inc:286
 msgid "reset"
-msgstr ""
+msgstr "초기화"
 
 #: personal/samba/class_sambaAccount.inc:289
 msgid "Reconnect if disconnected"
-msgstr ""
+msgstr "연결이 끊긴 경우 다시 연결"
 
 #: personal/samba/class_sambaAccount.inc:292
 msgid "from any client"
-msgstr ""
+msgstr "모든 클라이언트에서"
 
 #: personal/samba/class_sambaAccount.inc:292
 msgid "from previous client only"
-msgstr ""
+msgstr "이전 클라이언트에서만"
 
 #: personal/samba/class_sambaAccount.inc:304
 msgid "Access options"
-msgstr ""
+msgstr "액세스 옵션"
 
 #: personal/samba/class_sambaAccount.inc:308
 msgid "Enforce password change"
-msgstr ""
+msgstr "비밀번호 변경 시행"
 
 #: personal/samba/class_sambaAccount.inc:308
 msgid "Force the user to change his password"
-msgstr ""
+msgstr "사용자가 비밀번호를 변경하도록 강제"
 
 #: personal/samba/class_sambaAccount.inc:313
 msgid "The password never expire"
-msgstr ""
+msgstr "비밀번호가 만료되지 않습니다"
 
 #: personal/samba/class_sambaAccount.inc:313
 msgid "The password will never expire"
-msgstr ""
+msgstr "비밀번호는 만료되지 않습니다"
 
 #: personal/samba/class_sambaAccount.inc:318
 msgid "Login from windows client requires no password"
-msgstr ""
+msgstr "Windows 클라이언트에서 로그인 할 때 비밀번호가 필요하지 않습니다"
 
 #: personal/samba/class_sambaAccount.inc:318
 msgid "Login from a client without a password"
-msgstr ""
+msgstr "비밀번호없이 클라이언트에서 로그인"
 
 #: personal/samba/class_sambaAccount.inc:323
 msgid "Lock samba account"
-msgstr ""
+msgstr "삼바 계정 잠금"
 
 #: personal/samba/class_sambaAccount.inc:323
 msgid "Lock the account"
-msgstr ""
+msgstr "계정 잠금"
 
 #: personal/samba/class_sambaAccount.inc:328
 msgid "Cannot change password"
-msgstr ""
+msgstr "비밀번호를 변경할 수 없습니다"
 
 #: personal/samba/class_sambaAccount.inc:328
 msgid "Not allowed to change password"
-msgstr ""
+msgstr "비밀번호를 변경할 수 없습니다"
 
 #: personal/samba/class_sambaAccount.inc:332
 msgid "Account expiration"
-msgstr ""
+msgstr "계정 만료"
 
 #: personal/samba/class_sambaAccount.inc:332
 msgid "When does the account expire"
-msgstr ""
+msgstr "계정은 언제 만료됩니까"
 
 #: personal/samba/class_sambaAccount.inc:340
 msgid "Samba logon times"
-msgstr ""
+msgstr "삼바 로그온 횟수"
 
 #: personal/samba/class_sambaAccount.inc:340
 msgid "What is the allowed time to connect"
-msgstr ""
+msgstr "연결이 허용되는 시간은 얼마입니까"
 
 #: personal/samba/class_sambaAccount.inc:341
 msgid "Edit settings"
-msgstr ""
+msgstr "설정 편집"
 
 #: personal/samba/class_sambaAccount.inc:357
 msgid "System trust"
@@ -589,7 +589,7 @@ msgstr "시스템 신뢰"
 
 #: personal/samba/class_sambaAccount.inc:363
 msgid "Allow connection from these workstations only"
-msgstr ""
+msgstr "이 워크스테이션에서만 연결 허용"
 
 #: personal/samba/class_sambaAccount.inc:363
 msgid "Only allow this user to connect to this list of hosts"
@@ -599,26 +599,26 @@ msgstr " 호스트 리스트에 만 접속 허용"
 #: personal/samba/class_sambaAccount.inc:486
 #, php-format
 msgid "Field \"%s\" is required when \"%s\" is filled! Fill both field or empty them."
-msgstr ""
+msgstr "\"%s\"가 채워지면 \"%s\" 필드가 필요합니다! 필드를 모두 채우거나 비웁니다."
 
 #: personal/samba/class_sambaAccount.inc:494
 msgid "The windows user manager allows eight clients at maximum!"
-msgstr ""
+msgstr "Windows 사용자 관리자는 최대 8명의 클라이언트를 허용합니다!"
 
 #: personal/samba/class_sambaAccount.inc:543
 msgid ""
 "Cannot convert primary group to samba group: group cannot be identified!"
-msgstr ""
+msgstr "기본 그룹을 삼바 그룹으로 변환 할 수 없습니다: 그룹을 식별 할 수 없습니다!"
 
 #: personal/samba/class_sambaAccount.inc:564
 msgid ""
 "Cannot convert primary group to samba group: group samba tab is disabled!"
-msgstr ""
+msgstr "기본 그룹을 삼바 그룹으로 변환 할 수 없습니다: 그룹 삼바 탭이 비활성화되었습니다!"
 
 #: personal/samba/sambaLogonHours.tpl.c:2
 msgid "Specify the hours this user is allowed to log in"
-msgstr ""
+msgstr "이 사용자가 로그인 할 수있는 시간을 지정하십시오."
 
 #: personal/samba/sambaLogonHours.tpl.c:5
 msgid "Hour"
-msgstr ""
+msgstr "시간"
diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po
index abeb90df65..4a0ad10a23 100644
--- a/samba/locale/lv/fusiondirectory.po
+++ b/samba/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po
index e9e816822d..b377163f2d 100644
--- a/samba/locale/nb/fusiondirectory.po
+++ b/samba/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po
index 16d74bb816..17be97b4c4 100644
--- a/samba/locale/nl/fusiondirectory.po
+++ b/samba/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po
index 4d44780d55..8d5350373e 100644
--- a/samba/locale/pl/fusiondirectory.po
+++ b/samba/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po
index ab40ee7247..0ad15ad6cd 100644
--- a/samba/locale/pt/fusiondirectory.po
+++ b/samba/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po
index 92f1f1864c..8cab121aac 100644
--- a/samba/locale/pt_BR/fusiondirectory.po
+++ b/samba/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po
index 53d56e1093..4196e2fd45 100644
--- a/samba/locale/ru/fusiondirectory.po
+++ b/samba/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po
index 612313ae0d..1271915763 100644
--- a/samba/locale/ru@petr1708/fusiondirectory.po
+++ b/samba/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po
index a6cf2434b8..0d7ec3fe41 100644
--- a/samba/locale/sv/fusiondirectory.po
+++ b/samba/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/samba/locale/tr_TR/fusiondirectory.po b/samba/locale/tr_TR/fusiondirectory.po
index 5ab178b22a..cf4e8131e4 100644
--- a/samba/locale/tr_TR/fusiondirectory.po
+++ b/samba/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po
index 32b51d2ba0..ce570a8c42 100644
--- a/samba/locale/ug/fusiondirectory.po
+++ b/samba/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po
index 639bb633ee..2f509e84c4 100644
--- a/samba/locale/vi_VN/fusiondirectory.po
+++ b/samba/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po
index af9746d611..3c03f07b62 100644
--- a/samba/locale/zh/fusiondirectory.po
+++ b/samba/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/samba/locale/zh_TW/fusiondirectory.po b/samba/locale/zh_TW/fusiondirectory.po
index a81918f29a..816e904f40 100644
--- a/samba/locale/zh_TW/fusiondirectory.po
+++ b/samba/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/af_ZA/fusiondirectory.po b/sinaps/locale/af_ZA/fusiondirectory.po
index c4cd191f14..ba948dc600 100644
--- a/sinaps/locale/af_ZA/fusiondirectory.po
+++ b/sinaps/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: af_ZA\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ar/fusiondirectory.po b/sinaps/locale/ar/fusiondirectory.po
index c0ad13cc65..74715b40d1 100644
--- a/sinaps/locale/ar/fusiondirectory.po
+++ b/sinaps/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ar\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ca/fusiondirectory.po b/sinaps/locale/ca/fusiondirectory.po
index b34a020453..29e8a11509 100644
--- a/sinaps/locale/ca/fusiondirectory.po
+++ b/sinaps/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/cs_CZ/fusiondirectory.po b/sinaps/locale/cs_CZ/fusiondirectory.po
index 175a9fa8fd..963b641995 100644
--- a/sinaps/locale/cs_CZ/fusiondirectory.po
+++ b/sinaps/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: cs_CZ\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Nepodařilo se zjistit jaká metoda je používána pro heslo u účtu „%s“. Nebyl "
 "proto uzamčen!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "S metodou ukládání hesla „%s“ se zamykání nezdařilo. Účet „%s“ nebyl "
 "uzamčen!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Účet „%s“ se nepodařilo v LDAP najít. Nebyl proto uzamčen!"
diff --git a/sinaps/locale/de/fusiondirectory.po b/sinaps/locale/de/fusiondirectory.po
index 85bf661583..a77df35ea9 100644
--- a/sinaps/locale/de/fusiondirectory.po
+++ b/sinaps/locale/de/fusiondirectory.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
+# Ettore Atalan <atalanttore@googlemail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
+"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,18 +22,18 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
@@ -242,7 +243,7 @@ msgstr ""
 #: config/sinaps/class_sinapsConfig.inc:228
 #: config/sinaps/class_sinapsConfig.inc:229
 msgid "Field"
-msgstr ""
+msgstr "Feld"
 
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
diff --git a/sinaps/locale/el_GR/fusiondirectory.po b/sinaps/locale/el_GR/fusiondirectory.po
index 7b41b00c13..4ef755eeed 100644
--- a/sinaps/locale/el_GR/fusiondirectory.po
+++ b/sinaps/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/es/fusiondirectory.po b/sinaps/locale/es/fusiondirectory.po
index 79c0fff426..46e41a05f5 100644
--- a/sinaps/locale/es/fusiondirectory.po
+++ b/sinaps/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/es_CO/fusiondirectory.po b/sinaps/locale/es_CO/fusiondirectory.po
index da82df48cc..234fb112ed 100644
--- a/sinaps/locale/es_CO/fusiondirectory.po
+++ b/sinaps/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/es_VE/fusiondirectory.po b/sinaps/locale/es_VE/fusiondirectory.po
index ba9ec3f712..f1ea7f93b8 100644
--- a/sinaps/locale/es_VE/fusiondirectory.po
+++ b/sinaps/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/fa_IR/fusiondirectory.po b/sinaps/locale/fa_IR/fusiondirectory.po
index 68d71feeda..6492ab97de 100644
--- a/sinaps/locale/fa_IR/fusiondirectory.po
+++ b/sinaps/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: fa_IR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/fi_FI/fusiondirectory.po b/sinaps/locale/fi_FI/fusiondirectory.po
index de01a5b0a5..c0eae832e5 100644
--- a/sinaps/locale/fi_FI/fusiondirectory.po
+++ b/sinaps/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/fr/fusiondirectory.po b/sinaps/locale/fr/fusiondirectory.po
index 06d9490298..69ac25d57c 100644
--- a/sinaps/locale/fr/fusiondirectory.po
+++ b/sinaps/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Impossible d'obtenir la méthode de mot de passe pour le compte \"%s\". Le "
 "compte n'a pas été verrouillé !"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "La méthode de mot de passe \"%s\" a échoué. Le compte \"%s\" n'a pas été "
 "verrouillé !"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/hu_HU/fusiondirectory.po b/sinaps/locale/hu_HU/fusiondirectory.po
index 527f4453b9..9641ea557b 100644
--- a/sinaps/locale/hu_HU/fusiondirectory.po
+++ b/sinaps/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: hu_HU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/id/fusiondirectory.po b/sinaps/locale/id/fusiondirectory.po
index 2459df1e70..0eb90c76dc 100644
--- a/sinaps/locale/id/fusiondirectory.po
+++ b/sinaps/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index 34a597a26d..a843efd3e1 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -23,22 +23,22 @@ msgstr ""
 "Language: it_IT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Impossibile ottenere metodo di password per l'account\"%s\". Non è stato "
 "bloccato!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "Il metodo di bloccaggio \"%s\" é fallito. L'account \"%s\" non é stato "
 "bloccato!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Account \"%s\" non trovato nella LDAP. Non é stato bloccato!"
diff --git a/sinaps/locale/ja/fusiondirectory.po b/sinaps/locale/ja/fusiondirectory.po
index 94ab6177e3..b7ba2b7820 100644
--- a/sinaps/locale/ja/fusiondirectory.po
+++ b/sinaps/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ko/fusiondirectory.po b/sinaps/locale/ko/fusiondirectory.po
index ad0b608d49..8bccb303c1 100644
--- a/sinaps/locale/ko/fusiondirectory.po
+++ b/sinaps/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2020
+# Choi Chris <chulwon.choi@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr "\"%s\" 계정의 패스워드를 가져올 수 없습니다. 잠겨있지 않습니다."
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr "\"%s\"의 패스워드를 잠글 수 없습니다. \"%s\" 계정이 잠겨있지 않습니다."
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "LDAP에서 계정 \"%s\"을 찾을 수 없습니다. 잠겨있지 않습니다."
@@ -242,7 +242,7 @@ msgstr ""
 #: config/sinaps/class_sinapsConfig.inc:228
 #: config/sinaps/class_sinapsConfig.inc:229
 msgid "Field"
-msgstr ""
+msgstr "필드"
 
 #: personal/sinaps/class_sinapsUser.inc:29
 msgid "Used to send acquisition request for users"
diff --git a/sinaps/locale/lv/fusiondirectory.po b/sinaps/locale/lv/fusiondirectory.po
index f69b6550f7..8ef01bdf73 100644
--- a/sinaps/locale/lv/fusiondirectory.po
+++ b/sinaps/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: lv\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/nb/fusiondirectory.po b/sinaps/locale/nb/fusiondirectory.po
index a1c8fee5f3..ddcc2eab96 100644
--- a/sinaps/locale/nb/fusiondirectory.po
+++ b/sinaps/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/nl/fusiondirectory.po b/sinaps/locale/nl/fusiondirectory.po
index fc6aba6bda..c665fad2d7 100644
--- a/sinaps/locale/nl/fusiondirectory.po
+++ b/sinaps/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2019\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 "Kan de wachtwoordmethode niet opvragen voor account \"%s\". Het is niet "
 "vergrendeld!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 "Wachtwoordmethode \"%s\" kon niet vergrendelen. Account \"%s\" is niet "
 "vergrendeld!"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr "Account \"%s\" kon niet gevonden worden in LDAP. Het is niet vergrendeld."
diff --git a/sinaps/locale/pl/fusiondirectory.po b/sinaps/locale/pl/fusiondirectory.po
index efaa09d017..5258d9772a 100644
--- a/sinaps/locale/pl/fusiondirectory.po
+++ b/sinaps/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/pt/fusiondirectory.po b/sinaps/locale/pt/fusiondirectory.po
index 6e651eb897..73bf7a03f1 100644
--- a/sinaps/locale/pt/fusiondirectory.po
+++ b/sinaps/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/pt_BR/fusiondirectory.po b/sinaps/locale/pt_BR/fusiondirectory.po
index 6cb30d6dcc..dd73fe4d44 100644
--- a/sinaps/locale/pt_BR/fusiondirectory.po
+++ b/sinaps/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ru/fusiondirectory.po b/sinaps/locale/ru/fusiondirectory.po
index 07b2aa7e6a..3516194aad 100644
--- a/sinaps/locale/ru/fusiondirectory.po
+++ b/sinaps/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ru@petr1708/fusiondirectory.po b/sinaps/locale/ru@petr1708/fusiondirectory.po
index 2238bf1736..57552ece90 100644
--- a/sinaps/locale/ru@petr1708/fusiondirectory.po
+++ b/sinaps/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: ru@petr1708\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/sv/fusiondirectory.po b/sinaps/locale/sv/fusiondirectory.po
index 2bdf451d97..6e1b8439be 100644
--- a/sinaps/locale/sv/fusiondirectory.po
+++ b/sinaps/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/tr_TR/fusiondirectory.po b/sinaps/locale/tr_TR/fusiondirectory.po
index c27c0abd1d..3576e1d35d 100644
--- a/sinaps/locale/tr_TR/fusiondirectory.po
+++ b/sinaps/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: tr_TR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/ug/fusiondirectory.po b/sinaps/locale/ug/fusiondirectory.po
index 1b50339c7d..bc3379dd30 100644
--- a/sinaps/locale/ug/fusiondirectory.po
+++ b/sinaps/locale/ug/fusiondirectory.po
@@ -8,27 +8,27 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/vi_VN/fusiondirectory.po b/sinaps/locale/vi_VN/fusiondirectory.po
index c6a4baf726..b00a6b6718 100644
--- a/sinaps/locale/vi_VN/fusiondirectory.po
+++ b/sinaps/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/zh/fusiondirectory.po b/sinaps/locale/zh/fusiondirectory.po
index 01a6714207..4e78a28e81 100644
--- a/sinaps/locale/zh/fusiondirectory.po
+++ b/sinaps/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -21,18 +21,18 @@ msgstr ""
 "Language: zh\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sinaps/locale/zh_TW/fusiondirectory.po b/sinaps/locale/zh_TW/fusiondirectory.po
index b76704cdf8..29c97b6ffc 100644
--- a/sinaps/locale/zh_TW/fusiondirectory.po
+++ b/sinaps/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -17,18 +17,18 @@ msgstr ""
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: include/class_sinapsDiffusionHandlerJob.inc:313
-#: include/class_sinapsDiffusionHandlerJob.inc:334
+#: include/class_sinapsDiffusionHandlerJob.inc:322
+#: include/class_sinapsDiffusionHandlerJob.inc:343
 #, php-format
 msgid "Failed to get password method for account \"%s\". It has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:330
+#: include/class_sinapsDiffusionHandlerJob.inc:339
 #, php-format
 msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!"
 msgstr ""
 
-#: include/class_sinapsDiffusionHandlerJob.inc:337
+#: include/class_sinapsDiffusionHandlerJob.inc:346
 #, php-format
 msgid "Could not find account \"%s\" in LDAP. It has not been locked!"
 msgstr ""
diff --git a/sogo/locale/af_ZA/fusiondirectory.po b/sogo/locale/af_ZA/fusiondirectory.po
index d1aace244d..283b07f344 100644
--- a/sogo/locale/af_ZA/fusiondirectory.po
+++ b/sogo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po
index c23f1345ba..29c9671f87 100644
--- a/sogo/locale/ar/fusiondirectory.po
+++ b/sogo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po
index 43d41754bd..eefee2fe1b 100644
--- a/sogo/locale/ca/fusiondirectory.po
+++ b/sogo/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po
index b07dcfd749..6bfef8c0e0 100644
--- a/sogo/locale/cs_CZ/fusiondirectory.po
+++ b/sogo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po
index 2d8637c363..d9e5bc02db 100644
--- a/sogo/locale/de/fusiondirectory.po
+++ b/sogo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po
index e8670c596e..b8063930df 100644
--- a/sogo/locale/el_GR/fusiondirectory.po
+++ b/sogo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po
index 13f51fc072..71e8849086 100644
--- a/sogo/locale/es/fusiondirectory.po
+++ b/sogo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po
index c514a3099c..0f1f16ea04 100644
--- a/sogo/locale/es_CO/fusiondirectory.po
+++ b/sogo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po
index ac06e1cedb..a4c7177e8b 100644
--- a/sogo/locale/es_VE/fusiondirectory.po
+++ b/sogo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po
index bae71683cb..5db73d6c75 100644
--- a/sogo/locale/fa_IR/fusiondirectory.po
+++ b/sogo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po
index 2d11741b16..66abae9132 100644
--- a/sogo/locale/fi_FI/fusiondirectory.po
+++ b/sogo/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po
index a5f66414a8..4b74d02b6c 100644
--- a/sogo/locale/fr/fusiondirectory.po
+++ b/sogo/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po
index 8c5470e36b..d5530cec36 100644
--- a/sogo/locale/hu_HU/fusiondirectory.po
+++ b/sogo/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po
index 39495b1f37..3a39bae691 100644
--- a/sogo/locale/id/fusiondirectory.po
+++ b/sogo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po
index 7423a1bb2b..f19c2cac9b 100644
--- a/sogo/locale/it_IT/fusiondirectory.po
+++ b/sogo/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sogo/locale/ja/fusiondirectory.po b/sogo/locale/ja/fusiondirectory.po
index 0b2e8a35ae..3d955acb0d 100644
--- a/sogo/locale/ja/fusiondirectory.po
+++ b/sogo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ko/fusiondirectory.po b/sogo/locale/ko/fusiondirectory.po
index 2fbd25f1f9..04d8c5a624 100644
--- a/sogo/locale/ko/fusiondirectory.po
+++ b/sogo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po
index 8e0c50771b..bad09e4d18 100644
--- a/sogo/locale/lv/fusiondirectory.po
+++ b/sogo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po
index 0fdd125adb..a9d642b559 100644
--- a/sogo/locale/nb/fusiondirectory.po
+++ b/sogo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po
index 5feaa94b0c..532600ead7 100644
--- a/sogo/locale/nl/fusiondirectory.po
+++ b/sogo/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po
index e821a0e7d7..b713fd0f4a 100644
--- a/sogo/locale/pl/fusiondirectory.po
+++ b/sogo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po
index d6cab7c030..c44ec16e2c 100644
--- a/sogo/locale/pt/fusiondirectory.po
+++ b/sogo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po
index 63e1fd82d6..f830dc1774 100644
--- a/sogo/locale/pt_BR/fusiondirectory.po
+++ b/sogo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po
index d40ceba9d7..e6ddc775e0 100644
--- a/sogo/locale/ru/fusiondirectory.po
+++ b/sogo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po
index e1e51f4eb4..81fbe84ceb 100644
--- a/sogo/locale/ru@petr1708/fusiondirectory.po
+++ b/sogo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po
index 68ee8f13ec..f768245fb3 100644
--- a/sogo/locale/sv/fusiondirectory.po
+++ b/sogo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sogo/locale/tr_TR/fusiondirectory.po b/sogo/locale/tr_TR/fusiondirectory.po
index f2eee8f0aa..af6908b580 100644
--- a/sogo/locale/tr_TR/fusiondirectory.po
+++ b/sogo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po
index 4129611511..0af960e421 100644
--- a/sogo/locale/ug/fusiondirectory.po
+++ b/sogo/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po
index a9acef5430..9bd22d89bb 100644
--- a/sogo/locale/vi_VN/fusiondirectory.po
+++ b/sogo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po
index 854940ea04..b86c885366 100644
--- a/sogo/locale/zh/fusiondirectory.po
+++ b/sogo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sogo/locale/zh_TW/fusiondirectory.po b/sogo/locale/zh_TW/fusiondirectory.po
index a3c8513480..585757232d 100644
--- a/sogo/locale/zh_TW/fusiondirectory.po
+++ b/sogo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/af_ZA/fusiondirectory.po b/spamassassin/locale/af_ZA/fusiondirectory.po
index fe34d93e09..12f37a475b 100644
--- a/spamassassin/locale/af_ZA/fusiondirectory.po
+++ b/spamassassin/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po
index 2853b142cf..af1cd770ce 100644
--- a/spamassassin/locale/ar/fusiondirectory.po
+++ b/spamassassin/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po
index 234a749f85..6bc833d247 100644
--- a/spamassassin/locale/ca/fusiondirectory.po
+++ b/spamassassin/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po
index fc4fc2804d..2a57c984d6 100644
--- a/spamassassin/locale/cs_CZ/fusiondirectory.po
+++ b/spamassassin/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po
index ebe7f7be0f..81b3cc4f9d 100644
--- a/spamassassin/locale/de/fusiondirectory.po
+++ b/spamassassin/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po
index aaec213c4e..323f884ec1 100644
--- a/spamassassin/locale/el_GR/fusiondirectory.po
+++ b/spamassassin/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po
index 3d7e679b5e..8e76a23b84 100644
--- a/spamassassin/locale/es/fusiondirectory.po
+++ b/spamassassin/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po
index 1974829170..ae7adc76fb 100644
--- a/spamassassin/locale/es_CO/fusiondirectory.po
+++ b/spamassassin/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po
index 9fb9fca4b1..55fa16b79a 100644
--- a/spamassassin/locale/es_VE/fusiondirectory.po
+++ b/spamassassin/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po
index a8917c67c3..badbd12b01 100644
--- a/spamassassin/locale/fa_IR/fusiondirectory.po
+++ b/spamassassin/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po
index e6c331fdd9..849e47008a 100644
--- a/spamassassin/locale/fi_FI/fusiondirectory.po
+++ b/spamassassin/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po
index 5f5072e770..44d3afbd78 100644
--- a/spamassassin/locale/fr/fusiondirectory.po
+++ b/spamassassin/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po
index 65b8003a92..8908df1cfa 100644
--- a/spamassassin/locale/hu_HU/fusiondirectory.po
+++ b/spamassassin/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po
index 1491f20868..c5e5dd9579 100644
--- a/spamassassin/locale/id/fusiondirectory.po
+++ b/spamassassin/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po
index cb8f46bffc..76b60c3b50 100644
--- a/spamassassin/locale/it_IT/fusiondirectory.po
+++ b/spamassassin/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/spamassassin/locale/ja/fusiondirectory.po b/spamassassin/locale/ja/fusiondirectory.po
index fcae62f41a..5697237423 100644
--- a/spamassassin/locale/ja/fusiondirectory.po
+++ b/spamassassin/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ko/fusiondirectory.po b/spamassassin/locale/ko/fusiondirectory.po
index 700817c982..7ad7bd3213 100644
--- a/spamassassin/locale/ko/fusiondirectory.po
+++ b/spamassassin/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po
index 1ba6e81ddf..eef9f87b6b 100644
--- a/spamassassin/locale/lv/fusiondirectory.po
+++ b/spamassassin/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po
index b7fb92ddd5..2dbbf5c180 100644
--- a/spamassassin/locale/nb/fusiondirectory.po
+++ b/spamassassin/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po
index b0949a4ac8..c1b5260b00 100644
--- a/spamassassin/locale/nl/fusiondirectory.po
+++ b/spamassassin/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po
index 2ff9697cad..a9e01034e2 100644
--- a/spamassassin/locale/pl/fusiondirectory.po
+++ b/spamassassin/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po
index e21397eb26..6b1deedb7e 100644
--- a/spamassassin/locale/pt/fusiondirectory.po
+++ b/spamassassin/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po
index 94146a8d22..d31988b8e8 100644
--- a/spamassassin/locale/pt_BR/fusiondirectory.po
+++ b/spamassassin/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po
index 5c4ac38457..2fcb92db6e 100644
--- a/spamassassin/locale/ru/fusiondirectory.po
+++ b/spamassassin/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po
index 5f1c87ad32..81b9bd115c 100644
--- a/spamassassin/locale/ru@petr1708/fusiondirectory.po
+++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po
index 145afe3394..2206d2b3d3 100644
--- a/spamassassin/locale/sv/fusiondirectory.po
+++ b/spamassassin/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/spamassassin/locale/tr_TR/fusiondirectory.po b/spamassassin/locale/tr_TR/fusiondirectory.po
index 418d998f74..a5cca34af7 100644
--- a/spamassassin/locale/tr_TR/fusiondirectory.po
+++ b/spamassassin/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po
index c88e329811..4ca03d59c3 100644
--- a/spamassassin/locale/ug/fusiondirectory.po
+++ b/spamassassin/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po
index 9ac730351b..11fce69453 100644
--- a/spamassassin/locale/vi_VN/fusiondirectory.po
+++ b/spamassassin/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po
index 42280b2bb3..349558bee4 100644
--- a/spamassassin/locale/zh/fusiondirectory.po
+++ b/spamassassin/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/spamassassin/locale/zh_TW/fusiondirectory.po b/spamassassin/locale/zh_TW/fusiondirectory.po
index 2bbad37c22..2b5c699627 100644
--- a/spamassassin/locale/zh_TW/fusiondirectory.po
+++ b/spamassassin/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/af_ZA/fusiondirectory.po b/squid/locale/af_ZA/fusiondirectory.po
index 8fe61e39e0..18593fbb67 100644
--- a/squid/locale/af_ZA/fusiondirectory.po
+++ b/squid/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po
index 15b2ba4e2b..b76069d57f 100644
--- a/squid/locale/ar/fusiondirectory.po
+++ b/squid/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po
index ba0b024a8b..ecdfcc072e 100644
--- a/squid/locale/ca/fusiondirectory.po
+++ b/squid/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po
index b48873c059..e3c0ee746f 100644
--- a/squid/locale/cs_CZ/fusiondirectory.po
+++ b/squid/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po
index 47cc5001e2..25f2b4389a 100644
--- a/squid/locale/de/fusiondirectory.po
+++ b/squid/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po
index 3e421158cf..42c2bfd882 100644
--- a/squid/locale/el_GR/fusiondirectory.po
+++ b/squid/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po
index daac41fc95..1984812390 100644
--- a/squid/locale/es/fusiondirectory.po
+++ b/squid/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po
index 3b6ea46796..293d4c8157 100644
--- a/squid/locale/es_CO/fusiondirectory.po
+++ b/squid/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po
index 6b23b73c47..6693e20656 100644
--- a/squid/locale/es_VE/fusiondirectory.po
+++ b/squid/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po
index 4c80d08fd8..a8c0652074 100644
--- a/squid/locale/fa_IR/fusiondirectory.po
+++ b/squid/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po
index 8c2b5a8770..1194df55f7 100644
--- a/squid/locale/fi_FI/fusiondirectory.po
+++ b/squid/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po
index 868eec5d74..3dd8abc82d 100644
--- a/squid/locale/fr/fusiondirectory.po
+++ b/squid/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po
index a9b0b6a6ef..9cfcaaf557 100644
--- a/squid/locale/hu_HU/fusiondirectory.po
+++ b/squid/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po
index 500dccc935..e79e064094 100644
--- a/squid/locale/id/fusiondirectory.po
+++ b/squid/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po
index 734f6904e0..697b1411b6 100644
--- a/squid/locale/it_IT/fusiondirectory.po
+++ b/squid/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/squid/locale/ja/fusiondirectory.po b/squid/locale/ja/fusiondirectory.po
index 952192473e..d671a5a2a9 100644
--- a/squid/locale/ja/fusiondirectory.po
+++ b/squid/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ko/fusiondirectory.po b/squid/locale/ko/fusiondirectory.po
index b34216a37c..88f4773f3b 100644
--- a/squid/locale/ko/fusiondirectory.po
+++ b/squid/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po
index 5186e08b15..b4ef1fce7e 100644
--- a/squid/locale/lv/fusiondirectory.po
+++ b/squid/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po
index d87cdcfa93..ad0631acc8 100644
--- a/squid/locale/nb/fusiondirectory.po
+++ b/squid/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po
index 8234ea2f59..6cf5420dc1 100644
--- a/squid/locale/nl/fusiondirectory.po
+++ b/squid/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po
index 74c250cdcc..d5ac601490 100644
--- a/squid/locale/pl/fusiondirectory.po
+++ b/squid/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po
index 719e45a3b3..faa417190b 100644
--- a/squid/locale/pt/fusiondirectory.po
+++ b/squid/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po
index 44942ca83a..d59401d7bb 100644
--- a/squid/locale/pt_BR/fusiondirectory.po
+++ b/squid/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po
index 00035e3df7..dcc8a5bcf5 100644
--- a/squid/locale/ru/fusiondirectory.po
+++ b/squid/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po
index 571cb102df..95bb4fa6cc 100644
--- a/squid/locale/ru@petr1708/fusiondirectory.po
+++ b/squid/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po
index 5693e4223b..a66c43cfc6 100644
--- a/squid/locale/sv/fusiondirectory.po
+++ b/squid/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/squid/locale/tr_TR/fusiondirectory.po b/squid/locale/tr_TR/fusiondirectory.po
index 8f1cda1222..0705d2defb 100644
--- a/squid/locale/tr_TR/fusiondirectory.po
+++ b/squid/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po
index c8facb13ec..ae6983ac14 100644
--- a/squid/locale/ug/fusiondirectory.po
+++ b/squid/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po
index 587da4c627..0b6095660d 100644
--- a/squid/locale/vi_VN/fusiondirectory.po
+++ b/squid/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po
index d7456a54c8..2f1cdfe28c 100644
--- a/squid/locale/zh/fusiondirectory.po
+++ b/squid/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/squid/locale/zh_TW/fusiondirectory.po b/squid/locale/zh_TW/fusiondirectory.po
index 480d0289f8..5103d641d6 100644
--- a/squid/locale/zh_TW/fusiondirectory.po
+++ b/squid/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/af_ZA/fusiondirectory.po b/ssh/locale/af_ZA/fusiondirectory.po
index 575cdce67c..bf54358ddf 100644
--- a/ssh/locale/af_ZA/fusiondirectory.po
+++ b/ssh/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po
index 896eb626d7..800dcafee2 100644
--- a/ssh/locale/ar/fusiondirectory.po
+++ b/ssh/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po
index a599d4cfde..c9ab65bafa 100644
--- a/ssh/locale/ca/fusiondirectory.po
+++ b/ssh/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po
index d7ddd6ecb9..4191f782c4 100644
--- a/ssh/locale/cs_CZ/fusiondirectory.po
+++ b/ssh/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po
index 09d03968a8..1d025d7a9e 100644
--- a/ssh/locale/de/fusiondirectory.po
+++ b/ssh/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po
index f5ff390c6c..5ad17bcc3f 100644
--- a/ssh/locale/el_GR/fusiondirectory.po
+++ b/ssh/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po
index 48771d8fdc..2434962ac3 100644
--- a/ssh/locale/es/fusiondirectory.po
+++ b/ssh/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po
index b66e986967..631ef2825c 100644
--- a/ssh/locale/es_CO/fusiondirectory.po
+++ b/ssh/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po
index 34396af5a1..fb34642b98 100644
--- a/ssh/locale/es_VE/fusiondirectory.po
+++ b/ssh/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po
index 2a0d2893e4..0c6befd2c1 100644
--- a/ssh/locale/fa_IR/fusiondirectory.po
+++ b/ssh/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po
index b7c8b189c0..7c75650837 100644
--- a/ssh/locale/fi_FI/fusiondirectory.po
+++ b/ssh/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po
index 7d0c8baf5f..7cd04bfcc7 100644
--- a/ssh/locale/fr/fusiondirectory.po
+++ b/ssh/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po
index 2d2c541b05..ad1a25d7cb 100644
--- a/ssh/locale/hu_HU/fusiondirectory.po
+++ b/ssh/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po
index 365693a9ab..966f678335 100644
--- a/ssh/locale/id/fusiondirectory.po
+++ b/ssh/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po
index 10659019de..8228b6496a 100644
--- a/ssh/locale/it_IT/fusiondirectory.po
+++ b/ssh/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/ssh/locale/ja/fusiondirectory.po b/ssh/locale/ja/fusiondirectory.po
index 3e87461e62..8a55188bc3 100644
--- a/ssh/locale/ja/fusiondirectory.po
+++ b/ssh/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ko/fusiondirectory.po b/ssh/locale/ko/fusiondirectory.po
index d45e128f79..daefea3f3a 100644
--- a/ssh/locale/ko/fusiondirectory.po
+++ b/ssh/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po
index 2223efc4ed..8350a8268f 100644
--- a/ssh/locale/lv/fusiondirectory.po
+++ b/ssh/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po
index f64ec72a15..9f9dcc162f 100644
--- a/ssh/locale/nb/fusiondirectory.po
+++ b/ssh/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po
index 6fabb8ee50..acc6680c96 100644
--- a/ssh/locale/nl/fusiondirectory.po
+++ b/ssh/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po
index 2dcbe557ce..703c2d8eba 100644
--- a/ssh/locale/pl/fusiondirectory.po
+++ b/ssh/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po
index 35cfdab5b5..a730cd5b31 100644
--- a/ssh/locale/pt/fusiondirectory.po
+++ b/ssh/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po
index 097d7aec50..e0aa71719b 100644
--- a/ssh/locale/pt_BR/fusiondirectory.po
+++ b/ssh/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po
index f81ea971bb..99d5edaafe 100644
--- a/ssh/locale/ru/fusiondirectory.po
+++ b/ssh/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po
index 13f95f4e10..4a01dc8abc 100644
--- a/ssh/locale/ru@petr1708/fusiondirectory.po
+++ b/ssh/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po
index 96742280ef..e8f9d295dd 100644
--- a/ssh/locale/sv/fusiondirectory.po
+++ b/ssh/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/tr_TR/fusiondirectory.po b/ssh/locale/tr_TR/fusiondirectory.po
index 60dfc8bf9b..56f0e2df30 100644
--- a/ssh/locale/tr_TR/fusiondirectory.po
+++ b/ssh/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,15 +27,15 @@ msgstr ""
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Unknown public key format!"
-msgstr ""
+msgstr "Bilinmeyen ortak anahtar biçimi!"
 
 #: personal/ssh/class_sshAccount.inc:84
 msgid "SSH Keys"
-msgstr ""
+msgstr "SSH Anahtarları"
 
 #: personal/ssh/class_sshAccount.inc:90
 msgid "SSH public keys for this user"
-msgstr ""
+msgstr "Bu kullanıcı için SSH açık anahtarları"
 
 #: personal/ssh/class_sshAccount.inc:107
 msgid "SSH"
@@ -39,9 +43,9 @@ msgstr ""
 
 #: personal/ssh/class_sshAccount.inc:108
 msgid "Edit user's SSH public keys"
-msgstr ""
+msgstr "Kullanıcının SSH açık anahtarlarını düzenleme"
 
 #: personal/ssh/class_sshAccount.inc:130
 #, php-format
 msgid "Error : there are several keys with fingerprint %s"
-msgstr ""
+msgstr "Hata: parmak izine sahip birkaç anahtar var. %s"
diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po
index 8098e3bae3..400c745033 100644
--- a/ssh/locale/ug/fusiondirectory.po
+++ b/ssh/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po
index a186c86946..0b70857085 100644
--- a/ssh/locale/vi_VN/fusiondirectory.po
+++ b/ssh/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po
index 0858e24c17..46516a5b19 100644
--- a/ssh/locale/zh/fusiondirectory.po
+++ b/ssh/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh_TW/fusiondirectory.po b/ssh/locale/zh_TW/fusiondirectory.po
index 604944f413..7d35caa8e4 100644
--- a/ssh/locale/zh_TW/fusiondirectory.po
+++ b/ssh/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/af_ZA/fusiondirectory.po b/subcontracting/locale/af_ZA/fusiondirectory.po
index 23e51d96eb..94cc78708a 100644
--- a/subcontracting/locale/af_ZA/fusiondirectory.po
+++ b/subcontracting/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po
index 23f3ce33c2..a1156503d5 100644
--- a/subcontracting/locale/ar/fusiondirectory.po
+++ b/subcontracting/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po
index dd161cc1c1..78d96b47ab 100644
--- a/subcontracting/locale/ca/fusiondirectory.po
+++ b/subcontracting/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po
index edf69cbd4c..3672f25862 100644
--- a/subcontracting/locale/cs_CZ/fusiondirectory.po
+++ b/subcontracting/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po
index faf59eea46..2e580cde01 100644
--- a/subcontracting/locale/de/fusiondirectory.po
+++ b/subcontracting/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po
index 183731a29e..c66c958fba 100644
--- a/subcontracting/locale/el_GR/fusiondirectory.po
+++ b/subcontracting/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po
index ac685cc2ae..cad288fc19 100644
--- a/subcontracting/locale/es/fusiondirectory.po
+++ b/subcontracting/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po
index 0b1b260e8d..a6abe8f6ab 100644
--- a/subcontracting/locale/es_CO/fusiondirectory.po
+++ b/subcontracting/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po
index 5cf7933abd..99e1a62c28 100644
--- a/subcontracting/locale/es_VE/fusiondirectory.po
+++ b/subcontracting/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po
index b0168d8684..26d9d4f59c 100644
--- a/subcontracting/locale/fa_IR/fusiondirectory.po
+++ b/subcontracting/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po
index f09c2fc9ac..7aae1fac08 100644
--- a/subcontracting/locale/fi_FI/fusiondirectory.po
+++ b/subcontracting/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po
index 6b110c1072..dd5d3b4013 100644
--- a/subcontracting/locale/fr/fusiondirectory.po
+++ b/subcontracting/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po
index f7b4f437c3..cc830118cd 100644
--- a/subcontracting/locale/hu_HU/fusiondirectory.po
+++ b/subcontracting/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po
index 1fbdc1604a..9043624888 100644
--- a/subcontracting/locale/id/fusiondirectory.po
+++ b/subcontracting/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po
index 727da6deed..c93865ccde 100644
--- a/subcontracting/locale/it_IT/fusiondirectory.po
+++ b/subcontracting/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/subcontracting/locale/ja/fusiondirectory.po b/subcontracting/locale/ja/fusiondirectory.po
index b35dba4e16..d979a023ac 100644
--- a/subcontracting/locale/ja/fusiondirectory.po
+++ b/subcontracting/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ko/fusiondirectory.po b/subcontracting/locale/ko/fusiondirectory.po
index c115a36666..1c28e99fe3 100644
--- a/subcontracting/locale/ko/fusiondirectory.po
+++ b/subcontracting/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po
index f723a60adf..3103f9046e 100644
--- a/subcontracting/locale/lv/fusiondirectory.po
+++ b/subcontracting/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po
index 024de881a5..9bdf60656a 100644
--- a/subcontracting/locale/nb/fusiondirectory.po
+++ b/subcontracting/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po
index c23472114b..755e3d24b2 100644
--- a/subcontracting/locale/nl/fusiondirectory.po
+++ b/subcontracting/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po
index 7c4223e752..b10420ac3c 100644
--- a/subcontracting/locale/pl/fusiondirectory.po
+++ b/subcontracting/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po
index a98bc879f8..ad02732ed8 100644
--- a/subcontracting/locale/pt/fusiondirectory.po
+++ b/subcontracting/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po
index bc15f1a651..a5f6c13230 100644
--- a/subcontracting/locale/pt_BR/fusiondirectory.po
+++ b/subcontracting/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po
index e08cf72fe6..01e6787642 100644
--- a/subcontracting/locale/ru/fusiondirectory.po
+++ b/subcontracting/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po
index fa43ca7f79..8387f6f41e 100644
--- a/subcontracting/locale/ru@petr1708/fusiondirectory.po
+++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po
index 5560cfdb92..f4daa9abb8 100644
--- a/subcontracting/locale/sv/fusiondirectory.po
+++ b/subcontracting/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/subcontracting/locale/tr_TR/fusiondirectory.po b/subcontracting/locale/tr_TR/fusiondirectory.po
index 9036783cd9..7d73157786 100644
--- a/subcontracting/locale/tr_TR/fusiondirectory.po
+++ b/subcontracting/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po
index 56bb5e99f1..85497c7039 100644
--- a/subcontracting/locale/ug/fusiondirectory.po
+++ b/subcontracting/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po
index 6d8fb83278..a0fea1f7d3 100644
--- a/subcontracting/locale/vi_VN/fusiondirectory.po
+++ b/subcontracting/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po
index a915d603c7..3a2a7f4be0 100644
--- a/subcontracting/locale/zh/fusiondirectory.po
+++ b/subcontracting/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/subcontracting/locale/zh_TW/fusiondirectory.po b/subcontracting/locale/zh_TW/fusiondirectory.po
index b93daeb852..6ce906280a 100644
--- a/subcontracting/locale/zh_TW/fusiondirectory.po
+++ b/subcontracting/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/af_ZA/fusiondirectory.po b/sudo/locale/af_ZA/fusiondirectory.po
index 4a79d670ae..64c135b8c6 100644
--- a/sudo/locale/af_ZA/fusiondirectory.po
+++ b/sudo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po
index 732f04dda4..35bfc8cbc9 100644
--- a/sudo/locale/ar/fusiondirectory.po
+++ b/sudo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po
index e49efe0d76..068b2e078b 100644
--- a/sudo/locale/ca/fusiondirectory.po
+++ b/sudo/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po
index 4b1dc6cfb2..ac05ac062c 100644
--- a/sudo/locale/cs_CZ/fusiondirectory.po
+++ b/sudo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po
index 0b9dff1825..75680e80e0 100644
--- a/sudo/locale/de/fusiondirectory.po
+++ b/sudo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po
index a70b5bab0c..5acb121f76 100644
--- a/sudo/locale/el_GR/fusiondirectory.po
+++ b/sudo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po
index aafafdf7bf..aaf338c07b 100644
--- a/sudo/locale/es/fusiondirectory.po
+++ b/sudo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po
index 016597c29d..97683235b6 100644
--- a/sudo/locale/es_CO/fusiondirectory.po
+++ b/sudo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po
index f032ef6d65..20afffa261 100644
--- a/sudo/locale/es_VE/fusiondirectory.po
+++ b/sudo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po
index 1e87d9db85..13270e1723 100644
--- a/sudo/locale/fa_IR/fusiondirectory.po
+++ b/sudo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po
index 2d7665ffd6..d30bf085ff 100644
--- a/sudo/locale/fi_FI/fusiondirectory.po
+++ b/sudo/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po
index 26050c31d6..1a221403af 100644
--- a/sudo/locale/fr/fusiondirectory.po
+++ b/sudo/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po
index 135fc5dfd6..7666fdd315 100644
--- a/sudo/locale/hu_HU/fusiondirectory.po
+++ b/sudo/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po
index 3b27f42649..9b5f10b2ba 100644
--- a/sudo/locale/id/fusiondirectory.po
+++ b/sudo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index 204cd2b8e4..b07ea57fe7 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sudo/locale/ja/fusiondirectory.po b/sudo/locale/ja/fusiondirectory.po
index d1c393befd..6a0dad7316 100644
--- a/sudo/locale/ja/fusiondirectory.po
+++ b/sudo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ko/fusiondirectory.po b/sudo/locale/ko/fusiondirectory.po
index a48363e0b6..e88d74c53f 100644
--- a/sudo/locale/ko/fusiondirectory.po
+++ b/sudo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po
index 8369717b27..25992b3487 100644
--- a/sudo/locale/lv/fusiondirectory.po
+++ b/sudo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po
index 2787eca9a5..b8df116e94 100644
--- a/sudo/locale/nb/fusiondirectory.po
+++ b/sudo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po
index 6ccd03050c..f5c177d93e 100644
--- a/sudo/locale/nl/fusiondirectory.po
+++ b/sudo/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po
index c719cd1857..0923954525 100644
--- a/sudo/locale/pl/fusiondirectory.po
+++ b/sudo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po
index b763d51aca..19c5ff5bae 100644
--- a/sudo/locale/pt/fusiondirectory.po
+++ b/sudo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po
index cc49e66696..636e6dbb05 100644
--- a/sudo/locale/pt_BR/fusiondirectory.po
+++ b/sudo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po
index 865bed5682..2e0671e69e 100644
--- a/sudo/locale/ru/fusiondirectory.po
+++ b/sudo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po
index 08ead5ed93..563bebcf31 100644
--- a/sudo/locale/ru@petr1708/fusiondirectory.po
+++ b/sudo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po
index 17c413c310..da8729412e 100644
--- a/sudo/locale/sv/fusiondirectory.po
+++ b/sudo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sudo/locale/tr_TR/fusiondirectory.po b/sudo/locale/tr_TR/fusiondirectory.po
index 93c3f66027..cf890fce70 100644
--- a/sudo/locale/tr_TR/fusiondirectory.po
+++ b/sudo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po
index 23ca388ca4..309a1d579a 100644
--- a/sudo/locale/ug/fusiondirectory.po
+++ b/sudo/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po
index 42f366705b..4a0ad9cc47 100644
--- a/sudo/locale/vi_VN/fusiondirectory.po
+++ b/sudo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po
index 6524fde010..873ab49631 100644
--- a/sudo/locale/zh/fusiondirectory.po
+++ b/sudo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sudo/locale/zh_TW/fusiondirectory.po b/sudo/locale/zh_TW/fusiondirectory.po
index 5df6e4cbee..1e770c16c5 100644
--- a/sudo/locale/zh_TW/fusiondirectory.po
+++ b/sudo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/af_ZA/fusiondirectory.po b/supann/locale/af_ZA/fusiondirectory.po
index 9468155832..a6d4160539 100644
--- a/supann/locale/af_ZA/fusiondirectory.po
+++ b/supann/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po
index f10761d5a4..76a6fc99f1 100644
--- a/supann/locale/ar/fusiondirectory.po
+++ b/supann/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po
index 8f566e25c3..e6aa65e94e 100644
--- a/supann/locale/ca/fusiondirectory.po
+++ b/supann/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po
index 41c3e91c1c..8fa762d02b 100644
--- a/supann/locale/cs_CZ/fusiondirectory.po
+++ b/supann/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po
index 26d291fafc..5fda0be1b0 100644
--- a/supann/locale/de/fusiondirectory.po
+++ b/supann/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po
index a2f04cbfa3..1077c3cf46 100644
--- a/supann/locale/el_GR/fusiondirectory.po
+++ b/supann/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po
index b206ea3651..9f81620e95 100644
--- a/supann/locale/es/fusiondirectory.po
+++ b/supann/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po
index 6dbfbf9c4c..06538e82c3 100644
--- a/supann/locale/es_CO/fusiondirectory.po
+++ b/supann/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po
index d649dc06d5..5de30c480b 100644
--- a/supann/locale/es_VE/fusiondirectory.po
+++ b/supann/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po
index 7fc890169b..4cf7e10948 100644
--- a/supann/locale/fa_IR/fusiondirectory.po
+++ b/supann/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po
index fbbb3a2845..0bde0dbdae 100644
--- a/supann/locale/fi_FI/fusiondirectory.po
+++ b/supann/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po
index 2563a0f3bb..8e2684b692 100644
--- a/supann/locale/fr/fusiondirectory.po
+++ b/supann/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po
index ef9e32ecaf..5bbe32419e 100644
--- a/supann/locale/hu_HU/fusiondirectory.po
+++ b/supann/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po
index ee18c442c2..b4cf94ac35 100644
--- a/supann/locale/id/fusiondirectory.po
+++ b/supann/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index 07b06a116e..8c6e38491e 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/supann/locale/ja/fusiondirectory.po b/supann/locale/ja/fusiondirectory.po
index 569bff78c0..9b2f34b759 100644
--- a/supann/locale/ja/fusiondirectory.po
+++ b/supann/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ko/fusiondirectory.po b/supann/locale/ko/fusiondirectory.po
index 6c3ce712b1..767ff0e2e2 100644
--- a/supann/locale/ko/fusiondirectory.po
+++ b/supann/locale/ko/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# Choi Chris <chulwon.choi@gmail.com>, 2020
+# Choi Chris <chulwon.choi@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
+"Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,11 +29,11 @@ msgstr "설립"
 
 #: admin/supannStructures/class_etablissement.inc:33
 msgid "SupAnn Establishment Settings"
-msgstr ""
+msgstr "SupAnn 설립 설정"
 
 #: admin/supannStructures/class_etablissement.inc:35
 msgid "SupAnn Establishment"
-msgstr ""
+msgstr "SupAnn 설립"
 
 #: admin/supannStructures/class_etablissement.inc:52
 msgid "Properties"
@@ -41,11 +41,11 @@ msgstr "설정"
 
 #: admin/supannStructures/class_etablissement.inc:55
 msgid "Root establishment"
-msgstr ""
+msgstr "Root 설립"
 
 #: admin/supannStructures/class_etablissement.inc:55
 msgid "Set this establishment as the root one"
-msgstr ""
+msgstr "이 시설을 root로 설정"
 
 #: admin/supannStructures/class_etablissement.inc:59
 #: admin/supannStructures/class_entite.inc:55
@@ -54,7 +54,7 @@ msgstr "명칭"
 
 #: admin/supannStructures/class_etablissement.inc:59
 msgid "The name to write in the o attribute for this establishment"
-msgstr ""
+msgstr "이 시설의 o 속성에 쓸 이름"
 
 #: admin/supannStructures/class_etablissement.inc:63
 #: admin/supannStructures/class_entite.inc:59
@@ -63,7 +63,7 @@ msgstr "설명"
 
 #: admin/supannStructures/class_etablissement.inc:63
 msgid "A short description of this establishment"
-msgstr ""
+msgstr "이 시설에 대한 간단한 설명"
 
 #: admin/supannStructures/class_etablissement.inc:69
 #: admin/supannStructures/class_etablissement.inc:72
@@ -72,7 +72,7 @@ msgstr "위치"
 
 #: admin/supannStructures/class_etablissement.inc:72
 msgid "Usually the city where this establishment is"
-msgstr ""
+msgstr "보통 이 시설이 있는 도시"
 
 #: admin/supannStructures/class_etablissement.inc:76
 msgid "Address"
@@ -80,7 +80,7 @@ msgstr "주소"
 
 #: admin/supannStructures/class_etablissement.inc:76
 msgid "The postal address of this establishment"
-msgstr ""
+msgstr "이 시설의 우편 주소"
 
 #: admin/supannStructures/class_etablissement.inc:80
 #: admin/supannStructures/class_entite.inc:68
@@ -89,7 +89,7 @@ msgstr "ì „í™”"
 
 #: admin/supannStructures/class_etablissement.inc:80
 msgid "Phone number of this establishment"
-msgstr ""
+msgstr "이 시설의 전화 번호"
 
 #: admin/supannStructures/class_etablissement.inc:84
 #: admin/supannStructures/class_entite.inc:72
@@ -98,11 +98,11 @@ msgstr "팩스"
 
 #: admin/supannStructures/class_etablissement.inc:84
 msgid "Fax number of this establishment"
-msgstr ""
+msgstr "이 시설의 팩스 번호"
 
 #: admin/supannStructures/class_etablissement.inc:90
 msgid "SupAnn properties"
-msgstr ""
+msgstr "SUPANN 속성"
 
 #: admin/supannStructures/class_etablissement.inc:93
 msgid "Establishment code"
@@ -110,33 +110,33 @@ msgstr "시설 코드"
 
 #: admin/supannStructures/class_etablissement.inc:93
 msgid "The code of this establishment (must have a prefix between {})"
-msgstr ""
+msgstr "이 시설의 코드 ({} 사이에 접두사가 있어야 함)"
 
 #: admin/supannStructures/class_etablissement.inc:98
 msgid "Establishment type"
-msgstr ""
+msgstr "시설 유형"
 
 #: admin/supannStructures/class_etablissement.inc:98
 msgid "The SupAnn type that best fits this Establishment"
-msgstr ""
+msgstr "이 시설에 가장 잘 맞는 SupAnn 유형"
 
 #: admin/supannStructures/class_etablissement.inc:102
 msgid "SupAnn code"
-msgstr ""
+msgstr "SupAnn 코드"
 
 #: admin/supannStructures/class_etablissement.inc:102
 msgid "The SupAnn code for this establishment"
-msgstr ""
+msgstr "이 시설의 SupAnn 코드"
 
 #: admin/supannStructures/class_etablissement.inc:108
 #: admin/supannStructures/class_entite.inc:95
 msgid "Parent entities"
-msgstr ""
+msgstr "부모 엔터티"
 
 #: admin/supannStructures/class_etablissement.inc:108
 #: admin/supannStructures/class_entite.inc:95
 msgid "The parent entities of this entity"
-msgstr ""
+msgstr "이 엔티티의 상위 엔티티"
 
 #: admin/supannStructures/class_etablissement.inc:114
 #: admin/supannStructures/class_entite.inc:101
@@ -154,7 +154,7 @@ msgstr "법적 이름"
 
 #: admin/supannStructures/class_etablissement.inc:122
 msgid "The legal name of this establishment"
-msgstr ""
+msgstr "이 시설의 법적 이름"
 
 #: admin/supannStructures/class_etablissement.inc:126
 msgid "Home page URI"
@@ -162,7 +162,7 @@ msgstr "홈페이지 URI"
 
 #: admin/supannStructures/class_etablissement.inc:126
 msgid "The URI of this establishment website home page"
-msgstr ""
+msgstr "이 시설 웹사이트 홈페이지의 URI"
 
 #: admin/supannStructures/class_etablissement.inc:130
 msgid "Institution URI"
@@ -170,7 +170,7 @@ msgstr "기관 URI"
 
 #: admin/supannStructures/class_etablissement.inc:130
 msgid "The URI of this establishment institution website"
-msgstr ""
+msgstr "이 설립 기관 웹사이트의 URI"
 
 #: admin/supannStructures/class_etablissement.inc:134
 msgid "White pages URI"
@@ -178,7 +178,7 @@ msgstr "화이트 페이지 URI"
 
 #: admin/supannStructures/class_etablissement.inc:134
 msgid "The URI of this establishment white pages"
-msgstr ""
+msgstr "이 시설 화이트 페이지의 URI"
 
 #: admin/supannStructures/class_etablissement.inc:186
 #: admin/supannStructures/class_etablissement.inc:259
@@ -191,7 +191,7 @@ msgstr ""
 
 #: admin/supannStructures/class_supannStructuresManagement.inc:36
 msgid "SupAnn structures management"
-msgstr ""
+msgstr "Supann 구조 관리"
 
 #: admin/supannStructures/class_supann.inc:53
 msgid "File error"
@@ -210,11 +210,11 @@ msgstr "엔티티"
 
 #: admin/supannStructures/class_entite.inc:33
 msgid "SupAnn Entity Settings"
-msgstr ""
+msgstr "SupAnn 엔티티 설정"
 
 #: admin/supannStructures/class_entite.inc:35
 msgid "SupAnn Entity"
-msgstr ""
+msgstr "SupAnn 엔티티"
 
 #: admin/supannStructures/class_entite.inc:55
 msgid "The name to write in the ou attribute for this entity"
@@ -230,11 +230,11 @@ msgstr "관리적인 정보"
 
 #: admin/supannStructures/class_entite.inc:68
 msgid "Phone number of this entity"
-msgstr ""
+msgstr "이 엔티티의 전화 번호"
 
 #: admin/supannStructures/class_entite.inc:72
 msgid "Fax number of this entity"
-msgstr ""
+msgstr "이 엔티티의 팩스 번호"
 
 #: admin/supannStructures/class_entite.inc:76
 msgid "Postal address"
@@ -246,7 +246,7 @@ msgstr "이 엔티티의 우편 주소"
 
 #: admin/supannStructures/class_entite.inc:82
 msgid "SupAnn information"
-msgstr ""
+msgstr "SupAnn ì •ë³´"
 
 #: admin/supannStructures/class_entite.inc:85
 #: personal/supann/class_supannAccount.inc:459
@@ -255,7 +255,7 @@ msgstr "엔터티 유형"
 
 #: admin/supannStructures/class_entite.inc:85
 msgid "The SupAnn type that best fits this entity"
-msgstr ""
+msgstr "이 시설에 가장 잘 맞는 SupAnn 유형"
 
 #: admin/supannStructures/class_entite.inc:89
 msgid "Entity code"
@@ -263,15 +263,15 @@ msgstr "엔티티 코드"
 
 #: admin/supannStructures/class_entite.inc:89
 msgid "The SupAnn code of this entity"
-msgstr ""
+msgstr "이 엔티티의 SupAnn 코드"
 
 #: config/supann/class_supannConfig.inc:28
 msgid "SupAnn configuration"
-msgstr ""
+msgstr "SupAnn 구성"
 
 #: config/supann/class_supannConfig.inc:29
 msgid "FusionDirectory SupAnn plugin configuration"
-msgstr ""
+msgstr "FusionDirectory SupAnn 플러그인 구성"
 
 #: config/supann/class_supannConfig.inc:41
 #: personal/supann/class_supannAccount.inc:224
@@ -280,21 +280,21 @@ msgstr "SupAnn"
 
 #: config/supann/class_supannConfig.inc:44
 msgid "SupAnn RDN"
-msgstr ""
+msgstr "SupAnn RDN"
 
 #: config/supann/class_supannConfig.inc:44
 msgid "Branch in which SupAnn structures will be stored"
-msgstr ""
+msgstr "SupAnn 구조가 저장될 브랜치"
 
 #: config/supann/class_supannConfig.inc:49
 msgid "SupAnn mail for recovery"
-msgstr ""
+msgstr "복구를 위한 SupAnn 메일"
 
 #: config/supann/class_supannConfig.inc:49
 msgid ""
 "Allow the use of mail addresses from the personal mail address field from "
 "SupAnn account for password recovery"
-msgstr ""
+msgstr "비밀번호 복구를 위해 SupAnn 계정의 개인 메일 주소 필드에서 메일 주소 사용 허용"
 
 #: personal/supann/class_supannAccount.inc:36
 #: personal/supann/class_supannAccount.inc:119
diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po
index ee98bf0ad7..1667313758 100644
--- a/supann/locale/lv/fusiondirectory.po
+++ b/supann/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po
index 26c92ec5fd..a3a877ed3d 100644
--- a/supann/locale/nb/fusiondirectory.po
+++ b/supann/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po
index 51de50b633..d15e868fc9 100644
--- a/supann/locale/nl/fusiondirectory.po
+++ b/supann/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po
index 08c3169298..022bc53478 100644
--- a/supann/locale/pl/fusiondirectory.po
+++ b/supann/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po
index 628e0db66e..fff4b9a06c 100644
--- a/supann/locale/pt/fusiondirectory.po
+++ b/supann/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po
index 629c9b33ae..6d05d63eb6 100644
--- a/supann/locale/pt_BR/fusiondirectory.po
+++ b/supann/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po
index fb9b5427d4..e44dab1fb3 100644
--- a/supann/locale/ru/fusiondirectory.po
+++ b/supann/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po
index 2ab80fe040..40ee76bbab 100644
--- a/supann/locale/ru@petr1708/fusiondirectory.po
+++ b/supann/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po
index c6d35956eb..7dda7afed5 100644
--- a/supann/locale/sv/fusiondirectory.po
+++ b/supann/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/supann/locale/tr_TR/fusiondirectory.po b/supann/locale/tr_TR/fusiondirectory.po
index da9eb55420..eb8de33150 100644
--- a/supann/locale/tr_TR/fusiondirectory.po
+++ b/supann/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po
index 6273acd35d..241f5d445c 100644
--- a/supann/locale/ug/fusiondirectory.po
+++ b/supann/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po
index 78a3d04b23..bc08ba3a3b 100644
--- a/supann/locale/vi_VN/fusiondirectory.po
+++ b/supann/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po
index 42fafbc0b0..45f9b1eec5 100644
--- a/supann/locale/zh/fusiondirectory.po
+++ b/supann/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/supann/locale/zh_TW/fusiondirectory.po b/supann/locale/zh_TW/fusiondirectory.po
index ec2318497e..ea5877af41 100644
--- a/supann/locale/zh_TW/fusiondirectory.po
+++ b/supann/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/af_ZA/fusiondirectory.po b/sympa/locale/af_ZA/fusiondirectory.po
index 8d824c7c90..c9f3c395f1 100644
--- a/sympa/locale/af_ZA/fusiondirectory.po
+++ b/sympa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po
index 0d8d17994f..1557e31997 100644
--- a/sympa/locale/ar/fusiondirectory.po
+++ b/sympa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po
index 5cb0bc0f74..f5e5636568 100644
--- a/sympa/locale/ca/fusiondirectory.po
+++ b/sympa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po
index 3c9b508026..de0d2df5ee 100644
--- a/sympa/locale/cs_CZ/fusiondirectory.po
+++ b/sympa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po
index 94ad9ad874..75ee778abd 100644
--- a/sympa/locale/de/fusiondirectory.po
+++ b/sympa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po
index 1b730d9393..61bdff2670 100644
--- a/sympa/locale/el_GR/fusiondirectory.po
+++ b/sympa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po
index 95aec0e55c..f0935349be 100644
--- a/sympa/locale/es/fusiondirectory.po
+++ b/sympa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po
index fb03edf226..fe69f86e41 100644
--- a/sympa/locale/es_CO/fusiondirectory.po
+++ b/sympa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po
index 8bbaa69d82..6da47a3c2b 100644
--- a/sympa/locale/es_VE/fusiondirectory.po
+++ b/sympa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po
index 4546c778f5..4df19c30e5 100644
--- a/sympa/locale/fa_IR/fusiondirectory.po
+++ b/sympa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po
index 7fdcdb65cd..dd8ab6fc11 100644
--- a/sympa/locale/fi_FI/fusiondirectory.po
+++ b/sympa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po
index 8dcaf18601..72b6d18f4d 100644
--- a/sympa/locale/fr/fusiondirectory.po
+++ b/sympa/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po
index 26dbc5b7f5..037a4ae480 100644
--- a/sympa/locale/hu_HU/fusiondirectory.po
+++ b/sympa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po
index 7018eabfd4..5f5c45eb8a 100644
--- a/sympa/locale/id/fusiondirectory.po
+++ b/sympa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po
index d0d71f1ea5..f19958b014 100644
--- a/sympa/locale/it_IT/fusiondirectory.po
+++ b/sympa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/sympa/locale/ja/fusiondirectory.po b/sympa/locale/ja/fusiondirectory.po
index 59185e05a8..78e07e9c14 100644
--- a/sympa/locale/ja/fusiondirectory.po
+++ b/sympa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ko/fusiondirectory.po b/sympa/locale/ko/fusiondirectory.po
index 3ebaa8fa61..11b1dc700a 100644
--- a/sympa/locale/ko/fusiondirectory.po
+++ b/sympa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po
index 3448499da3..a9bf737c5c 100644
--- a/sympa/locale/lv/fusiondirectory.po
+++ b/sympa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po
index 7bf133fad7..bed388f21a 100644
--- a/sympa/locale/nb/fusiondirectory.po
+++ b/sympa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po
index 3b96030f9c..4652ba8b3d 100644
--- a/sympa/locale/nl/fusiondirectory.po
+++ b/sympa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po
index 7e0aafea2a..e866442726 100644
--- a/sympa/locale/pl/fusiondirectory.po
+++ b/sympa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po
index 320792c752..06324c07b7 100644
--- a/sympa/locale/pt/fusiondirectory.po
+++ b/sympa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po
index 9cfce2ccaa..d88d990f87 100644
--- a/sympa/locale/pt_BR/fusiondirectory.po
+++ b/sympa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po
index 3e6ec56f93..ce7b52b677 100644
--- a/sympa/locale/ru/fusiondirectory.po
+++ b/sympa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po
index 0521012d1b..fe65625d3b 100644
--- a/sympa/locale/ru@petr1708/fusiondirectory.po
+++ b/sympa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po
index 51ec963af6..607a436a48 100644
--- a/sympa/locale/sv/fusiondirectory.po
+++ b/sympa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sympa/locale/tr_TR/fusiondirectory.po b/sympa/locale/tr_TR/fusiondirectory.po
index 46a0776ea8..7384b1507e 100644
--- a/sympa/locale/tr_TR/fusiondirectory.po
+++ b/sympa/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po
index 352a0c32d9..46de90ea91 100644
--- a/sympa/locale/ug/fusiondirectory.po
+++ b/sympa/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po
index 48ac1a2546..920c63dee1 100644
--- a/sympa/locale/vi_VN/fusiondirectory.po
+++ b/sympa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po
index ee139b180d..bad9ea0cdf 100644
--- a/sympa/locale/zh/fusiondirectory.po
+++ b/sympa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sympa/locale/zh_TW/fusiondirectory.po b/sympa/locale/zh_TW/fusiondirectory.po
index 984f1e0c78..b7b0b520eb 100644
--- a/sympa/locale/zh_TW/fusiondirectory.po
+++ b/sympa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/af_ZA/fusiondirectory.po b/systems/locale/af_ZA/fusiondirectory.po
index ec08f493a6..c63777d25b 100644
--- a/systems/locale/af_ZA/fusiondirectory.po
+++ b/systems/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po
index d1c0b972b7..9e15a356da 100644
--- a/systems/locale/ar/fusiondirectory.po
+++ b/systems/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po
index 2a3f932f9d..4411c4d458 100644
--- a/systems/locale/ca/fusiondirectory.po
+++ b/systems/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po
index 0eacf2d7a6..0f893de974 100644
--- a/systems/locale/cs_CZ/fusiondirectory.po
+++ b/systems/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po
index de59f1280a..c8b74b1fda 100644
--- a/systems/locale/de/fusiondirectory.po
+++ b/systems/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po
index af42e4354d..e12d769bf4 100644
--- a/systems/locale/el_GR/fusiondirectory.po
+++ b/systems/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po
index 610771fd3c..948c8e24ae 100644
--- a/systems/locale/es/fusiondirectory.po
+++ b/systems/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po
index bd3f452efc..bbb2a1f157 100644
--- a/systems/locale/es_CO/fusiondirectory.po
+++ b/systems/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po
index 399b85bc52..eec5650553 100644
--- a/systems/locale/es_VE/fusiondirectory.po
+++ b/systems/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po
index 1815435f7c..ed81ca6fcc 100644
--- a/systems/locale/fa_IR/fusiondirectory.po
+++ b/systems/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po
index ae7c7396e1..e7439c66e0 100644
--- a/systems/locale/fi_FI/fusiondirectory.po
+++ b/systems/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po
index 79cda696e3..3ab46bf3fc 100644
--- a/systems/locale/fr/fusiondirectory.po
+++ b/systems/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po
index 324eda797b..f230bc7ab7 100644
--- a/systems/locale/hu_HU/fusiondirectory.po
+++ b/systems/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po
index 6a4f90a32b..7c0e6c9283 100644
--- a/systems/locale/id/fusiondirectory.po
+++ b/systems/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 2e98a790db..755207a354 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/systems/locale/ja/fusiondirectory.po b/systems/locale/ja/fusiondirectory.po
index caa57d2283..048f4f4dca 100644
--- a/systems/locale/ja/fusiondirectory.po
+++ b/systems/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ko/fusiondirectory.po b/systems/locale/ko/fusiondirectory.po
index 300333bfbf..e35c5f2617 100644
--- a/systems/locale/ko/fusiondirectory.po
+++ b/systems/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po
index 994043e1bf..36503ae235 100644
--- a/systems/locale/lv/fusiondirectory.po
+++ b/systems/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po
index 0902f3e20c..d466539cac 100644
--- a/systems/locale/nb/fusiondirectory.po
+++ b/systems/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po
index 3b279ee3e1..6a4e8c2396 100644
--- a/systems/locale/nl/fusiondirectory.po
+++ b/systems/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po
index f781f18559..0d65e82a3e 100644
--- a/systems/locale/pl/fusiondirectory.po
+++ b/systems/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po
index d89cf2c35c..ccf6aa6419 100644
--- a/systems/locale/pt/fusiondirectory.po
+++ b/systems/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po
index 9a5b7bde05..0be1266de2 100644
--- a/systems/locale/pt_BR/fusiondirectory.po
+++ b/systems/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po
index 7f103d6f46..b5b87043fe 100644
--- a/systems/locale/ru/fusiondirectory.po
+++ b/systems/locale/ru/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po
index 106acf0ff8..d2c842218e 100644
--- a/systems/locale/ru@petr1708/fusiondirectory.po
+++ b/systems/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po
index 97236ab608..942d759ff9 100644
--- a/systems/locale/sv/fusiondirectory.po
+++ b/systems/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/systems/locale/tr_TR/fusiondirectory.po b/systems/locale/tr_TR/fusiondirectory.po
index 8964abe921..13e6c851b0 100644
--- a/systems/locale/tr_TR/fusiondirectory.po
+++ b/systems/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -490,7 +494,7 @@ msgstr ""
 #: admin/systems/class_serverService.inc:294
 #: addons/dashboard/class_dashBoardNetwork.inc:81
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: admin/systems/services/shares/class_serviceShare.inc:105
 msgid "You need to configure encodings first"
diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po
index f99981d83a..0f0515346e 100644
--- a/systems/locale/ug/fusiondirectory.po
+++ b/systems/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1045,6 +1045,7 @@ msgstr ""
 msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
+msgstr[1] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1058,3 +1059,4 @@ msgid_plural ""
 "%1 systems are configured to run an argonaut client, but there is no "
 "argonaut server configured!"
 msgstr[0] ""
+msgstr[1] ""
diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po
index e84d657565..c710fa85fd 100644
--- a/systems/locale/vi_VN/fusiondirectory.po
+++ b/systems/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po
index a25ca503b5..436005895f 100644
--- a/systems/locale/zh/fusiondirectory.po
+++ b/systems/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/systems/locale/zh_TW/fusiondirectory.po b/systems/locale/zh_TW/fusiondirectory.po
index f3e31feef7..ff82826ae4 100644
--- a/systems/locale/zh_TW/fusiondirectory.po
+++ b/systems/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/af_ZA/fusiondirectory.po b/user-reminder/locale/af_ZA/fusiondirectory.po
index eda172603c..3bd6ac80f1 100644
--- a/user-reminder/locale/af_ZA/fusiondirectory.po
+++ b/user-reminder/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po
index a401037d56..1fb6bc9ec7 100644
--- a/user-reminder/locale/ar/fusiondirectory.po
+++ b/user-reminder/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po
index feaa976afa..aec4c07565 100644
--- a/user-reminder/locale/ca/fusiondirectory.po
+++ b/user-reminder/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po
index f82371e11f..fdf113ddce 100644
--- a/user-reminder/locale/cs_CZ/fusiondirectory.po
+++ b/user-reminder/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po
index da432efb9e..bd090cf056 100644
--- a/user-reminder/locale/de/fusiondirectory.po
+++ b/user-reminder/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po
index 92e469c34c..7d924d3a21 100644
--- a/user-reminder/locale/el_GR/fusiondirectory.po
+++ b/user-reminder/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po
index 4140f2bfe5..83eb018f4d 100644
--- a/user-reminder/locale/es/fusiondirectory.po
+++ b/user-reminder/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po
index 4de1725d2d..d9a6b66638 100644
--- a/user-reminder/locale/es_CO/fusiondirectory.po
+++ b/user-reminder/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po
index e1e1132352..1a1ee85e5a 100644
--- a/user-reminder/locale/es_VE/fusiondirectory.po
+++ b/user-reminder/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po
index 7b9d14e53a..5e92efb462 100644
--- a/user-reminder/locale/fa_IR/fusiondirectory.po
+++ b/user-reminder/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po
index 2d781ba317..da93770c06 100644
--- a/user-reminder/locale/fi_FI/fusiondirectory.po
+++ b/user-reminder/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po
index 15bfe87d57..7b46c1508c 100644
--- a/user-reminder/locale/fr/fusiondirectory.po
+++ b/user-reminder/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po
index 839b0d5c22..5b941ececf 100644
--- a/user-reminder/locale/hu_HU/fusiondirectory.po
+++ b/user-reminder/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po
index edc5853bfe..4f19c4eebd 100644
--- a/user-reminder/locale/id/fusiondirectory.po
+++ b/user-reminder/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index 120c63f2ea..df5c59cfb7 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/user-reminder/locale/ja/fusiondirectory.po b/user-reminder/locale/ja/fusiondirectory.po
index a8677a0a9c..e6ada419e6 100644
--- a/user-reminder/locale/ja/fusiondirectory.po
+++ b/user-reminder/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ko/fusiondirectory.po b/user-reminder/locale/ko/fusiondirectory.po
index 0db80f7c77..130f40260a 100644
--- a/user-reminder/locale/ko/fusiondirectory.po
+++ b/user-reminder/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po
index ca0e80ca06..4de7160243 100644
--- a/user-reminder/locale/lv/fusiondirectory.po
+++ b/user-reminder/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po
index 17661f8570..a4fb469f50 100644
--- a/user-reminder/locale/nb/fusiondirectory.po
+++ b/user-reminder/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po
index 716b97441e..95aa9a8444 100644
--- a/user-reminder/locale/nl/fusiondirectory.po
+++ b/user-reminder/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po
index 1f6651c5bb..c8ba73d572 100644
--- a/user-reminder/locale/pl/fusiondirectory.po
+++ b/user-reminder/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po
index 1d0abcde9d..f9ad10cf2f 100644
--- a/user-reminder/locale/pt/fusiondirectory.po
+++ b/user-reminder/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po
index d779cde38d..1fdae9196a 100644
--- a/user-reminder/locale/pt_BR/fusiondirectory.po
+++ b/user-reminder/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po
index cc6c3db2e3..72c3a538c2 100644
--- a/user-reminder/locale/ru/fusiondirectory.po
+++ b/user-reminder/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po
index d03538e72c..860013bb16 100644
--- a/user-reminder/locale/ru@petr1708/fusiondirectory.po
+++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po
index 2b359202e8..0b526921d1 100644
--- a/user-reminder/locale/sv/fusiondirectory.po
+++ b/user-reminder/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/user-reminder/locale/tr_TR/fusiondirectory.po b/user-reminder/locale/tr_TR/fusiondirectory.po
index 6d07841eb0..149a9f491f 100644
--- a/user-reminder/locale/tr_TR/fusiondirectory.po
+++ b/user-reminder/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -215,7 +219,7 @@ msgstr ""
 #: ihtml/themes/breezy/user-reminder.tpl.c:11
 #: ihtml/themes/breezy/user-reminder.tpl.c:14
 msgid "Success"
-msgstr ""
+msgstr "Başarı"
 
 #: ihtml/themes/breezy/user-reminder.tpl.c:17
 msgid "Your expiration has been postponed successfully."
@@ -224,7 +228,7 @@ msgstr ""
 #: ihtml/themes/breezy/user-reminder.tpl.c:20
 #: ihtml/themes/breezy/user-reminder.tpl.c:23
 msgid "Error"
-msgstr ""
+msgstr "Hata"
 
 #: ihtml/themes/breezy/user-reminder.tpl.c:26
 msgid "There was a problem"
diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po
index 3568d842c2..92abb7c91d 100644
--- a/user-reminder/locale/ug/fusiondirectory.po
+++ b/user-reminder/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po
index 07e387c79f..4e9c78b60c 100644
--- a/user-reminder/locale/vi_VN/fusiondirectory.po
+++ b/user-reminder/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po
index c88cbb8129..954f057df0 100644
--- a/user-reminder/locale/zh/fusiondirectory.po
+++ b/user-reminder/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/user-reminder/locale/zh_TW/fusiondirectory.po b/user-reminder/locale/zh_TW/fusiondirectory.po
index a82665fa57..5caa9c0e90 100644
--- a/user-reminder/locale/zh_TW/fusiondirectory.po
+++ b/user-reminder/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/af_ZA/fusiondirectory.po b/weblink/locale/af_ZA/fusiondirectory.po
index bf234fb41d..24fe154c05 100644
--- a/weblink/locale/af_ZA/fusiondirectory.po
+++ b/weblink/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po
index 051c274c7f..2fde9c4378 100644
--- a/weblink/locale/ar/fusiondirectory.po
+++ b/weblink/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po
index cf676d4801..b3cff53c97 100644
--- a/weblink/locale/ca/fusiondirectory.po
+++ b/weblink/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po
index c89254287f..326d66bc1b 100644
--- a/weblink/locale/cs_CZ/fusiondirectory.po
+++ b/weblink/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po
index f682144da9..db864ab4a0 100644
--- a/weblink/locale/de/fusiondirectory.po
+++ b/weblink/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po
index 793bc36103..34f73239f5 100644
--- a/weblink/locale/el_GR/fusiondirectory.po
+++ b/weblink/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po
index 1cb037197b..13c0cb1ee6 100644
--- a/weblink/locale/es/fusiondirectory.po
+++ b/weblink/locale/es/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po
index d538842368..1f2ed976c7 100644
--- a/weblink/locale/es_CO/fusiondirectory.po
+++ b/weblink/locale/es_CO/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po
index bae24d19d4..3abafc1258 100644
--- a/weblink/locale/es_VE/fusiondirectory.po
+++ b/weblink/locale/es_VE/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po
index ba3e72a332..01c6db6cf2 100644
--- a/weblink/locale/fa_IR/fusiondirectory.po
+++ b/weblink/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po
index dfb1ae24d8..a469c59919 100644
--- a/weblink/locale/fi_FI/fusiondirectory.po
+++ b/weblink/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po
index 87c664a732..1283dbf9b1 100644
--- a/weblink/locale/fr/fusiondirectory.po
+++ b/weblink/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po
index 6707be750d..fd1ddb0f37 100644
--- a/weblink/locale/hu_HU/fusiondirectory.po
+++ b/weblink/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po
index 173317639c..84c611ea6a 100644
--- a/weblink/locale/id/fusiondirectory.po
+++ b/weblink/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index 2ee79fdfb6..9bd3deba42 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/weblink/locale/ja/fusiondirectory.po b/weblink/locale/ja/fusiondirectory.po
index bff2f09d67..4cd88fb1b7 100644
--- a/weblink/locale/ja/fusiondirectory.po
+++ b/weblink/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ko/fusiondirectory.po b/weblink/locale/ko/fusiondirectory.po
index 90d6d18d93..a34512ed7f 100644
--- a/weblink/locale/ko/fusiondirectory.po
+++ b/weblink/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po
index e4a620e74b..4408b2bb12 100644
--- a/weblink/locale/lv/fusiondirectory.po
+++ b/weblink/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po
index 0c4945d0d1..f9c513f0ef 100644
--- a/weblink/locale/nb/fusiondirectory.po
+++ b/weblink/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po
index 9b05d4f9e0..f3364ca3f2 100644
--- a/weblink/locale/nl/fusiondirectory.po
+++ b/weblink/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po
index 7d4f4f2a74..881a0b8a17 100644
--- a/weblink/locale/pl/fusiondirectory.po
+++ b/weblink/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po
index 0bb4b39798..4a0a71ebc6 100644
--- a/weblink/locale/pt/fusiondirectory.po
+++ b/weblink/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po
index d3d91719c3..f9b25d5a33 100644
--- a/weblink/locale/pt_BR/fusiondirectory.po
+++ b/weblink/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po
index 3a036e8fc3..fb98948425 100644
--- a/weblink/locale/ru/fusiondirectory.po
+++ b/weblink/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po
index 8554bfef36..00ef185b01 100644
--- a/weblink/locale/ru@petr1708/fusiondirectory.po
+++ b/weblink/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po
index 66b97f3e59..46d443ccaf 100644
--- a/weblink/locale/sv/fusiondirectory.po
+++ b/weblink/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/tr_TR/fusiondirectory.po b/weblink/locale/tr_TR/fusiondirectory.po
index a2fcf29afa..55627650a2 100644
--- a/weblink/locale/tr_TR/fusiondirectory.po
+++ b/weblink/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,37 +23,38 @@ msgstr ""
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
-msgstr ""
+msgstr "Web bağlantısı"
 
 #: admin/systems/weblink/class_webLink.inc:32
 msgid "Edit web link"
-msgstr ""
+msgstr "Web bağlantısını düzenle"
 
 #: admin/systems/weblink/class_webLink.inc:46
 #: admin/systems/weblink/class_webLink.inc:49
 msgid "Links"
-msgstr ""
+msgstr "Bağlantılar"
 
 #: admin/systems/weblink/class_webLink.inc:49
 msgid "Web links to this computer"
-msgstr ""
+msgstr "Bu bilgisayardaki web bağlantıları"
 
 #: admin/systems/weblink/class_webLink.inc:55
 msgid "Settings"
-msgstr ""
+msgstr "Ayarlar"
 
 #: admin/systems/weblink/class_webLink.inc:58
 msgid "Protocol"
-msgstr ""
+msgstr "İletişim kuralı"
 
 #: admin/systems/weblink/class_webLink.inc:58
 msgid "Protocol to use to access this computer Web page"
 msgstr ""
+"Bu bilgisayarın Web sayfasına erişmek için kullanılacak iletişim kuralı"
 
 #: admin/systems/weblink/class_webLink.inc:64
 msgid "Arbitrary links"
-msgstr ""
+msgstr "Gelişigüzel bağlantılar"
 
 #: admin/systems/weblink/class_webLink.inc:64
 msgid "Any URL you want to associate to this computer"
-msgstr ""
+msgstr "Bu bilgisayara iliÅŸkilendirmek istediÄŸiniz herhangi bir URL"
diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po
index 10c316c170..bcc6661577 100644
--- a/weblink/locale/ug/fusiondirectory.po
+++ b/weblink/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po
index 1ee8d0657c..3cfbfbae31 100644
--- a/weblink/locale/vi_VN/fusiondirectory.po
+++ b/weblink/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po
index e0a65d77aa..739d7656d2 100644
--- a/weblink/locale/zh/fusiondirectory.po
+++ b/weblink/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh_TW/fusiondirectory.po b/weblink/locale/zh_TW/fusiondirectory.po
index 8bcffabd2a..0a09fe43df 100644
--- a/weblink/locale/zh_TW/fusiondirectory.po
+++ b/weblink/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/af_ZA/fusiondirectory.po b/webservice/locale/af_ZA/fusiondirectory.po
index 870109fae7..34302753a2 100644
--- a/webservice/locale/af_ZA/fusiondirectory.po
+++ b/webservice/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po
index f616d2b736..49cac6a4b5 100644
--- a/webservice/locale/ar/fusiondirectory.po
+++ b/webservice/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po
index 31a3c72653..b7e7f1669b 100644
--- a/webservice/locale/ca/fusiondirectory.po
+++ b/webservice/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po
index 83e359a536..253a139288 100644
--- a/webservice/locale/cs_CZ/fusiondirectory.po
+++ b/webservice/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po
index 10bfe1fd28..17b9fa6100 100644
--- a/webservice/locale/de/fusiondirectory.po
+++ b/webservice/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po
index 8be41a2c27..a0170dd489 100644
--- a/webservice/locale/el_GR/fusiondirectory.po
+++ b/webservice/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po
index 47da66d99f..95ed9f5fa6 100644
--- a/webservice/locale/es/fusiondirectory.po
+++ b/webservice/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po
index 37d2b59d2d..ab4fe3f988 100644
--- a/webservice/locale/es_CO/fusiondirectory.po
+++ b/webservice/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po
index f7252a63af..0cea7536c4 100644
--- a/webservice/locale/es_VE/fusiondirectory.po
+++ b/webservice/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po
index 885fd96d9a..f3159d86c0 100644
--- a/webservice/locale/fa_IR/fusiondirectory.po
+++ b/webservice/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po
index 9729e4c802..99c4998f04 100644
--- a/webservice/locale/fi_FI/fusiondirectory.po
+++ b/webservice/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po
index e1ebab1a94..c03f726a1f 100644
--- a/webservice/locale/fr/fusiondirectory.po
+++ b/webservice/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po
index 5adb25f81b..0d177f45f7 100644
--- a/webservice/locale/hu_HU/fusiondirectory.po
+++ b/webservice/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po
index f64c727626..6c42f09e04 100644
--- a/webservice/locale/id/fusiondirectory.po
+++ b/webservice/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index 3aaaab85e8..824e605eb5 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
diff --git a/webservice/locale/ja/fusiondirectory.po b/webservice/locale/ja/fusiondirectory.po
index 28b558fd9f..bc3f44aef5 100644
--- a/webservice/locale/ja/fusiondirectory.po
+++ b/webservice/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ko/fusiondirectory.po b/webservice/locale/ko/fusiondirectory.po
index 082be0c6c8..6f4a2adb53 100644
--- a/webservice/locale/ko/fusiondirectory.po
+++ b/webservice/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po
index a03ecebf2a..0c1ad4ef60 100644
--- a/webservice/locale/lv/fusiondirectory.po
+++ b/webservice/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po
index 9a4f3b11b5..69080c8754 100644
--- a/webservice/locale/nb/fusiondirectory.po
+++ b/webservice/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po
index 350ccefcce..ed1ea0c3c9 100644
--- a/webservice/locale/nl/fusiondirectory.po
+++ b/webservice/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po
index 00b471c1f1..19f78789ef 100644
--- a/webservice/locale/pl/fusiondirectory.po
+++ b/webservice/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po
index ea0127bc7e..e774178f03 100644
--- a/webservice/locale/pt/fusiondirectory.po
+++ b/webservice/locale/pt/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po
index 664b0944d2..d8a91dde0d 100644
--- a/webservice/locale/pt_BR/fusiondirectory.po
+++ b/webservice/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po
index 5acffe5bf1..06c93c9053 100644
--- a/webservice/locale/ru/fusiondirectory.po
+++ b/webservice/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po
index 7c798df123..91d42245e4 100644
--- a/webservice/locale/ru@petr1708/fusiondirectory.po
+++ b/webservice/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po
index 31ccd802f3..516fbb58c2 100644
--- a/webservice/locale/sv/fusiondirectory.po
+++ b/webservice/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/webservice/locale/tr_TR/fusiondirectory.po b/webservice/locale/tr_TR/fusiondirectory.po
index b6a98d9013..9c67168ad5 100644
--- a/webservice/locale/tr_TR/fusiondirectory.po
+++ b/webservice/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po
index e5f79ec2fd..9bb10ce350 100644
--- a/webservice/locale/ug/fusiondirectory.po
+++ b/webservice/locale/ug/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
-"Language-Team: Uighur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
+"Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ug\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po
index d4b259e3f3..389b632b8a 100644
--- a/webservice/locale/vi_VN/fusiondirectory.po
+++ b/webservice/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po
index a96c0dc244..408746fc81 100644
--- a/webservice/locale/zh/fusiondirectory.po
+++ b/webservice/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/zh_TW/fusiondirectory.po b/webservice/locale/zh_TW/fusiondirectory.po
index 0de9001d6a..49dcd88f17 100644
--- a/webservice/locale/zh_TW/fusiondirectory.po
+++ b/webservice/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2020-03-05 20:21+0000\n"
+"POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
-- 
GitLab


From c9c7ec1e98a5345f95ded937916730da7657715e Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@opensides.be>
Date: Wed, 20 May 2020 09:48:47 +0000
Subject: [PATCH 45/73] Merge branch '6056-add-a-github-funding-yml' into
 '1.4-dev'

Resolve "add a .github/FUNDING.yml"

Closes #6056

See merge request fusiondirectory/fd-plugins!731

(cherry picked from commit 25406b6e709b051676e2b02ca3ae1365ca60844c)

c42dc4ea :sparkles: feat(github-funding) add github funding
---
 .github/FUNDING.yml | 4 ++++
 1 file changed, 4 insertions(+)
 create mode 100644 .github/FUNDING.yml

diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000000..521c6e33e4
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,4 @@
+# These are supported funding model platforms
+
+ko_fi: fusiondirectory
+liberapay: fusiondirectory
-- 
GitLab


From 119742d51ece801e5fa20a0b2e015f141f6bf4a8 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@opensides.be>
Date: Thu, 21 May 2020 16:07:48 +0000
Subject: [PATCH 46/73] Merge branch '6056-add-a-github-funding-yml' into
 '1.4-dev'

Resolve "add a .github/FUNDING.yml"

Closes #6056

See merge request fusiondirectory/fd-plugins!734

(cherry picked from commit ea65ede783863f8881415772994784b146d35698)

47331854 :handshake: fix(funding) update the funding site for github
---
 .github/FUNDING.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 521c6e33e4..717c1518a7 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -2,3 +2,5 @@
 
 ko_fi: fusiondirectory
 liberapay: fusiondirectory
+open_collective: fusiondirectory
+community_bridge: fusiondirectory
-- 
GitLab


From c3bc5995f0cf3ca981cb21c5bfa61b5064b8d3b4 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 23 Mar 2021 18:16:44 +0000
Subject: [PATCH 47/73] Merge branch
 '6105-fix-reference-to-the-documentation-after-moving-around-fusiondirectory-documentationin-upgrade'
 into '1.4-dev'

Resolve "fix reference to the documentation after moving around fusiondirectory documentationin UPGRADE.md and README.md"

Closes #6105

See merge request fusiondirectory/fd-plugins!842

(cherry picked from commit 4eecfc49ddcaca29132e918f0b15c5fdb3727dd2)

8f89b6c3 :ambulance: fix(docs) fix reference to the documentation after moving around...
---
 README.md | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/README.md b/README.md
index 88ea7537e4..e126256931 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,27 @@ This question can be solved by creating:
 * A plugin for its management in FusionDirectory with the simple plugin api
 * An Argonaut module for the client installed on the server
 
+## Installation and upgrade of FusionDirectory
+
+The installation and upgrade information is available on [Install FusionDirectory][fusiondirectory-install]
+
+## Migration to FusionDirectory
+
+To migrate an existing LDAP tree, you've to do all steps [Install FusionDirectory][fusiondirectory-install],
+plus some modifications:
+
+* FusionDirectory only shows users that have the objectClass inetOrgPerson
+
+* FusionDirectory only recognizes subtrees (or departments in FusionDirectory's view of things) that have the objectClass gosaDepartment.
+  You can hide subtrees from FusionDirectory by not putting this objectClass inside.
+
+The FusionDirectory setup may be used to do these migrations, but it is not meant
+to work in every possible circumstance. Please be carefull when using it on
+productive system.
+
+That should be all. Entries should be visible in FusionDirectory now.
+Be aware that if your naming policy of user cn's differs from the way FusionDirectory handles it, the entries get rewritten to a FusionDirectory style dn.
+
 ## Get help
 
 ### Community support
@@ -84,6 +105,8 @@ If you like us and want to send us a small contribution you can use the followin
 
 [FusionDirectory]: https://www.fusiondirectory.org/
 
+[fusiondirectory-install]: https://fusiondirectory-user-manual.readthedocs.io/en/1.3/fusiondirectory/install/index.html
+
 [get help]: https://www.fusiondirectory.org/en/communaute/
 
 [get support]: https://www.fusiondirectory.org/en/support/
-- 
GitLab


From 453dfbb1d1e6eef0fb5cedc37500f8beff083a6b Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Mon, 19 Apr 2021 15:16:11 +0000
Subject: [PATCH 48/73] Merge branch '6056-add-a-github-funding-yml' into
 '1.4-dev'

Resolve "add a .github/FUNDING.yml"

Closes #6056

See merge request fusiondirectory/fd-plugins!853

(cherry picked from commit 776a5cde22b4ec9afd2122858c4fc94a20994980)

ff91fd63 :sparkles: feat(github) add github sponsoring
---
 .github/FUNDING.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 717c1518a7..99ab470ea3 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -4,3 +4,4 @@ ko_fi: fusiondirectory
 liberapay: fusiondirectory
 open_collective: fusiondirectory
 community_bridge: fusiondirectory
+github: fusiondirectory
-- 
GitLab


From 4b8e5b2617f645b3e281862e0e64fd97a218df66 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.chilliet@fusiondirectory.org>
Date: Tue, 29 Jun 2021 10:19:12 +0200
Subject: [PATCH 49/73] :ambulance: fix(fusioninventory) Fix PHP error in
 fusioninventory plugin

issue #6125
---
 .../admin/systems/fusioninventory/class_fiInventory.inc         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
index 71f249357a..5c589549d6 100644
--- a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
+++ b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
@@ -189,7 +189,7 @@ class fiInventory extends simplePlugin
         return array();
       }
       $macAddress   = $this->parent->getBaseObject()->macAddress;
-      if ($macAddress != '') {
+      if (!is_array($macAddress) && ($macAddress != '')) {
         $macAddress = array($macAddress);
       }
       $ipHostNumber = $this->parent->getBaseObject()->ipHostNumber;
-- 
GitLab


From 796eec2b4c42bc80072d43801325491c36dad8e2 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 27 Jul 2021 19:14:16 +0000
Subject: [PATCH 50/73] remove sonar stages

---
 .gitlab-ci.yml | 35 -----------------------------------
 1 file changed, 35 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 62334812ea..942dff2177 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -43,41 +43,6 @@ create_php_code_sniffer_rapport:
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
-# Sonar publishing
-sonar_publish:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
-  stage: codestyle
-  only:
-    - 1.3-fixes
-  script:
-    - /home/sonar/*/bin/sonar-scanner
-      -D sonar.projectKey=FusionDirectory-Plugins-13
-      -D sonar.projectName=FusionDirectory-Plugins-1.3
-      -D sonar.projectVersion=1.3
-      -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
-      -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
-      -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
-      -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
-
-# Sonar preview
-sonar_preview:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/sonar-cli:4.4.0.2170
-  stage: codestyle
-  except:
-    - 1.3-fixes
-  script:
-    - /home/sonar/*/bin/sonar-scanner
-      -D sonar.projectKey=FusionDirectory-Plugins-13
-      -D sonar.projectName=FusionDirectory-Plugins-1.3
-      -D sonar.projectVersion=1.3
-      -D sonar.sourceEncoding=UTF-8
-      -D sonar.exclusions='mail/personal/mail/class_sieve.inc,**/html/themes/breezy/icons/**,**/html/themes/legacy/icons/**,applications/html/plugins/applications/images/default_icon.png'
-      -D sonar.gitlab.project_id="$CI_PROJECT_PATH"
-      -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA"
-      -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME"
-      -D sonar.analysis.mode=preview
-
 # fusiondirectory-update-locale
 fusiondirectory-update-locale:
   image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/transifex-cli:stretch
-- 
GitLab


From b1324e3918d49b29011d2910a791c3837cf0ead4 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 27 Jul 2021 19:33:08 +0000
Subject: [PATCH 51/73] remove the jessie lint stage

---
 .gitlab-ci.yml | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 942dff2177..94e8cb4738 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,15 +11,6 @@ stages:
 
 ## Stage lint
 
-# PHP lint (jessie)
-create_php_lint_rapport_jessie:
-  image: php:5.6.33-cli-jessie
-  stage: lint
-  only:
-    - branches
-  script:
-    - find . -type f -name '*.php' -o -name '*.inc' -print0 | xargs -0 -n1 php -l
-
 # PHP lint (stretch)
 create_php_lint_rapport_stretch:
   image: php:cli-stretch
-- 
GitLab


From 959192ddf8c3b71600a2693d2fce9980982cd30f Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 27 Jul 2021 19:36:56 +0000
Subject: [PATCH 52/73] remove the -f for force in transifex

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 94e8cb4738..def0b3bcee 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,7 @@ update-transifex:
     - echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
     - tx pull -a -f
     - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins
-    - tx push -f -s -t --skip --no-interactive
+    - tx push -s -t --skip --no-interactive
 
 build-tarballs:
   stage: tarballs
-- 
GitLab


From 0c84451edaf8f6149b88e8c5d62650977586c473 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 27 Jul 2021 19:38:55 +0000
Subject: [PATCH 53/73] remove default image remov php-ci from docker and use
 our own image for codesniffer

---
 .gitlab-ci.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index def0b3bcee..2f7712e779 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,3 @@
-# Specify docker image
-image: debian:stretch
-
 stages:
   - lint
   - codestyle
@@ -13,7 +10,7 @@ stages:
 
 # PHP lint (stretch)
 create_php_lint_rapport_stretch:
-  image: php:cli-stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:stretch
   stage: lint
   only:
     - branches
-- 
GitLab


From 5387a60bca4be08b68716f5dd8958b30a53a2b19 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Mon, 23 Aug 2021 08:53:58 +0000
Subject: [PATCH 54/73] Merge branch '6135-remove-reference-to-freenode-net-in'
 into '1.4-dev'

Resolve "remove reference to freenode.net in"

Closes #6135

See merge request fusiondirectory/fd-plugins!886

(cherry picked from commit 95e8bbe65887201031fde7e17b6ec359d5e20006)

6d929a4d :ambulance: fxi(irc) remove reference to freenode.net
---
 CONTRIBUTING.md | 2 +-
 README.md       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 93bc7d5228..980c8af627 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -34,7 +34,7 @@ All projects and everyone participating in it is governed by [FusionDirectory Co
 
 We have an various channel of communications
 
-*  [#fusiondirectory, the irc channel of FusionDirectory on freenode](https://webchat.freenode.net/), channel #fusiondirectory
+*  [#fusiondirectory, the irc channel of FusionDirectory on Libera](https://web.libera.chat/), channel #fusiondirectory
 *  [FusionDirectory Users mailing list](https://lists.fusiondirectory.org/wws/info/users)
 *  [FusionDirectory dev mailing list](https://lists.fusiondirectory.org/wws/info/developpers)
 
diff --git a/README.md b/README.md
index e126256931..f343695288 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ Be aware that if your naming policy of user cn's differs from the way FusionDire
 
 ### Community support
 
-There are a couple ways you can try [to get help][get help].You can also join the `#fusiondirectory` IRC channel at freenode.net.
+There are a couple ways you can try [to get help][get help].You can also join the `#fusiondirectory` IRC channel at libera.chat.
 
 ### Professional support
 
-- 
GitLab


From 4fae7b305aee0cd748ec68bff772e94242744416 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Mon, 23 Aug 2021 12:44:26 +0000
Subject: [PATCH 55/73] Merge branch
 '6137-change-the-text-in-the-professional-support-in-the-readme-md' into
 '1.4-dev'

Resolve "Change the text in the professional support in the README.md"

Closes #6137

See merge request fusiondirectory/fd-plugins!889

(cherry picked from commit d09365aa56ad74723e8d3b71b1891b578f776985)

098ef45d :ambulance: fix(support) Change the text in the professional support in the README.md
---
 README.md | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index f343695288..df42a65da9 100644
--- a/README.md
+++ b/README.md
@@ -68,7 +68,19 @@ There are a couple ways you can try [to get help][get help].You can also join th
 
 ### Professional support
 
-If you need professional support you can [get support][get support] and chose one of the options available. 
+Professional support is provided through of subscription.
+
+We have two type of subscription :
+
+* [FusionDirectory][subscription-fusiondirectory] : Global subscription for FusionDirectory and all the plugins
+* [FusionDirectory Plus][subscription-fusiondirectory-plus] : Expert Support on Education, Deployement and Infrastructure plugins
+
+The subscription provides access to FusionDirectory's stable enterprise repository, providing reliable software updates and security enhancements,
+as well as technical help and support.
+
+Choose the plan that's right for you. Our subscriptions are flexible and scalable according to your needs
+
+The subscription period is one year from the date of purchase and gives you access to the extensive infrastructure of enterprise-class software and services.
 
 You can [register on our system][register] and enter issues [FusionDirectory][issues-core] for the core program, and 
 [FusionDirectory Plugins][issues-plugins] for plugins.
@@ -109,7 +121,9 @@ If you like us and want to send us a small contribution you can use the followin
 
 [get help]: https://www.fusiondirectory.org/en/communaute/
 
-[get support]: https://www.fusiondirectory.org/en/support/
+[subscription-fusiondirectory]: https://www.fusiondirectory.org/en/subscription-fusiondirectory/
+
+[subscription-fusiondirectory-plus]: https://www.fusiondirectory.org/en/subscriptions-fusiondirectory-plus/
 
 [register]: https://register.fusiondirectory.org
 
-- 
GitLab


From 611a4821ef600b6748ea45047d694927f6eaf658 Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 24 Aug 2021 15:33:26 +0000
Subject: [PATCH 56/73] Merge branch
 '6139-remove-the-where-to-open-a-bug-from-the-readme-md' into '1.4-dev'

Resolve "remove the where to open a bug from the README.md"

Closes #6139

See merge request fusiondirectory/fd-plugins!891

(cherry picked from commit bbe9815185bbfb9d8d26b7f4df26621604cfd3e0)

a058eafb :ambulance: fix(readme) remove the where to open a bug from the README.md
---
 README.md | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/README.md b/README.md
index df42a65da9..041aad2a17 100644
--- a/README.md
+++ b/README.md
@@ -82,9 +82,6 @@ Choose the plan that's right for you. Our subscriptions are flexible and scalabl
 
 The subscription period is one year from the date of purchase and gives you access to the extensive infrastructure of enterprise-class software and services.
 
-You can [register on our system][register] and enter issues [FusionDirectory][issues-core] for the core program, and 
-[FusionDirectory Plugins][issues-plugins] for plugins.
-
 ## IRC Etiquette
 
 * If we don't answer right away then just hang out in the channel.  Someone will
@@ -127,10 +124,6 @@ If you like us and want to send us a small contribution you can use the followin
 
 [register]: https://register.fusiondirectory.org
 
-[issues-core]: https://gitlab.fusiondirectory.org/fusiondirectory/fd/issues
-
-[issues-plugins]: https://gitlab.fusiondirectory.org/fusiondirectory/fd-plugins/issues
-
 [donate-liberapay]: https://liberapay.com/fusiondirectory/donate
 
 [donate-kofi]: https://ko-fi.com/fusiondirectory
-- 
GitLab


From 2714b3f3d0fcca4e382ea37050f2e7520d57968b Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Fri, 3 Sep 2021 13:55:45 +0200
Subject: [PATCH 57/73] :ambulance: fix(opensides) remove all leftover of
 opensides.be inside the sources

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 alias/locale/it_IT/fusiondirectory.po           | 4 ++--
 argonaut/locale/it_IT/fusiondirectory.po        | 4 ++--
 audit/locale/it_IT/fusiondirectory.po           | 4 ++--
 community/locale/it_IT/fusiondirectory.po       | 4 ++--
 dhcp/locale/it_IT/fusiondirectory.po            | 4 ++--
 dns/locale/it_IT/fusiondirectory.po             | 4 ++--
 fai/locale/it_IT/fusiondirectory.po             | 4 ++--
 ldapmanager/locale/it_IT/fusiondirectory.po     | 4 ++--
 opsi/locale/it_IT/fusiondirectory.po            | 4 ++--
 personal/locale/it_IT/fusiondirectory.po        | 2 +-
 posix/locale/it_IT/fusiondirectory.po           | 4 ++--
 postfix/locale/it_IT/fusiondirectory.po         | 4 ++--
 puppet/locale/it_IT/fusiondirectory.po          | 4 ++--
 renater-partage/locale/it_IT/fusiondirectory.po | 4 ++--
 sinaps/locale/it_IT/fusiondirectory.po          | 2 +-
 sudo/locale/it_IT/fusiondirectory.po            | 4 ++--
 supann/locale/it_IT/fusiondirectory.po          | 4 ++--
 systems/locale/it_IT/fusiondirectory.po         | 4 ++--
 user-reminder/locale/it_IT/fusiondirectory.po   | 4 ++--
 weblink/locale/it_IT/fusiondirectory.po         | 4 ++--
 webservice/locale/it_IT/fusiondirectory.po      | 4 ++--
 21 files changed, 40 insertions(+), 40 deletions(-)

diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index c1c9a5c5ef..962a0ea738 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:44+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index 0215c0963c..8f4d60fa5f 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2019
+# Paola Penati <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index eb6d20da4b..6de86077b3 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index 5bf410e0f0..8413fb9a83 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index f7552f72fb..02661e7a37 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index 78f2ff78e9..9898bc4abd 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index 0ffa7d8db8..5055323473 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index 1c78292367..348ee74ff9 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index e304cfc1b3..754142c275 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index a8f3f551cc..ee26ed9182 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index 1a1c71729e..5b4fdc6688 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2019
+# Paola Penati <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index 320fb9b4c7..8f3cec90d5 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index 61273f544e..0fa85e40af 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index 47c79367b6..134e99716c 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index a843efd3e1..20307e75c2 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2019
-# Paola Penati <paola.penati@opensides.be>, 2019
+# Paola Penati <paola.penati@fusiondirectory.org>, 2019
 # Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index b07ea57fe7..b4e895b933 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index 8c6e38491e..57e6e06b30 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2019
+# Paola Penati <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 755207a354..3ad413473c 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index df5c59cfb7..7b6701adb5 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index 9bd3deba42..c8f7e0062c 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index 824e605eb5..65db5bab53 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@opensides.be>, 2018
+# Paola Penati <paola.penati@fusiondirectory.org>, 2018
 # 
 #, fuzzy
 msgid ""
@@ -14,7 +14,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
 "POT-Creation-Date: 2021-03-18 15:45+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
-"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-- 
GitLab


From 2dea73d1e66818859bba9e5f8990fea61a4829ed Mon Sep 17 00:00:00 2001
From: bmortier <benoit.mortier@fusiondirectory.org>
Date: Tue, 5 Jul 2022 16:29:40 +0000
Subject: [PATCH 58/73] remove stretch builds

---
 .gitlab-ci.yml | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f7712e779..1a0b87db46 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -80,19 +80,6 @@ build-release:
     paths:
       - fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz
 
-trigger-ci-debian-stretch:
-  stage: trigger
-  only:
-    - 1.3-fixes
-  variables:
-    GROUP: "$GROUP"
-    BRANCH_CORE: "$CI_COMMIT_REF_NAME"
-    BRANCH_PLUGIN: "$CI_COMMIT_REF_NAME"
-    BRANCH_BUILD_DEBIAN_STRETCH: "$BRANCH_BUILD_DEBIAN_STRETCH"
-  trigger:
-    project: debian/stretch-fusiondirectory-fixes
-    branch: "$BRANCH_BUILD_DEBIAN_STRETCH"
-
 trigger-ci-debian-buster:
   stage: trigger
   only:
-- 
GitLab


From 22de746facf747506e7ff878c67bd8b1aeb69e25 Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Tue, 19 Jul 2022 18:18:42 +0100
Subject: [PATCH 59/73] :sparkles: Feat(1.3.1) - Plugins - Updates CI

Updates CI to reflect the code style required to match
1.4 rules.
---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1a0b87db46..a81ab7f838 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,13 +21,13 @@ create_php_lint_rapport_stretch:
 
 # PHP codesniffer
 create_php_code_sniffer_rapport:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:buster
   stage: codestyle
   only:
     - branches
   script:
     - test -d ../dev-tools/ && rm -Rf ../dev-tools/
-    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
-- 
GitLab


From 2f6eee02055b41ac695ac6f8aa188e94bee65420 Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Tue, 19 Jul 2022 18:23:10 +0100
Subject: [PATCH 60/73] :sparkles: Feat(1.3.1) - CI - Updates for codestyle

Updating CI to use the latest codestyle and matching
the one used in 1.4
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a81ab7f838..1b96acdd22 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,7 +27,7 @@ create_php_code_sniffer_rapport:
     - branches
   script:
     - test -d ../dev-tools/ && rm -Rf ../dev-tools/
-    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
-- 
GitLab


From 5dd47f7fec93b0d008e6eb667a670025fc8ed597 Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Thu, 21 Jul 2022 10:41:47 +0100
Subject: [PATCH 61/73] :sparkles: Feat(1.3.1) - Fix function declaration
 codestyle

Codestyle correction for function declaration.
---
 alias/admin/alias/class_aliasManagement.inc   |  24 +-
 .../alias/class_mailAliasDistribution.inc     |  24 +-
 .../alias/class_mailAliasRedirection.inc      |  24 +-
 alias/config/alias/class_aliasConfig.inc      |  24 +-
 .../applications/class_applicationGeneric.inc |  42 +--
 .../class_applicationManagement.inc           |  52 ++--
 .../applications/class_webApplication.inc     |  32 +--
 .../admin/roles/class_applicationRights.inc   |  26 +-
 .../class_applicationsPluginConfig.inc        |  26 +-
 .../addons/argonaut/class_argonautAction.inc  |  76 ++---
 .../argonaut/class_argonautEventTypes.inc     |  48 ++--
 .../argonaut/class_argonautImportFile.inc     |  60 ++--
 .../addons/argonaut/class_argonautQueue.inc   |  80 +++---
 .../argonaut/class_filterArgonautEvents.inc   |  28 +-
 .../systems/argonaut/class_argonautClient.inc |  66 ++---
 .../argonaut/class_deploymentTimeframe.inc    |  28 +-
 .../argonaut/class_argonautDNSConfig.inc      |  50 ++--
 .../argonaut/class_argonautFuseConfig.inc     |  44 +--
 .../argonaut/class_argonautFuseFAIConfig.inc  |  40 +--
 .../argonaut/class_argonautFuseLTSPConfig.inc |  24 +-
 .../argonaut/class_argonautFuseOPSIConfig.inc |  24 +-
 .../argonaut/class_argonautMirrorConfig.inc   |  36 +--
 .../argonaut/class_argonautServer.inc         |  52 ++--
 argonaut/html/getFAIstatus.php                |   4 +-
 argonaut/include/class_supportDaemon.inc      | 124 ++++----
 argonaut/include/jsonRPCClient.php            |  20 +-
 audit/admin/audit/class_auditEvent.inc        |  26 +-
 audit/admin/audit/class_auditManagement.inc   |  64 ++---
 audit/config/audit/class_auditConfig.inc      |  26 +-
 .../admin/autofs/class_autofsManagement.inc   |  26 +-
 autofs/admin/autofs/class_nisMap.inc          |  24 +-
 autofs/admin/autofs/class_nisObject.inc       |  46 +--
 autofs/config/autofs/class_autofsConfig.inc   |  24 +-
 .../certificates/class_userCertificates.inc   |  36 +--
 .../community/class_communityOrganization.inc |  38 +--
 .../community/class_communityProject.inc      |  20 +-
 .../community/class_communityConfig.inc       |  26 +-
 .../services/cyrus/class_serviceCyrus.inc     |  44 +--
 .../mail-methods/class_mail-methods-cyrus.inc |  66 ++---
 .../class_debconfProfileGeneric.inc           |  54 ++--
 .../class_debconfProfileManagement.inc        |  14 +-
 .../systems/debconf/class_debconfStartup.inc  |  30 +-
 .../addons/debugHelp/class_debugHelp.inc      |  52 ++--
 dhcp/admin/dhcp/class_dhcpConfiguration.inc   | 228 +++++++--------
 dhcp/admin/dhcp/class_dhcpManagement.inc      |  16 +-
 dhcp/admin/dhcp/class_dhcpPlugin.inc          |  32 +--
 .../dhcp/class_dhcpSectionCreationDialog.inc  |  12 +-
 dhcp/admin/dhcp/sections/class_dhcpClass.inc  |  10 +-
 .../admin/dhcp/sections/class_dhcpDnsZone.inc |  26 +-
 .../dhcp/sections/class_dhcpFailOverPeer.inc  |  22 +-
 dhcp/admin/dhcp/sections/class_dhcpGroup.inc  |  10 +-
 dhcp/admin/dhcp/sections/class_dhcpHost.inc   |  32 +--
 dhcp/admin/dhcp/sections/class_dhcpPool.inc   |  18 +-
 .../admin/dhcp/sections/class_dhcpService.inc |  14 +-
 .../dhcp/sections/class_dhcpSharedNetwork.inc |  14 +-
 .../dhcp/sections/class_dhcpSubClass.inc      |  10 +-
 dhcp/admin/dhcp/sections/class_dhcpSubnet.inc |  18 +-
 .../admin/dhcp/sections/class_dhcpTSigKey.inc |  24 +-
 dhcp/admin/systems/class_dhcpSystem.inc       |  86 +++---
 .../services/dhcp/class_serviceDHCP.inc       |  26 +-
 dhcp/config/dhcp/class_dhcpConfig.inc         |  24 +-
 dns/admin/dns/class_DnsRecordAttribute.inc    |  72 ++---
 dns/admin/dns/class_dnsAcl.inc                |  24 +-
 dns/admin/dns/class_dnsManagement.inc         |  42 +--
 dns/admin/dns/class_dnsView.inc               |  24 +-
 dns/admin/dns/class_dnsZone.inc               | 184 ++++++------
 dns/admin/systems/class_dnsHost.inc           |  94 +++---
 dns/config/dns/class_dnsConfig.inc            |  24 +-
 .../services/dovecot/class_serviceDovecot.inc |  46 +--
 .../class_mail-methods-dovecot.inc            |  30 +-
 dsa/admin/dsa/class_dsaManagement.inc         |  16 +-
 dsa/admin/dsa/class_simpleSecurityObject.inc  |  32 +--
 dsa/config/dsa/class_dsaConfig.inc            |  24 +-
 .../certificates/class_ejbcaCertificates.inc  |  28 +-
 ejbca/admin/ejbca/class_ejbcaCertSelect.inc   |  18 +-
 ejbca/admin/ejbca/class_ejbcaCertificate.inc  |  34 +--
 ejbca/admin/ejbca/class_ejbcaManagement.inc   |  20 +-
 ejbca/config/ejbca/class_ejbcaConfig.inc      |  24 +-
 fai/admin/fai/class_faiDiskEntry.inc          |  98 +++----
 fai/admin/fai/class_faiHook.inc               |  52 ++--
 fai/admin/fai/class_faiManagement.inc         |  32 +--
 fai/admin/fai/class_faiPackage.inc            | 122 ++++----
 .../fai/class_faiPackageConfiguration.inc     |  48 ++--
 fai/admin/fai/class_faiPartition.inc          | 152 +++++-----
 fai/admin/fai/class_faiPartitionTable.inc     | 102 +++----
 fai/admin/fai/class_faiProfile.inc            |  32 +--
 fai/admin/fai/class_faiScript.inc             |  48 ++--
 fai/admin/fai/class_faiSimplePluginClass.inc  |   4 +-
 fai/admin/fai/class_faiTemplate.inc           |  66 ++---
 fai/admin/fai/class_faiTemplateEntry.inc      |  48 ++--
 fai/admin/fai/class_faiVariable.inc           |  48 ++--
 .../packageSelect/class_filterFAIPackages.inc |  22 +-
 .../packageSelect/class_filterFAIcustoms.inc  |  18 +-
 .../fai/packageSelect/class_packageSelect.inc |  10 +-
 fai/admin/systems/class_faiLogView.inc        |  74 ++---
 fai/admin/systems/class_faiStartup.inc        |  50 ++--
 .../monitor/class_argonautFAIMonitor.inc      |  20 +-
 .../repository/class_serviceRepository.inc    |  86 +++---
 fai/config/fai/class_faiConfig.inc            |  24 +-
 .../freeradius/class_freeradiusGroup.inc      |  20 +-
 .../freeradius/class_freeradiusAccount.inc    |  42 +--
 .../inventory/class_inventoryManagement.inc   |  22 +-
 .../fusioninventory/class_fiInventory.inc     | 118 ++++----
 .../class_fiInventoryAgent.inc                |  30 +-
 .../config/fusioninventory/class_fiConfig.inc |  28 +-
 fusioninventory/html/collect.php              |  22 +-
 gpg/addons/gpg/class_pgpServerInfo.inc        |  32 +--
 gpg/personal/gpg/class_gpgAccount.inc         |  24 +-
 .../gpg/pgpKeySelect/class_pgpKeySelect.inc   |  42 +--
 ipmi/admin/systems/ipmi/class_ipmiClient.inc  |  22 +-
 ldapdump/addons/ldapdump/class_ldapDump.inc   |  56 ++--
 .../addons/ldapmanager/class_csvimport.inc    |  80 +++---
 .../addons/ldapmanager/class_ldapmanager.inc  |  60 ++--
 ldapmanager/addons/ldapmanager/tabs_ldif.inc  |  12 +-
 mail/admin/groups/mail/class_mailGroup.inc    |  42 +--
 .../services/imap/class_serviceIMAP.inc       |  14 +-
 mail/config/mail/class_mailPluginConfig.inc   |  24 +-
 mail/personal/mail/class_mail-methods.inc     | 152 +++++-----
 mail/personal/mail/class_mailAccount.inc      | 120 ++++----
 mail/personal/mail/class_sieve.inc            |  46 +--
 .../class_mailAddressSelect.inc               |   4 +-
 .../ogroups/mixedgroups/class_mixedGroup.inc  |  84 +++---
 nagios/config/nagios/class_nagiosConfig.inc   |  24 +-
 .../personal/nagios/class_nagiosAccount.inc   |  34 +--
 netgroups/admin/netgroups/class_netgroup.inc  |  60 ++--
 .../netgroups/class_netgroupManagement.inc    |  12 +-
 .../class_memberNisnetgroupSelect.inc         |   2 +-
 .../netgroups/class_netgroupSystem.inc        |  12 +-
 .../config/netgroups/class_netgroupConfig.inc |  24 +-
 .../netgroups/class_netgroupMembership.inc    |  62 ++--
 .../newsletter/class_newsletterConfig.inc     |  26 +-
 .../class_newsletterSubscriptions.inc         |  24 +-
 opsi/addons/dashboard/class_dashBoardOpsi.inc |  58 ++--
 opsi/addons/opsi/class_opsiImport.inc         |  50 ++--
 opsi/admin/opsi/class_opsiOnDemandList.inc    |  38 +--
 .../opsi/class_opsiProductProperties.inc      |  76 ++---
 opsi/admin/opsi/class_opsiProfile.inc         |  58 ++--
 .../opsi/class_opsiProfileManagement.inc      |  18 +-
 opsi/admin/opsi/class_opsiSoftwareList.inc    |  56 ++--
 opsi/admin/systems/opsi/class_opsiClient.inc  | 132 ++++-----
 opsi/admin/systems/opsi/class_opsiLogView.inc |  38 +--
 .../services/opsi/class_serviceOPSI.inc       |  20 +-
 opsi/config/opsi/class_opsiConfig.inc         |  24 +-
 .../config/personal/class_personalConfig.inc  |  24 +-
 .../personal/personal/class_personalInfo.inc  |  40 +--
 .../personal/class_socialHandlers.inc         |  34 +--
 posix/admin/groups/posix/class_posixGroup.inc | 102 +++----
 posix/config/posix/class_posixConfig.inc      |  56 ++--
 posix/personal/posix/class_posixAccount.inc   | 204 ++++++-------
 .../services/postfix/class_servicePostfix.inc |  66 ++---
 .../dashboard/class_dashBoardPPolicy.inc      |  68 ++---
 ppolicy/admin/ppolicy/class_ppolicy.inc       |  84 +++---
 .../admin/ppolicy/class_ppolicyManagement.inc |  12 +-
 .../config/ppolicy/class_ppolicyConfig.inc    |  24 +-
 .../personal/ppolicy/class_ppolicyAccount.inc |  32 +--
 .../admin/systems/puppet/class_puppetNode.inc |  36 +--
 .../services/puppet/class_servicePuppet.inc   |  20 +-
 .../pureftpd/class_pureftpdAccount.inc        |  46 +--
 .../services/quota/class_serviceQuota.inc     |  52 ++--
 quota/personal/quota/class_quotaAccount.inc   |  52 ++--
 .../renater-partage/class_partageGroup.inc    |  28 +-
 .../class_sympaAliasPartage.inc               |  40 +--
 .../class_serviceRenaterPartage.inc           |  42 +--
 .../class_mail-methods-renater-partage.inc    | 132 ++++-----
 .../repository/class_buildRepository.inc      |  54 ++--
 .../class_repositoryDistribution.inc          |  44 +--
 .../repository/class_repositoryManagement.inc |  18 +-
 .../repository/class_repositorySection.inc    |  36 +--
 .../repository/class_repositoryConfig.inc     |  26 +-
 samba/admin/groups/samba/class_sambaGroup.inc |  52 ++--
 samba/admin/samba/class_sambaDomain.inc       |  28 +-
 .../samba/class_sambaDomainManagement.inc     |  12 +-
 .../samba/class_argonautEventSambaShares.inc  |  10 +-
 .../systems/samba/class_sambaSystemTab.inc    |  32 +--
 .../config/samba/class_sambaPluginConfig.inc  |  26 +-
 samba/include/class_smbHash.inc               | 144 +++++-----
 samba/personal/samba/class_sambaAccount.inc   | 148 +++++-----
 .../personal/samba/class_sambaLogonHours.inc  |  12 +-
 .../personal/samba/class_sambaMungedDial.inc  |  36 +--
 sinaps/config/sinaps/class_sinapsConfig.inc   |  72 ++---
 sinaps/contrib/test/testAcquisition.php       |  24 +-
 sinaps/contrib/test/testEndPoint.php          |  14 +-
 sinaps/html/sinaps.php                        |  12 +-
 .../class_sinapsDiffusionHandlerJob.inc       |  54 ++--
 sinaps/include/class_sinapsRequest.inc        |  80 +++---
 .../class_sinapsRequestAcquisition.inc        |  10 +-
 sinaps/personal/sinaps/class_sinapsUser.inc   |  40 +--
 sogo/admin/sogo/class_sogoManagement.inc      |  16 +-
 sogo/admin/sogo/class_sogoResource.inc        |  28 +-
 sogo/config/sogo/class_sogoConfig.inc         |  24 +-
 .../spam/class_serviceSpamAssassin.inc        |  46 +--
 .../class_spamAssassinAccount.inc             |  30 +-
 squid/personal/squid/class_proxyAccount.inc   |  78 ++---
 ssh/personal/ssh/class_sshAccount.inc         |  40 +--
 .../subcontracting/class_subContracting.inc   |  20 +-
 sudo/admin/sudo/class_sudoGeneric.inc         |  88 +++---
 sudo/admin/sudo/class_sudoManagement.inc      |  20 +-
 sudo/admin/sudo/class_sudoOption.inc          |  78 ++---
 sudo/admin/sudo/class_sudoOptions.inc         | 272 +++++++++---------
 sudo/admin/sudo/tabs_sudo.inc                 |   2 +-
 sudo/config/sudo/class_sudoConfig.inc         |  24 +-
 .../class_supannStructureExt.inc              |  44 +--
 .../admin/supannStructures/class_entite.inc   |  46 +--
 .../supannStructures/class_etablissement.inc  |  50 ++--
 .../admin/supannStructures/class_supann.inc   |  20 +-
 .../class_supannStructuresManagement.inc      |  26 +-
 supann/config/supann/class_supannConfig.inc   |  24 +-
 .../personal/supann/class_supannAccount.inc   | 180 ++++++------
 sympa/admin/sympa/class_sympaAlias.inc        |  30 +-
 sympa/admin/sympa/class_sympaManagement.inc   |  14 +-
 .../services/sympa/class_serviceSympa.inc     |  20 +-
 sympa/config/sympa/class_sympaConfig.inc      |  24 +-
 .../dashboard/class_dashBoardNetwork.inc      |  68 ++---
 .../dashboard/class_dashBoardSystems.inc      |  92 +++---
 .../admin/systems/class_componentGeneric.inc  |  36 +--
 .../systems/class_filterServerService.inc     |  10 +-
 systems/admin/systems/class_ipHostPlugin.inc  |   6 +-
 .../systems/class_mobilePhoneGeneric.inc      |  54 ++--
 systems/admin/systems/class_phoneGeneric.inc  |  46 +--
 systems/admin/systems/class_printGeneric.inc  |  72 ++---
 systems/admin/systems/class_serverGeneric.inc |  16 +-
 systems/admin/systems/class_serverService.inc |  92 +++---
 systems/admin/systems/class_systemImport.inc  |  70 ++---
 .../admin/systems/class_systemManagement.inc  |  62 ++--
 .../admin/systems/class_terminalGeneric.inc   |  16 +-
 .../admin/systems/class_terminalStartup.inc   |  48 ++--
 .../systems/class_workstationGeneric.inc      |  38 +--
 .../services/ldap/class_serviceLDAP.inc       |  28 +-
 .../services/shares/class_serviceShare.inc    |  36 +--
 .../terminal/class_serviceTerminal.inc        |  24 +-
 systems/admin/systems/tabs_server.inc         |   2 +-
 .../systems/class_systemsPluginConfig.inc     |  44 +--
 .../class_userReminderConfig.inc              |  48 ++--
 .../html/class_expiredUserPostpone.inc        |  20 +-
 .../admin/systems/weblink/class_webLink.inc   |  38 +--
 webservice/config/class_webserviceConfig.inc  |  24 +-
 webservice/html/jsonrpc.php                   | 160 +++++------
 .../include/jsonrpcphp/jsonRPCServer.php      |  20 +-
 238 files changed, 5372 insertions(+), 5372 deletions(-)

diff --git a/alias/admin/alias/class_aliasManagement.inc b/alias/admin/alias/class_aliasManagement.inc
index a5d77c28de..6e1555b003 100644
--- a/alias/admin/alias/class_aliasManagement.inc
+++ b/alias/admin/alias/class_aliasManagement.inc
@@ -22,25 +22,25 @@
 class aliasManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('mailAliasDistribution','mailAliasRedirection');
+  protected $objectTypes  = ['mailAliasDistribution','mailAliasRedirection'];
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'aliasExpirationDate');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'aliasExpirationDate'];
 
   /* Return plugin information for acl handling  */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Aliases'),
       'plDescription' => _('Alias management'),
       'plIcon'        => 'geticon.php?context=applications&icon=alias&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 26,
-      'plCategory'    => array('alias' => array('description'  => _('Mail aliases'),
-                                                'objectClass'  => array('mailAliasRedirection','mailAliasDistribution'))),
-      'plManages'     => array('mailAliasDistribution','mailAliasRedirection'),
+      'plCategory'    => ['alias' => ['description'  => _('Mail aliases'),
+                                                'objectClass'  => ['mailAliasRedirection','mailAliasDistribution']]],
+      'plManages'     => ['mailAliasDistribution','mailAliasRedirection'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
@@ -54,17 +54,17 @@ class aliasManagement extends simpleManagement
     $data = parent::parseXML($file);
     $data['list']['table']['layout'] = '|20px;c|||110px;c|100px;r|';
     $data['list']['table']['column'][4] = $data['list']['table']['column'][3];
-    $data['list']['table']['column'][3] = array(
+    $data['list']['table']['column'][3] = [
       'label'         => 'Expiration date',
       'sortAttribute' => 'aliasExpirationDate',
       'sortType'      => 'integer',
       'value'         => '%{filter:filterDate(aliasExpirationDate)}',
       'export'        => 'true',
-    );
+    ];
     return $data;
   }
 
-  static function filterDate()
+  static function filterDate ()
   {
     if (func_num_args() == 0) {
       return '&nbsp;';
diff --git a/alias/admin/alias/class_mailAliasDistribution.inc b/alias/admin/alias/class_mailAliasDistribution.inc
index a5f6619f84..28027c4103 100644
--- a/alias/admin/alias/class_mailAliasDistribution.inc
+++ b/alias/admin/alias/class_mailAliasDistribution.inc
@@ -22,34 +22,34 @@ class mailAliasDistribution extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('top', 'mailAliasDistribution');
+  var $objectclasses = ['top', 'mailAliasDistribution'];
 
   /* Return plugin information for acl handling  */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Temporary mail distribution'),
       'plDescription' => _('Temporary mail distribution'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('mailAliasDistribution' => array(
+      'plObjectType'  => ['mailAliasDistribution' => [
         'name'        => _('Temporary mail distribution'),
         'filter'      => 'objectClass=mailAliasDistribution',
         'aclCategory' => 'alias',
         'icon'        => 'geticon.php?context=applications&icon=alias-distribution&size=16',
         'ou'          => get_ou('aliasRDN'),
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Mail distribution'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('aliasRDN')),
           new HostNameAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
           new TextAreaAttribute (
@@ -78,9 +78,9 @@ class mailAliasDistribution extends simplePlugin
             'U',
             ''
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 
diff --git a/alias/admin/alias/class_mailAliasRedirection.inc b/alias/admin/alias/class_mailAliasRedirection.inc
index 808e6c9c5e..ae7d468c39 100644
--- a/alias/admin/alias/class_mailAliasRedirection.inc
+++ b/alias/admin/alias/class_mailAliasRedirection.inc
@@ -22,35 +22,35 @@ class mailAliasRedirection extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('top', 'mailAliasRedirection');
+  var $objectclasses = ['top', 'mailAliasRedirection'];
 
   /* Return plugin information for acl handling  */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Temporary mail redirection'),
       'plDescription' => _('Temporary mail redirection'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('mailAliasRedirection' => array(
+      'plObjectType'  => ['mailAliasRedirection' => [
         'name'        => _('Temporary mail redirection'),
         'filter'      => 'objectClass=mailAliasRedirection',
         'aclCategory' => 'alias',
         'icon'        => 'geticon.php?context=applications&icon=alias-redirection&size=16',
         'ou'          => get_ou('aliasRDN'),
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('Mail redirection'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('aliasRDN')),
           new HostNameAttribute (_('Name'), _('Name to identify this redirection'), 'cn', TRUE),
           new TextAreaAttribute (
@@ -76,9 +76,9 @@ class mailAliasRedirection extends simplePlugin
             'U',
             ''
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 
diff --git a/alias/config/alias/class_aliasConfig.inc b/alias/config/alias/class_aliasConfig.inc
index 7af9cd3019..46d7f22f51 100644
--- a/alias/config/alias/class_aliasConfig.inc
+++ b/alias/config/alias/class_aliasConfig.inc
@@ -20,35 +20,35 @@
 
 class aliasConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdAliasPluginConf");
+  var $objectclasses  = ["fdAliasPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("Alias configuration"),
       "plDescription"   => _("FusionDirectory alias plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Alias'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Alias RDN'), _('Branch in which aliases will be stored'),
             'fdAliasRDN', TRUE,
             'ou=alias'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/applications/admin/applications/class_applicationGeneric.inc b/applications/admin/applications/class_applicationGeneric.inc
index e4f4d94c5c..a95090fda6 100644
--- a/applications/admin/applications/class_applicationGeneric.inc
+++ b/applications/admin/applications/class_applicationGeneric.inc
@@ -21,30 +21,30 @@
 
 class application extends simplePlugin
 {
-  var $objectclasses = array('fdDesktopApplication');
+  var $objectclasses = ['fdDesktopApplication'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Application'),
       'plDescription' => _('Application information'),
-      'plObjectType'  => array('application' => array(
+      'plObjectType'  => ['application' => [
         'name'    => _('Application'),
         'filter'  => 'objectClass=fdDesktopApplication',
         'ou'      => get_ou('applicationsRDN'),
         'icon'    => 'geticon.php?context=mimetypes&icon=application-x-executable&size=16',
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Application'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('applicationsRDN')),
           new HostNameAttribute (
             _('Application name'), _('The name of this application'),
@@ -62,21 +62,21 @@ class application extends simplePlugin
             _('Display name'), _('The displayed name for this application'),
             'fdApplicationTitle', FALSE
           ),
-        )
-      ),
-      'icon' => array(
+        ]
+      ],
+      'icon' => [
         'name'  => _('Icon'),
-        'attrs' => array(
+        'attrs' => [
           new ImageAttribute (
             '', _('The icon for this application'),
             'fdApplicationImage', FALSE,
             48, 48, 'png'
           ),
-        )
-      ),
-      'options' => array(
+        ]
+      ],
+      'options' => [
         'name'  => _('Options'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute(
             _('Only executable for member'), _('Only executable by the memebers of the group'),
             'flag_group', FALSE, FALSE, '',
@@ -104,11 +104,11 @@ class application extends simplePlugin
           ),
           new FlagsAttribute(
             'fdApplicationFlags',
-            array('flag_group','flag_overwrite','flag_desktop','flag_menu','flag_launchbar')
+            ['flag_group','flag_overwrite','flag_desktop','flag_menu','flag_launchbar']
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
diff --git a/applications/admin/applications/class_applicationManagement.inc b/applications/admin/applications/class_applicationManagement.inc
index bdafd3238f..18795b21e0 100644
--- a/applications/admin/applications/class_applicationManagement.inc
+++ b/applications/admin/applications/class_applicationManagement.inc
@@ -20,50 +20,50 @@
 
 class applicationManagement extends simpleManagement
 {
-  protected $objectTypes  = array('application', 'webApplication');
+  protected $objectTypes  = ['application', 'webApplication'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Applications'),
       'plDescription' => _('Application management'),
       'plIcon'        => 'geticon.php?context=categories&icon=applications-other&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 60,
-      'plManages'     => array('application', 'webApplication'),
+      'plManages'     => ['application', 'webApplication'],
 
       'plMenuProvider'  => TRUE,
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  static function getMenuEntries()
+  static function getMenuEntries ()
   {
     global $config, $ui;
     $mode = $config->get_cfg_value('WebappsMenu', 'none');
     if ($mode == 'none') {
-      return array(array(), array());
+      return [[], []];
     }
     $ldap = $config->get_ldap_link();
     if ($mode == 'all') {
       /* using raw to have the same results than with allowed mode */
       $apps = objects::ls(
         'webApplication',
-        array(
+        [
           'cn'                          => 'raw',
           'description'                 => 'raw',
           'labeledURI'                  => 'raw',
           'fdApplicationTitle'          => 'raw',
           'fdApplicationImageLocation'  => 'raw',
           'fdApplicationImage'          => 'raw',
-        )
+        ]
       );
     } else { /* allowed */
-      $apps   = array();
+      $apps   = [];
       if (is_object($ui) && isset($ui->dn)) {
         $roles  = objects::ls(
           'role',
-          array('fdApplicationAllowed' => '*'),
+          ['fdApplicationAllowed' => '*'],
           NULL,
           '(&(objectClass=fdApplicationRights)(roleOccupant='.$ui->dn.'))'
         );
@@ -83,25 +83,25 @@ class applicationManagement extends simpleManagement
       }
     }
     ksort($apps);
-    $sections = array(
-      'webapps' => array('name' => _('Web applications'), 'priority' => 100)
-    );
-    $entries = array(
-      'webapps' => array()
-    );
+    $sections = [
+      'webapps' => ['name' => _('Web applications'), 'priority' => 100]
+    ];
+    $entries = [
+      'webapps' => []
+    ];
     foreach ($apps as $dn => $app) {
       $base = preg_replace('/^[^,]+,'.preg_quote(get_ou('webappsRDN'), '/').'/', '', $dn);
       $section = 'webapps';
       if ($base != $config->current['BASE']) {
-        $ldap->cat($base, array('dn', 'ou', 'description'), '(&(ou=*)(description=*))');
+        $ldap->cat($base, ['dn', 'ou', 'description'], '(&(ou=*)(description=*))');
         if ($attrs = $ldap->fetch()) {
           $section = $attrs['ou'][0];
           if (!isset($sections[$section])) {
-            $sections[$section] = array(
+            $sections[$section] = [
               'name'      => $attrs['description'][0],
               'priority'  => 101
-            );
-            $entries[$section] = array();
+            ];
+            $entries[$section] = [];
           }
         }
       }
@@ -116,18 +116,18 @@ class applicationManagement extends simpleManagement
       }
       $name   = $app['cn'][0];
       $title  = (isset($app['fdApplicationTitle'][0]) ? $app['fdApplicationTitle'][0] : $name);
-      $entries[$section][] = array(
+      $entries[$section][] = [
         'NAME'        => $name,
         'TITLE'       => $title,
         'DESCRIPTION' => (isset($app['description'][0]) ? $app['description'][0] : $title),
         'LINK'        => $app['labeledURI'][0],
         'ICONPATH'    => $path,
-      );
+      ];
     }
-    return array(
+    return [
       $sections,
       $entries
-    );
+    ];
   }
 }
 ?>
diff --git a/applications/admin/applications/class_webApplication.inc b/applications/admin/applications/class_webApplication.inc
index 6bb8324ee8..b533315958 100644
--- a/applications/admin/applications/class_webApplication.inc
+++ b/applications/admin/applications/class_webApplication.inc
@@ -20,30 +20,30 @@
 
 class webApplication extends simplePlugin
 {
-  var $objectclasses = array('fdWebApplication');
+  var $objectclasses = ['fdWebApplication'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Web application'),
       'plDescription' => _('Web applicationts names, icons and links'),
-      'plObjectType'  => array('webApplication' => array(
+      'plObjectType'  => ['webApplication' => [
         'name'        => _('Web application'),
         'filter'      => 'objectClass=fdWebApplication',
         'ou'          => get_ou('webappsRDN'),
         'icon'        => 'geticon.php?context=categories&icon=applications-internet&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Application'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('webappsRDN')),
           new HostNameAttribute (
             _('Name'), _('Name or id for application'),
@@ -61,11 +61,11 @@ class webApplication extends simplePlugin
             _('Display Name'), _('Displayed name for links to this application'),
             'fdApplicationTitle', TRUE
           ),
-        )
-      ),
-      'icon' => array(
+        ]
+      ],
+      'icon' => [
         'name'  => _('Icon'),
-        'attrs' => array(
+        'attrs' => [
           new ImageAttribute (
             '', _('The icon for this application'),
             'fdApplicationImage', FALSE,
@@ -75,9 +75,9 @@ class webApplication extends simplePlugin
             _('Icon location'), _('Usual path to this application icon'),
             'fdApplicationImageLocation', FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/applications/admin/roles/class_applicationRights.inc b/applications/admin/roles/class_applicationRights.inc
index 46f5062278..e6ecaa0d96 100644
--- a/applications/admin/roles/class_applicationRights.inc
+++ b/applications/admin/roles/class_applicationRights.inc
@@ -20,39 +20,39 @@
 
 class applicationRights extends simplePlugin
 {
-  var $objectclasses = array('fdApplicationRights');
+  var $objectclasses = ['fdApplicationRights'];
 
   var $displayHeader = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Applications'),
       'plDescription' => _('Applications allowed for this role'),
-      'plObjectType'  => array('role'),
-      'plForeignKeys' => array(
+      'plObjectType'  => ['role'],
+      'plForeignKeys' => [
         'fdApplicationAllowed' => 'webApplication',
-      ),
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Application list'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute (
             new SelectAttribute (
               _('Applications'), _('The applications users with this role are allowed to launch'),
               'fdApplicationAllowed', TRUE
             )
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
diff --git a/applications/config/applications/class_applicationsPluginConfig.inc b/applications/config/applications/class_applicationsPluginConfig.inc
index cedbd0c7ce..dc762b66da 100644
--- a/applications/config/applications/class_applicationsPluginConfig.inc
+++ b/applications/config/applications/class_applicationsPluginConfig.inc
@@ -20,25 +20,25 @@
 
 class applicationsPluginConfig extends simplePlugin
 {
-  var $objectclasses = array('fdApplicationsPluginConf');
+  var $objectclasses = ['fdApplicationsPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Applications'),
       'plDescription'   => _('Applications plugin configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'rdns' => array(
+    return [
+      'rdns' => [
         'name'  => _('Applications'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Application RDN'), _('Branch in which applications will be stored'),
             'fdApplicationsRDN', TRUE,
@@ -52,12 +52,12 @@ class applicationsPluginConfig extends simplePlugin
           new SelectAttribute (
             _('Show web applications in menu'), _('Whether to show web applications in FD main menu'),
             'fdWebappsMenu', TRUE,
-            array('none', 'allowed', 'all'), 'none',
-            array(_('None'), _('Only allowed'), _('All'))
+            ['none', 'allowed', 'all'], 'none',
+            [_('None'), _('Only allowed'), _('All')]
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/argonaut/addons/argonaut/class_argonautAction.inc b/argonaut/addons/argonaut/class_argonautAction.inc
index d335b7c18c..611e452c65 100644
--- a/argonaut/addons/argonaut/class_argonautAction.inc
+++ b/argonaut/addons/argonaut/class_argonautAction.inc
@@ -22,7 +22,7 @@ class MacsAttribute extends GenericDialogAttribute
 {
   protected $dialogClass = 'SystemSelectDialog';
 
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = array(), $display_attr = 'cn', $acl = '')
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $display_attr = 'cn', $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'macAddress', $display_attr, $acl);
   }
@@ -30,28 +30,28 @@ class MacsAttribute extends GenericDialogAttribute
 
 class argonautAction extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Argonaut task'),
       'plDescription' => _('Schedule an argonaut task'),
-      'plObjectType'  => array('argonautTask' => array(
+      'plObjectType'  => ['argonautTask' => [
         'name'        => _('Argonaut task'),
         'aclCategory' => 'argonautQueue',
         'icon'        => 'geticon.php?context=applications&icon=argonaut&size=16',
-      )),
+      ]],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $events = argonautEventTypes::get_event_types();
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Schedule'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Action'), _('The action you are about to schedule'),
             'action', TRUE,
@@ -79,7 +79,7 @@ class argonautAction extends simplePlugin
           ),
           new CompositeAttribute(
             _('How often this task should be repeated'), 'period',
-            array(
+            [
               new IntAttribute(
                 '', '',
                 'periodValue', FALSE,
@@ -88,51 +88,51 @@ class argonautAction extends simplePlugin
               new SelectAttribute(
                 '', '',
                 'periodType', TRUE,
-                array('minutes',    'hours',    'days',     'weeks',    'months'), 'days',
-                array(_('Minutes'), _('Hours'), _('Days'),  _('Weeks'), _('Months'))
+                ['minutes',    'hours',    'days',     'weeks',    'months'], 'days',
+                [_('Minutes'), _('Hours'), _('Days'),  _('Weeks'), _('Months')]
               )
-            ),
+            ],
             '/^(\d+)_(minutes|hours|days|weeks|months)$/',
             '%s_%s',
             '',
             _('Period')
           )
-        )
-      ),
-      'targets' => array(
+        ]
+      ],
+      'targets' => [
         'name'  => _('Targets'),
-        'attrs' => array(
+        'attrs' => [
           new MacsAttribute(
             '', _('Targets for this task'),
             'targets', TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  public function __construct($action, array $targets, $scheduled)
+  public function __construct ($action, array $targets, $scheduled)
   {
     global $config;
     parent::__construct($config->current['BASE']);
 
     $this->attributesAccess['scheduled']->setManagedAttributes(
-      array(
-        'erase' => array (
-          FALSE => array (
+      [
+        'erase' => [
+          FALSE => [
             'datetime', 'period'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesAccess['periodical']->setManagedAttributes(
-      array(
-        'disable' => array (
-          FALSE => array (
+      [
+        'disable' => [
+          FALSE => [
             'period'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesAccess['period']->setLinearRendering(TRUE);
 
@@ -143,7 +143,7 @@ class argonautAction extends simplePlugin
     $this->scheduled  = $scheduled;
   }
 
-  protected function loadAttributes()
+  protected function loadAttributes ()
   {
     foreach ($this->attributesAccess as &$attribute) {
       $attribute->setInLdap(FALSE);
@@ -152,7 +152,7 @@ class argonautAction extends simplePlugin
     parent::loadAttributes();
   }
 
-  function execute()
+  function execute ()
   {
     return parent::execute().$this->getFooter();
   }
@@ -160,7 +160,7 @@ class argonautAction extends simplePlugin
   /*! \brief  Returns the plugin footer (save cancel), displayed in the template.
     @return String  HTML footer part.
    */
-  protected function getFooter()
+  protected function getFooter ()
   {
     if (!$this->displayPlugin) {
       return '';
@@ -175,10 +175,10 @@ class argonautAction extends simplePlugin
     That should be written.
     @return Array e.g. 'status' => 'bla blub'
    */
-  public function computeData()
+  public function computeData ()
   {
     timezone::get_default_timezone();
-    $ret = array('args' => array());
+    $ret = ['args' => []];
     if ($this->scheduled) {
       $timestamp = strtotime($this->datetime);
       if ($timestamp === FALSE) {
diff --git a/argonaut/addons/argonaut/class_argonautEventTypes.inc b/argonaut/addons/argonaut/class_argonautEventTypes.inc
index d67589b4c0..45b01a9c64 100644
--- a/argonaut/addons/argonaut/class_argonautEventTypes.inc
+++ b/argonaut/addons/argonaut/class_argonautEventTypes.inc
@@ -23,13 +23,13 @@ class argonautEventTypes
   /*! \brief  Returns a complete list of all available events.
     @return   Array   Containing info for all available events.
    */
-  static public function get_event_types()
+  static public function get_event_types ()
   {
     global $class_mapping;
     if (session::is_set('argonautEventTypes::get_event_types')) {
       return session::get('argonautEventTypes::get_event_types');
     } else {
-      $ret = array();
+      $ret = [];
       foreach (array_keys($class_mapping) as $class) {
         if (preg_match('/^argonautEventTypes.+$/', $class)) {
           $ret = array_merge($ret, $class::get_event_types_list());
@@ -43,7 +43,7 @@ class argonautEventTypes
   /*! \brief  Returns event information, like menu strings, images ...
     @return   Array Event information.
    */
-  static public function get_event_info($action)
+  static public function get_event_info ($action)
   {
     $events = static::get_event_types();
     if (isset($events[$action])) {
@@ -60,51 +60,51 @@ class argonautEventTypes
 
 class argonautEventTypesSystem
 {
-  static public function get_event_types_list()
+  static public function get_event_types_list ()
   {
-    return array(
-      'System.halt' => array(
+    return [
+      'System.halt' => [
         'name'  => _('Switch off'),
         'img'   => 'geticon.php?context=actions&icon=system-shutdown&size=16'
-      )
-    );
+      ]
+    ];
   }
 }
 
 class argonautEventTypesDeployment
 {
-  static public function get_event_types_list()
+  static public function get_event_types_list ()
   {
-    return array(
-      'Deployment.reboot' => array(
+    return [
+      'Deployment.reboot' => [
         'name'  => _('Reboot'),
         'img'   => 'geticon.php?context=actions&icon=system-reboot&size=16'
-      ),
-      'Deployment.wake' => array(
+      ],
+      'Deployment.wake' => [
         'name'  => _('Wake up'),
         'img'   => 'geticon.php?context=status&icon=task-running&size=16'
-      ),
-      'Deployment.update' => array(
+      ],
+      'Deployment.update' => [
         'name'  => _('Software update'),
         'img'   => 'geticon.php?context=actions&icon=system-update&size=16'
-      ),
-      'Deployment.reinstall' => array(
+      ],
+      'Deployment.reinstall' => [
         'name'  => _('(Re)Install'),
         'img'   => 'geticon.php?context=actions&icon=system-reinstall&size=16'
-      ),
-    );
+      ],
+    ];
   }
 }
 
 class argonautEventTypesLdap2zone
 {
-  static public function get_event_types_list()
+  static public function get_event_types_list ()
   {
-    return array(
-      'Ldap2Zone.slaves' => array(
+    return [
+      'Ldap2Zone.slaves' => [
         'name'  => _('Refresh slave files (ldap2zone)'),
         'img'   => 'geticon.php?context=actions&icon=view-refresh&size=16'
-      )
-    );
+      ]
+    ];
   }
 }
diff --git a/argonaut/addons/argonaut/class_argonautImportFile.inc b/argonaut/addons/argonaut/class_argonautImportFile.inc
index 07b49d1bcc..27086a586a 100644
--- a/argonaut/addons/argonaut/class_argonautImportFile.inc
+++ b/argonaut/addons/argonaut/class_argonautImportFile.inc
@@ -20,39 +20,39 @@
 
 class argonautImportFile extends simplePlugin
 {
-  protected $csv_fields = array(
+  protected $csv_fields = [
     '0' => 'TIMESTAMP',
     '1' => 'MAC',
     '2' => 'HEADER',
     '3' => 'OGROUP'
-  );
+  ];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Argonaut task import'),
       'plDescription' => _('Imports argonaut tasks from CSV file'),
-      'plObjectType'  => array('argonautQueueImport' => array(
+      'plObjectType'  => ['argonautQueueImport' => [
         'name'        => _('Argonaut task import'),
         'aclCategory' => 'argonautQueue',
         'icon'        => 'geticon.php?context=applications&icon=argonaut&size=16',
-      )),
+      ]],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Import actions from CSV file'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new CompositeAttribute (
             _('Import a list of task into argonaut'),
             'import',
-            array(
+            [
               new FileAttribute (
                 '', '',
                 'import_file', FALSE
@@ -62,21 +62,21 @@ class argonautImportFile extends simplePlugin
                 'import_submit',
                 _('Upload')
               )
-            ),
+            ],
             '', '%s%s', '',
             _('Import file')
           )
-        )
-      ),
-      'events' => array(
+        ]
+      ],
+      'events' => [
         'name'      => _('Imported tasks'),
-        'attrs'     => array(new FakeAttribute('events')),
+        'attrs'     => [new FakeAttribute('events')],
         'template'  => get_template_path('import_events.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
-  public function __construct($parent)
+  public function __construct ($parent)
   {
     global $config;
     parent::__construct($config->current['BASE'], NULL, $parent);
@@ -84,11 +84,11 @@ class argonautImportFile extends simplePlugin
     $this->attributesAccess['import']->setInLdap(FALSE);
     $this->attributesAccess['import']->setLinearRendering(TRUE);
 
-    $this->events         = array();
+    $this->events         = [];
     $this->daemon_events  = argonautEventTypes::get_event_types();
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $smarty->assign('jobtypes', join(',', array_keys($this->daemon_events)));
@@ -99,12 +99,12 @@ class argonautImportFile extends simplePlugin
     '</p>';
   }
 
-  function handle_import_submit()
+  function handle_import_submit ()
   {
     $this->parse_csv($this->import);
   }
 
-  function save_object()
+  function save_object ()
   {
     /* Import started */
     if (isset($_POST['start_import'])) {
@@ -129,11 +129,11 @@ class argonautImportFile extends simplePlugin
         foreach ($events as $key => $event) {
           /* Create event */
           if (empty($event['TIMESTAMP'])) {
-            $data = array();
+            $data = [];
           } else {
-            $data = array('timestamp' => $event['TIMESTAMP']);
+            $data = ['timestamp' => $event['TIMESTAMP']];
           }
-          $this->parent->o_queue->append_call($event['HEADER'], array($event['MAC']), $data);
+          $this->parent->o_queue->append_call($event['HEADER'], [$event['MAC']], $data);
           if ($this->parent->o_queue->is_error()) {
             msg_dialog::display(_('Infrastructure service'), msgPool::siError($this->parent->o_queue->get_error()), ERROR_DIALOG);
             $fail++;
@@ -149,7 +149,7 @@ class argonautImportFile extends simplePlugin
     parent::save_object();
   }
 
-  private function parse_csv($str)
+  private function parse_csv ($str)
   {
     /* Some file checks */
     $lines = preg_split('/\n/', $str);
@@ -159,7 +159,7 @@ class argonautImportFile extends simplePlugin
     }
 
     /* Reset current events */
-    $events = array();
+    $events = [];
 
     /* Parse each line of the given file */
     foreach ($lines as $line) {
@@ -170,7 +170,7 @@ class argonautImportFile extends simplePlugin
 
       /* Load values from file */
       $fields = explode(';', $line);
-      $event  = array();
+      $event  = [];
       foreach ($this->csv_fields as $key => $val) {
         $event[$val] = '';
         if (isset($fields[$key])) {
diff --git a/argonaut/addons/argonaut/class_argonautQueue.inc b/argonaut/addons/argonaut/class_argonautQueue.inc
index 517c214db6..d870e91547 100644
--- a/argonaut/addons/argonaut/class_argonautQueue.inc
+++ b/argonaut/addons/argonaut/class_argonautQueue.inc
@@ -36,23 +36,23 @@ class argonautQueue extends simpleManagement
   var $acl_base;
   protected $aclCategory = 'argonautQueue/';
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Deployment queue'),
       'plDescription' => _('Provide a mechanism to automatically activate systems'),
       'plIcon'        => 'geticon.php?context=applications&icon=argonaut&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 30,
-      'plCategory'    => array('argonautQueue' => array('objectClass' => 'none', 'description' => _('Deployment queue'))),
+      'plCategory'    => ['argonautQueue' => ['objectClass' => 'none', 'description' => _('Deployment queue')]],
 
-      'plProvidedAcls' => array(
+      'plProvidedAcls' => [
         'deploymentQueue' => _('Deployment queue')
-      )
-    );
+      ]
+    ];
   }
 
-  function __construct()
+  function __construct ()
   {
     global $config;
     $this->filterXMLPath  = get_template_path('deploy-filter.xml', TRUE, dirname(__FILE__));
@@ -81,7 +81,7 @@ class argonautQueue extends simpleManagement
     $this->headpage->registerElementFilter('filterStatus',    'argonautQueue::filterStatus');
   }
 
-  function importEvents()
+  function importEvents ()
   {
     $this->dialogObject = new argonautImportFile($this);
   }
@@ -89,11 +89,11 @@ class argonautQueue extends simpleManagement
   /*! \brief    Queue selected objects to be removed.
    *            Checks ACLs, Locks and ask for confirmation.
    */
-  protected function removeEntryRequested($action, array $target, array $all)
+  protected function removeEntryRequested ($action, array $target, array $all)
   {
-    $nodelete   = array();
-    $disallowed = array();
-    $this->dns  = array();
+    $nodelete   = [];
+    $disallowed = [];
+    $this->dns  = [];
 
     @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $target, 'Entry removal requested!');
 
@@ -112,7 +112,7 @@ class argonautQueue extends simpleManagement
 
       if ($this->acl_is_removeable($task['TARGETDN'])) {
         /* Only remove WAITING or ERROR entries */
-        if (in_array($task['STATUS'], array('waiting','error','processed')) ||
+        if (in_array($task['STATUS'], ['waiting','error','processed']) ||
             ($task['STATUS'] == 'processing' && !preg_match('/install/', $task['HEADERTAG'])) ) {
           $this->dns[] = $dn;
         } else {
@@ -133,25 +133,25 @@ class argonautQueue extends simpleManagement
 
     // We've at least one entry to delete.
     if (count($this->dns)) {
-      $objects = array();
+      $objects = [];
       foreach ($this->dns as $dn) {
         $tmp  = $this->headpage->getEntry($dn);
         $task = $tmp['EVENT'];
         $infos = argonautEventTypes::get_event_info($task['HEADERTAG']);
         if ($infos) {
-          $objects[] = array(
+          $objects[] = [
             'name'  => $infos['name'],
             'dn'    => $dn,
             'icon'  => $infos['img'],
             'type'  => 'task'
-          );
+          ];
         } else {
-          $objects[] = array(
+          $objects[] = [
             'name'  => $task['HEADERTAG'],
             'dn'    => $dn,
             'icon'  => '',
             'type'  => 'task'
-          );
+          ];
         }
       }
 
@@ -163,10 +163,10 @@ class argonautQueue extends simpleManagement
     }
   }
 
-  function removeEntryConfirmed($action, array $target, array $all)
+  function removeEntryConfirmed ($action, array $target, array $all)
   {
     timezone::get_default_timezone();
-    $ids = array();
+    $ids = [];
     foreach ($this->dns as $dn) {
       $entry  = $this->headpage->getEntry($dn);
       if ($this->acl_is_removeable($entry['EVENT']['TARGETDN'])) {
@@ -178,10 +178,10 @@ class argonautQueue extends simpleManagement
 
   /*! \brief  Force queue job to be aborted.
    */
-  function abortEvent($action, array $target)
+  function abortEvent ($action, array $target)
   {
-    $macs     = array();
-    $taskids  = array();
+    $macs     = [];
+    $taskids  = [];
     $headpage = $this->getHeadpage();
     foreach ($target as $id) {
       $tmp        = $headpage->getEntry($id);
@@ -189,7 +189,7 @@ class argonautQueue extends simpleManagement
       $taskids[]  = $tmp['EVENT']['ID'];
     }
 
-    $this->o_queue->append_call('wakeup', $macs, array());
+    $this->o_queue->append_call('wakeup', $macs, []);
     if ($this->o_queue->is_error()) {
       msg_dialog::display(_('Info'), sprintf(_('%s'), $this->o_queue->get_error()), INFO_DIALOG);
     }
@@ -197,18 +197,18 @@ class argonautQueue extends simpleManagement
     $this->o_queue->remove_entries($taskids);
   }
 
-  function processNow($action, array $target)
+  function processNow ($action, array $target)
   {
     $this->execute_queue_entries($target);
   }
 
-  function retryAction($action, array $target)
+  function retryAction ($action, array $target)
   {
     $entry = $this->getHeadpage()->getEntry($target[0]);
-    $this->dialogObject = new argonautAction($entry['HEADERTAG'][0], array($entry['MACADDRESS'][0]), FALSE);
+    $this->dialogObject = new argonautAction($entry['HEADERTAG'][0], [$entry['MACADDRESS'][0]], FALSE);
   }
 
-  function showErrorEntry($action, array $target)
+  function showErrorEntry ($action, array $target)
   {
     if (count($target) == 1) {
       $entry  = $this->headpage->getEntry($target[0]);
@@ -217,7 +217,7 @@ class argonautQueue extends simpleManagement
     }
   }
 
-  function detectPostActions()
+  function detectPostActions ()
   {
     $action = parent::detectPostActions();
     if (isset($_POST['import_abort'])) {
@@ -233,7 +233,7 @@ class argonautQueue extends simpleManagement
   /*! \brief  Save event dialogs.
    *          And append the new Argonaut event.
    */
-  function saveEventDialog()
+  function saveEventDialog ()
   {
     $this->dialogObject->save_object();
     $msgs = $this->dialogObject->check();
@@ -248,7 +248,7 @@ class argonautQueue extends simpleManagement
     $this->closeDialogs();
   }
 
-  protected function getTabFooter()
+  protected function getTabFooter ()
   {
     if ($this->dialogObject instanceof faiLogView) {
       return  '<p class="plugbottom">'.
@@ -262,14 +262,14 @@ class argonautQueue extends simpleManagement
   /*! \brief  Force queue job to be done as far as possible.
    *  @return Boolean TRUE in case of success, else FALSE.
    */
-  private function execute_queue_entries($ids)
+  private function execute_queue_entries ($ids)
   {
     /* Only allow execution of paused or waiting entries */
-    $update_ids = array();
+    $update_ids = [];
     foreach ($ids as $id) {
       $tmp    = $this->headpage->getEntry($id);
       $entry  = $tmp['EVENT'];
-      if (in_array($entry['STATUS'], array('paused','waiting'))) {
+      if (in_array($entry['STATUS'], ['paused','waiting'])) {
         $update_ids[] = $entry['ID'];
       }
     }
@@ -284,7 +284,7 @@ class argonautQueue extends simpleManagement
     return TRUE;
   }
 
-  private function acl_is_removeable($dn)
+  private function acl_is_removeable ($dn)
   {
     if ($this->read_only) {
       return FALSE;
@@ -293,7 +293,7 @@ class argonautQueue extends simpleManagement
     return (strpos($ui->get_permissions($dn, $this->aclCategory.get_class($this), '0'), 'd') !== FALSE);
   }
 
-  static function filterHostName($mac, $name = '', $targetdn = '', $targettype = '')
+  static function filterHostName ($mac, $name = '', $targetdn = '', $targettype = '')
   {
     $text = '';
     if (isset($name[0]) && $name[0] != 'none') {
@@ -308,7 +308,7 @@ class argonautQueue extends simpleManagement
     }
   }
 
-  static function filterTask($tag, $progress)
+  static function filterTask ($tag, $progress)
   {
     $tag      = $tag[0];
     $progress = $progress[0];
@@ -337,7 +337,7 @@ class argonautQueue extends simpleManagement
     return $str;
   }
 
-  static function filterPeriod($periodic = array())
+  static function filterPeriod ($periodic = [])
   {
     $period = "&nbsp;-";
     if (isset($periodic[0]) && !preg_match("/none/i", $periodic[0])) {
@@ -349,7 +349,7 @@ class argonautQueue extends simpleManagement
     return $period;
   }
 
-  static function filterSchedule($stamp)
+  static function filterSchedule ($stamp)
   {
     if ($stamp['0'] == '19700101000000') {
       return _('immediately');
@@ -358,7 +358,7 @@ class argonautQueue extends simpleManagement
     }
   }
 
-  static function filterStatus($row, $status, $substatus)
+  static function filterStatus ($row, $status, $substatus)
   {
     $status     = $status[0];
     $substatus  = $substatus[0];
diff --git a/argonaut/addons/argonaut/class_filterArgonautEvents.inc b/argonaut/addons/argonaut/class_filterArgonautEvents.inc
index a9c376fd3d..c4cb24fac6 100644
--- a/argonaut/addons/argonaut/class_filterArgonautEvents.inc
+++ b/argonaut/addons/argonaut/class_filterArgonautEvents.inc
@@ -21,7 +21,7 @@
 
 class filterArgonautEvents extends  filterLDAP
 {
-  static function query($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = "")
+  static function query ($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = "")
   {
     global $config;
 
@@ -29,7 +29,7 @@ class filterArgonautEvents extends  filterLDAP
     $events  = argonautEventTypes::get_event_types();
 
     /* Get tags that will be used in queue searches */
-    $event_tags = array("none");
+    $event_tags = ["none"];
     foreach ($events as $action => $evt) {
       $event_tags[] = $action;
     }
@@ -37,12 +37,12 @@ class filterArgonautEvents extends  filterLDAP
     $entries = $o_queue->get_queued_entries($event_tags, 0, 9999999, "id");
     if ($o_queue->is_error()) {
       msg_dialog::display(_("Error"), sprintf(_("Cannot load queue entries: %s"), "<br><br>".$o_queue->get_error()), ERROR_DIALOG);
-      return array();
+      return [];
     }
 
     /* Assign entries by id.
      */
-    $data = array();
+    $data = [];
     $ui   = get_userinfo();
 
 
@@ -66,7 +66,7 @@ class filterArgonautEvents extends  filterLDAP
 
       /* If WAITING add priority action
        */
-      if (in_array($entry['STATUS'], array("waiting")) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["waiting"]) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__prioUp";
         $entry['objectClass'][] = "FAKE_OC__prioDown";
         $entry['objectClass'][] = "FAKE_OC__prioPause";
@@ -74,45 +74,45 @@ class filterArgonautEvents extends  filterLDAP
 
       /* If PAUSED add resume action
        */
-      if (in_array($entry['STATUS'], array("paused")) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["paused"]) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__prioResume";
       }
 
       /* If PAUSED or WAITING add execution action
        */
-      if (in_array($entry['STATUS'], array("paused","waiting")) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["paused","waiting"]) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__processNow";
       }
 
       /* If PAUSED or WAITING add edit action
        */
-      if (in_array($entry['STATUS'], array("waiting")) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["waiting"]) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__edit";
       }
 
 
       /* If PROCESSING add abort action
        */
-      if (in_array($entry['STATUS'], array("processing")) && preg_match("/install/", $entry['HEADERTAG']) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["processing"]) && preg_match("/install/", $entry['HEADERTAG']) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__abort";
       }
 
       /* If ERROR add retry action
        */
-      if (in_array($entry['STATUS'], array("error")) && $acl_is_writeable) {
+      if (in_array($entry['STATUS'], ["error"]) && $acl_is_writeable) {
         $entry['objectClass'][] = "FAKE_OC__retry";
       }
 
       /* If WAITING or ERROR add remove action
        */
-      if ( $acl_is_removeable && in_array($entry['STATUS'], array("waiting","error","processed"))) {
+      if ( $acl_is_removeable && in_array($entry['STATUS'], ["waiting","error","processed"])) {
         $entry['objectClass'][] = "FAKE_OC__remove";
       }
-      if ($acl_is_writeable && in_array($entry['STATUS'], array("processing")) && !preg_match("/install/", $entry['HEADERTAG'])) {
+      if ($acl_is_writeable && in_array($entry['STATUS'], ["processing"]) && !preg_match("/install/", $entry['HEADERTAG'])) {
         $entry['objectClass'][] = "FAKE_OC__remove";
       }
 
-      $item = array();
+      $item = [];
       $item['count']  = 0;
       $item['EVENT']  = $entry;
       $item['dn']     = $entry['MACADDRESS'].",".$entry['TIMESTAMP'];
@@ -120,7 +120,7 @@ class filterArgonautEvents extends  filterLDAP
       foreach ($entry as $name => $value) {
         $item[] = $name;
         if (!is_array($value)) {
-          $item[$name] = array('count' => 1, $value);
+          $item[$name] = ['count' => 1, $value];
         } else {
           $item[$name] = $value;
           $item[$name]['count'] = count($value);
diff --git a/argonaut/admin/systems/argonaut/class_argonautClient.inc b/argonaut/admin/systems/argonaut/class_argonautClient.inc
index 1f417f262f..a4dea9b115 100644
--- a/argonaut/admin/systems/argonaut/class_argonautClient.inc
+++ b/argonaut/admin/systems/argonaut/class_argonautClient.inc
@@ -21,7 +21,7 @@
 
 class ArgonautServiceNameAttribute extends CompositeAttribute
 {
-  static private $argonautService_defaults = array(
+  static private $argonautService_defaults = [
     "folder"              => "/etc/init.d",
     "serviceCUPS"         => "cups",
     "serviceMail"         => "postfix",
@@ -39,17 +39,17 @@ class ArgonautServiceNameAttribute extends CompositeAttribute
     "argonautServer"      => "argonaut-server",
     "argonautFAIMonitor"  => "argonaut-fai-monitor",
     "argonautFuseConfig"  => "argonaut-fuse",
-  );
+  ];
 
-  static private $argonautService_blacklist = array(
+  static private $argonautService_blacklist = [
     "argonautDNSConfig",
     "argonautMirrorConfig",
     "serviceRepository",
-  );
+  ];
 
   function __construct ($description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, array(), "", "", $acl);
+    parent::__construct ($description, $ldapName, [], "", "", $acl);
   }
 
   function setParent (&$plugin)
@@ -61,11 +61,11 @@ class ArgonautServiceNameAttribute extends CompositeAttribute
   function loadServiceNames ()
   {
     global $config;
-    $this->attributes = array();
+    $this->attributes = [];
     // Get services tabs list from config
     $services = $config->data['TABS']['SERVERSERVICE'];
     // Add fake "folder" tab at the beginning
-    $services = array_merge(array(array('CLASS' => 'folder')), $services);
+    $services = array_merge([['CLASS' => 'folder']], $services);
 
     foreach ($services as $tab) {
       $name = $tab['CLASS'];
@@ -116,30 +116,30 @@ class ArgonautServiceNameAttribute extends CompositeAttribute
 
 class argonautClient extends simplePlugin
 {
-  var $objectclasses  = array('argonautClient');
+  var $objectclasses  = ['argonautClient'];
   var $displayHeader  = TRUE;
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut client'),
       'plDescription'   => _('Edit argonaut client settings'),
       'plSelfModify'    => FALSE,
-      'plObjectType'    => array('workstation','server','terminal','ogroup-dynamic'),
+      'plObjectType'    => ['workstation','server','terminal','ogroup-dynamic'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _("Argonaut client settings"),
-        'attrs' => array(
+        'attrs' => [
           new IntAttribute (
             _('Client port'), _('Port used by argonaut client for JSON-RPC'),
             'argonautClientPort', TRUE,
@@ -148,7 +148,7 @@ class argonautClient extends simplePlugin
           new SelectAttribute (
             _('Protocol'), _('Protocol to use for argonaut'),
             'argonautClientProtocol', TRUE,
-            array('http', 'https')
+            ['http', 'https']
           ),
           new StringAttribute (
             _('WakeOnLan interface'), _('Interface used by argonaut for WakeOnLan'),
@@ -165,11 +165,11 @@ class argonautClient extends simplePlugin
             'argonautClientLogDir', TRUE,
             '/var/log/argonaut'
           ),
-        )
-      ),
-      'ssl' => array (
+        ]
+      ],
+      'ssl' => [
         'name'  => _('SSL paths'),
-        'attrs' => array (
+        'attrs' => [
           new TrimmedStringAttribute (
             _('Key'), _('Path to the private key file on Argonaut client'),
             'argonautClientKeyPath', FALSE,
@@ -189,29 +189,29 @@ class argonautClient extends simplePlugin
             _('CN of the certificate'), _('The CN in this client certificate'),
             'argonautClientCertCN', FALSE
           ),
-        )
-      ),
-      'serviceNames' => array(
+        ]
+      ],
+      'serviceNames' => [
         'name'  => _("Service names"),
-        'attrs' => array(
+        'attrs' => [
           new ArgonautServiceNameAttribute (_("Argonaut service names"), "argonautServiceName"),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
     parent::__construct($dn, $object, $parent, $mainTab);
     $this->attributesAccess['argonautClientProtocol']->setManagedAttributes(
-      array(
-        'disable' => array (
-          'http' => array (
+      [
+        'disable' => [
+          'http' => [
             'argonautClientKeyPath','argonautClientCertPath','argonautClientCaCertPath',
             'argonautClientCertCN'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 }
diff --git a/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc b/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
index 05e0c1b5f0..b9c733db4b 100644
--- a/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
+++ b/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
@@ -20,34 +20,34 @@
 
 class deploymentTimeframe extends simplePlugin
 {
-  var $objectclasses  = array('argonautDeploymentOptions');
+  var $objectclasses  = ['argonautDeploymentOptions'];
   var $displayHeader  = TRUE;
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Deployment time frame'),
       'plDescription'   => _('Edit deployment time frame'),
-      'plObjectType'    => array('workstation','server','terminal','ogroup-dynamic'),
+      'plObjectType'    => ['workstation','server','terminal','ogroup-dynamic'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Time frames'),
-        'attrs' => array(
+        'attrs' => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('Time frames in which deployment is authorized'),
               'argonautDeploymentTimeframe',
-              array(
+              [
                 new TimeHiAttribute (
                   '', _('Opening time for this frame as HH:MM'),
                   'begin', TRUE
@@ -56,16 +56,16 @@ class deploymentTimeframe extends simplePlugin
                   _('->'), _('Closing time for this frame as HH:MM'),
                   'end', TRUE
                 )
-              ),
+              ],
               '-',
               '',
               _('Time frames')
             ),
-            FALSE, array(), TRUE
+            FALSE, [], TRUE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
index 3a31f8a56a..d4de6bb5a4 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
@@ -22,18 +22,18 @@ class argonautDNSConfig extends simpleService
 {
   protected static $showActions = FALSE;
 
-  var $objectclasses  = array('argonautDNSConfig');
+  var $objectclasses  = ['argonautDNSConfig'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut DNS settings'),
       'plDescription'   => _('Argonaut DNS settings').' ('._('Services').')',
       'plIcon'          => 'geticon.php?context=applications&icon=argonaut-dns&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
 
@@ -46,10 +46,10 @@ class argonautDNSConfig extends simpleService
     if (class_available('ZoneNameAttribute')) {
       $zoneAttributeClass = 'ZoneNameAttribute';
     }
-    return array (
-      'main' => array (
+    return  [
+      'main' => [
         'name'  => _('Ldap2zone global settings'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Bind directory'), _('The directory in which conf file must be created'),
             'argonautLdap2zoneBindDir', TRUE,
@@ -80,11 +80,11 @@ class argonautDNSConfig extends simpleService
             _('Search base'), _('LDAP base in which ldap2zone should search. Only usefull if you got several nodes for the same zone.'),
             'argonautLdap2zoneSearchBase', FALSE
           ),
-        )
-      ),
-      'master' => array (
+        ]
+      ],
+      'master' => [
         'name'  => _('Ldap2zone master settings'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Ignore reverse zone'), _('Do not write reverse zone'),
             'argonautLdap2zoneNoReverse', FALSE
@@ -92,7 +92,7 @@ class argonautDNSConfig extends simpleService
           new SelectAttribute (
             _('Notify'), '',
             'argonautLdap2zoneNotify', FALSE,
-            array('yes','no','explicit')
+            ['yes','no','explicit']
           ),
           new StringAttribute (
             _('Allow update'), _('Allow update (semicolon separated and ended)'),
@@ -105,19 +105,19 @@ class argonautDNSConfig extends simpleService
           new SelectAttribute (
             _('Check names'), _('Cause any host name for the zone to be checked for compliance with RFC 952 and RFC 1123 and take the defined action'),
             'argonautLdap2zoneCheckNames', FALSE,
-            array('','warn','fail','ignore'), ''
+            ['','warn','fail','ignore'], ''
           ),
-        )
-      ),
-      'slave' => array (
+        ]
+      ],
+      'slave' => [
         'name'  => _('Ldap2zone slave settings'),
-        'class' => array('fullwidth'),
-        'attrs' => array (
+        'class' => ['fullwidth'],
+        'attrs' => [
           new OrderedArrayAttribute(
             new PipeSeparatedCompositeAttribute(
               _('Manage DNS Slaves'),
               'argonautLdap2zoneSlaveZones',
-              array(
+              [
                 new $zoneAttributeClass(
                   _('zone'), _('DNS zone this server should be declared as slave of'),
                   'Ldap2zoneSlaveZone', TRUE
@@ -132,17 +132,17 @@ class argonautDNSConfig extends simpleService
                   TRUE, '',
                   'reverse', 'noreverse'
                 )
-              ),
+              ],
               '',
               _('DNS slaves')
             ),
             FALSE,
-            array(),
+            [],
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -152,7 +152,7 @@ class argonautDNSConfig extends simpleService
     try {
       $zones = objects::ls('dnsZone', NULL, NULL, '', TRUE);
     } catch (NonExistingObjectTypeException $e) {
-      $zones = array();
+      $zones = [];
     }
     if (!empty($zones)) {
       $attributes = $attributesInfo['slave']['attrs'][0]->attribute->attributes;
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
index 513da52b7d..b03fbe4784 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
@@ -21,18 +21,18 @@
 
 class argonautFuseConfig extends simpleService
 {
-  var $objectclasses  = array('argonautFuseConfig');
+  var $objectclasses  = ['argonautFuseConfig'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut Fuse'),
       'plDescription'   => _('Argonaut Fuse settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=argonaut-fuse&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -40,10 +40,10 @@ class argonautFuseConfig extends simpleService
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'main' => array (
+    return  [
+      'main' => [
         'name'  => _('Basic settings'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Default mode'),
             '',
@@ -58,11 +58,11 @@ class argonautFuseConfig extends simpleService
             TRUE,
             '/var/log/argonaut'
           ),
-        )
-      ),
-      'tftp' => array (
+        ]
+      ],
+      'tftp' => [
         'name'  => _('TFTP'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Pxelinux cfg path'),
             _('Path where argonaut-fuse should store pxelinux.cfg'),
@@ -70,9 +70,9 @@ class argonautFuseConfig extends simpleService
             TRUE,
             '/srv/tftp/pxelinux.cfg'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -81,7 +81,7 @@ class argonautFuseConfig extends simpleService
     parent::__construct($dn, $parent);
 
     /* Load modules */
-    $this->plugin = array();
+    $this->plugin = [];
     foreach ($config->data['TABS']['FUSEMODULETABS'] as $plug) {
       @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $plug['CLASS'], "Loading Fuse module");
       if (!plugin_available($plug['CLASS'])) {
@@ -119,7 +119,7 @@ class argonautFuseConfig extends simpleService
 
 
   /* Save data to object */
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     if (isset($_POST[get_class($this)."_posted"])) {
@@ -130,7 +130,7 @@ class argonautFuseConfig extends simpleService
     }
   }
 
-  function check()
+  function check ()
   {
     $message = parent::check();
 
@@ -144,7 +144,7 @@ class argonautFuseConfig extends simpleService
     return $message;
   }
 
-  function set_acl_category($cat)
+  function set_acl_category ($cat)
   {
     parent::set_acl_category($cat);
     foreach ($this->plugin as &$plugin) {
@@ -153,7 +153,7 @@ class argonautFuseConfig extends simpleService
     unset($plugin);
   }
 
-  function set_acl_base($base)
+  function set_acl_base ($base)
   {
     parent::set_acl_base($base);
     foreach ($this->plugin as &$plugin) {
@@ -163,7 +163,7 @@ class argonautFuseConfig extends simpleService
   }
 
   /* Save to LDAP */
-  function save()
+  function save ()
   {
     $errors = parent::save();
     if (!empty($errors)) {
@@ -185,9 +185,9 @@ class argonautFuseConfig extends simpleService
     unset($plugin);
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    $errors = array();
+    $errors = [];
     /* Remove objects */
     foreach ($this->plugin as &$plugin) {
       $plugin->dn = $this->dn;
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
index 185571bfe6..8a2e14fd88 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
@@ -20,27 +20,27 @@
 
 class argonautFuseFAIConfig extends simplePlugin
 {
-  var $objectclasses  = array('argonautFuseFAIConfig');
+  var $objectclasses  = ['argonautFuseFAIConfig'];
   var $showActions    = FALSE;
   var $displayHeader  = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut Fuse FAI module settings'),
       'plDescription'   => _('Argonaut Fuse FAI module settings'),
-      'plCategory'      => array('server'),
-      'plObjectType'    => array('fusemodule'),
+      'plCategory'      => ['server'],
+      'plObjectType'    => ['fusemodule'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array (
-      'fai' => array (
+    return  [
+      'fai' => [
         'name'  => _('FAI'),
-        'attrs' => array (
+        'attrs' => [
           new IntAttribute (
             _('FAI version'), _('Version of FAI installed on the server'),
             'argonautFuseFaiVersion', TRUE,
@@ -70,9 +70,9 @@ class argonautFuseFAIConfig extends simplePlugin
             _('Multiple distro mode'), _('This enables a mode for multiple distributions usage which adds the release as a suffix to kernel, initrd and nfsroot in the PXE file'),
             'argonautFuseMultipleReleaseMode'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -80,16 +80,16 @@ class argonautFuseFAIConfig extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab, $attributesInfo);
 
     $this->attributesAccess['argonautFuseFaiVersion']->setManagedAttributes(
-      array(
-        'disable' => array (
-          4 => array (
+      [
+        'disable' => [
+          4 => [
             'argonautFuseFai5Cmdline'
-          ),
-          5 => array (
+          ],
+          5 => [
             'argonautFuseFai4Cmdline'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 }
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
index bb89b0edce..4a2c656957 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
@@ -21,20 +21,20 @@
 
 class argonautFuseLTSPConfig extends simplePlugin
 {
-  var $objectclasses  = array('argonautFuseLTSPConfig');
+  var $objectclasses  = ['argonautFuseLTSPConfig'];
   var $showActions    = FALSE;
   var $displayHeader  = TRUE;
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut Fuse LTSP module settings'),
       'plDescription'   => _('Argonaut Fuse LTSP module settings').' ('._('Services').')',
-      'plCategory'      => array('server'),
-      'plObjectType'    => array('fusemodule'),
+      'plCategory'      => ['server'],
+      'plObjectType'    => ['fusemodule'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -42,17 +42,17 @@ class argonautFuseLTSPConfig extends simplePlugin
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'ltsp' => array (
+    return  [
+      'ltsp' => [
         'name'  => _('LTSP'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('LTSP server'),
             '',
             'argonautFuseLtspServer'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
index 4df4a9ca05..4c78610fe0 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
@@ -21,20 +21,20 @@
 
 class argonautFuseOPSIConfig extends simplePlugin
 {
-  var $objectclasses  = array("argonautFuseOPSIConfig");
+  var $objectclasses  = ["argonautFuseOPSIConfig"];
   var $showActions    = FALSE;
   var $displayHeader     = TRUE;
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("Argonaut Fuse OPSI module settings"),
       "plDescription"   => _("Argonaut Fuse OPSI module settings")." ("._("Services").")",
-      "plCategory"      => array("server"),
-      "plObjectType"    => array("fusemodule"),
+      "plCategory"      => ["server"],
+      "plObjectType"    => ["fusemodule"],
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -42,10 +42,10 @@ class argonautFuseOPSIConfig extends simplePlugin
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'opsi' => array (
+    return  [
+      'opsi' => [
         'name'  => _('OPSI'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Opsi admin'),
             '',
@@ -66,8 +66,8 @@ class argonautFuseOPSIConfig extends simplePlugin
             '',
             'argonautFuseOpsiLang'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
index 249cbd5f1d..776dadbb08 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
@@ -22,47 +22,47 @@ class argonautMirrorConfig extends simpleService
 {
   protected static $showActions = FALSE;
 
-  var $objectclasses  = array('argonautMirrorConfig');
+  var $objectclasses  = ['argonautMirrorConfig'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut Mirror settings'),
       'plDescription'   => _('Argonaut Mirror settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=argonaut-mirror&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array (
-    'section1' => array (
+    return  [
+    'section1' => [
         'name'  => _('Argonaut mirror settings'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Local Debian mirror directory'),
             '',
             'argonautMirrorDir', FALSE,
             '/srv/www/debian'
           )
-        )
-      ),
-      'section2' => array (
+        ]
+      ],
+      'section2' => [
         'name' => _('Argonaut Debconf Crawler configuration'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Local packages folder'),
             _('Folder in which the crawler will store packages during analysis'),
             'argonautCrawlerPackagesFolder', FALSE,
             '/var/cache/argonaut/packages'
           )
-        )
-      ),
-      'section3' => array (
+        ]
+      ],
+      'section3' => [
         'name' => _('Argonaut Repository configuration'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Proxy'),
             _('Specifies the http proxy (like Squid) to use for http and hftp method'),
@@ -100,9 +100,9 @@ class argonautMirrorConfig extends simpleService
             'argonautLdap2repVerbose', FALSE,
             FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautServer.inc b/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
index aa605276d5..92f6d3498a 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
@@ -22,22 +22,22 @@
 class argonautServer extends simpleService
 {
   /* This plugin only writes its objectClass */
-  var $objectclasses  = array("argonautServer");
+  var $objectclasses  = ["argonautServer"];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
     $acls = parent::generatePlProvidedAcls(static::getAttributesInfo());
     unset($acls['simpleServiceStart']);
     unset($acls['simpleServiceStop']);
     unset($acls['simpleServiceRestart']);
-    return array(
+    return [
       'plShortName'   => _('Argonaut server'),
       'plDescription' => _('Argonaut server').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=argonaut&size=16',
 
       'plProvidedAcls'  => $acls,
-    );
+    ];
   }
 
     /*!
@@ -45,10 +45,10 @@ class argonautServer extends simpleService
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'server' => array (
+    return  [
+      'server' => [
         'name'  => _('Argonaut server'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Delete finished tasks'),
             _('Wether or not argonaut server should delete successfully finished tasks'),
@@ -64,7 +64,7 @@ class argonautServer extends simpleService
           new SelectAttribute (
             _('Protocol'), _('Protocol to use for argonaut'),
             'argonautProtocol', TRUE,
-            array('http', 'https')
+            ['http', 'https']
           ),
           new IntAttribute (
             _('Port'),
@@ -85,11 +85,11 @@ class argonautServer extends simpleService
             'argonautLogDir', FALSE,
             '/var/log/argonaut'
           )
-        )
-      ),
-      'wakeonlan' => array (
+        ]
+      ],
+      'wakeonlan' => [
         'name'  => _('Wake on lan'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Interface'),
             _('Interface to use for sending WakeOnLan requests'),
@@ -101,11 +101,11 @@ class argonautServer extends simpleService
             'argonautIpTool', FALSE,
             '/sbin/ifconfig'
           ),
-        )
-      ),
-      'ssl' => array (
+        ]
+      ],
+      'ssl' => [
         'name'  => _('SSL paths'),
-        'attrs' => array (
+        'attrs' => [
           new TrimmedStringAttribute (
             _('Key'), _('Path to the private key file on Argonaut server'),
             'argonautKeyPath', FALSE,
@@ -126,9 +126,9 @@ class argonautServer extends simpleService
             'argonautCertCN', FALSE
           ),
           new HiddenAttribute ('argonautServerToken'),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -138,18 +138,18 @@ class argonautServer extends simpleService
       $this->argonautServerToken = md5(random_int(0, PHP_INT_MAX));
     }
     $this->attributesAccess['argonautProtocol']->setManagedAttributes(
-      array(
-        'disable' => array (
-          'http' => array (
+      [
+        'disable' => [
+          'http' => [
             'argonautKeyPath','argonautCertPath','argonautCaCertPath','argonautCertCN'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 
   /*! \brief Get service information for serverService plugin */
-  function getListEntry()
+  function getListEntry ()
   {
     $fields = parent::getListEntry();
 
diff --git a/argonaut/html/getFAIstatus.php b/argonaut/html/getFAIstatus.php
index 595737367c..9480532fa2 100644
--- a/argonaut/html/getFAIstatus.php
+++ b/argonaut/html/getFAIstatus.php
@@ -28,11 +28,11 @@
 
 session_cache_limiter("private");
 session::start();
-session::global_set('errorsAlreadyPosted', array());
+session::global_set('errorsAlreadyPosted', []);
 
 /* Logged in? Simple security check */
 if (!session::global_is_set('ui')) {
-  logging::log('security', 'unknown', '', array(), 'Error: getFAIstatus.php called without session');
+  logging::log('security', 'unknown', '', [], 'Error: getFAIstatus.php called without session');
   header ('Location: index.php');
   exit;
 }
diff --git a/argonaut/include/class_supportDaemon.inc b/argonaut/include/class_supportDaemon.inc
index 144cede7ff..86bb3f20d9 100644
--- a/argonaut/include/class_supportDaemon.inc
+++ b/argonaut/include/class_supportDaemon.inc
@@ -34,8 +34,8 @@ class supportDaemon
 {
   private $s_host       = "";
   private $host_error   = "";
-  private $http_options = array();
-  private $ssl_options  = array();
+  private $http_options = [];
+  private $ssl_options  = [];
 
   private $s_error      = "";
   private $b_error      = FALSE;
@@ -48,7 +48,7 @@ class supportDaemon
   /*!
    * \brief constructor
    */
-  public function __construct()
+  public function __construct ()
   {
     global $config;
     /* This should only be the case if we call this from setup.
@@ -72,32 +72,32 @@ class supportDaemon
   /*!
    * \brief Load argonaut server config from argonaut service in ldap
    */
-  public function get_argonaut_host()
+  public function get_argonaut_host ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search(
       "(objectClass=argonautServer)",
-      array(
+      [
         'cn','ipHostNumber','argonautProtocol','argonautPort',
         'argonautTimeout','argonautCertCN',
         'argonautServerToken'
-      )
+      ]
     );
     if ($ldap->count() == 1) {
       $ldap_infos = $ldap->fetch();
       if (isset($ldap_infos['argonautTimeout'][0])) {
-        $this->http_options = array(
+        $this->http_options = [
           'timeout' => $ldap_infos['argonautTimeout'][0]
-        );
+        ];
         if ($ldap_infos['argonautProtocol'][0] == 'https') {
-          $this->ssl_options = array(
+          $this->ssl_options = [
             'cafile'            => $config->get_cfg_value('SslCaCertPath'),
             'peer_name'         => $ldap_infos['argonautCertCN'][0],
             'verify_peer'       => TRUE,
             'verify_peer_name'  => TRUE,
-          );
+          ];
           $sshaMethod = new passwordMethodssha();
           $this->http_options['header'] = 'Authorization: Basic '.base64_encode('fd:'.$sshaMethod->generate_hash($ldap_infos['argonautServerToken'][0]));
         }
@@ -116,7 +116,7 @@ class supportDaemon
    *
    * \return boolean TRUE if the server pings, FALSE otherwise
    */
-  public function is_available()
+  public function is_available ()
   {
     if ($this->s_host == "") {
       $this->set_error($this->host_error);
@@ -164,14 +164,14 @@ class supportDaemon
     return TRUE;
   }
 
-  private function new_state($state_value)
+  private function new_state ($state_value)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date('H.i.s').' Setting state ('.$state_value.') to ');
-    session::global_set('argonaut_state', array(
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date ('H.i.s').' Setting state ('.$state_value.') to ');
+    session::global_set('argonaut_state', [
       'date'  => time(),
       'error' => $this->s_error,
       'value' => $state_value
-    ));
+    ]);
     return $state_value;
   }
 
@@ -182,7 +182,7 @@ class supportDaemon
    *
    * \return TRUE if correctly appended FALSE otherwise
    */
-  public function append($event)
+  public function append ($event)
   {
     if (!($event instanceof argonautAction)) {
       $this->set_error('Event object passed to append was not of the expected argonautAction type');
@@ -209,9 +209,9 @@ class supportDaemon
    *
    * \return the returned value if correctly executed and FALSE otherwise
    */
-  public function append_call($action, $targets, $data)
+  public function append_call ($action, $targets, $data)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, array('action' => $action, 'targets' => $targets, 'data' => $data), date('H.i.s').' Appending call to');
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, ['action' => $action, 'targets' => $targets, 'data' => $data], date ('H.i.s').' Appending call to');
     if ($this->s_host == '') {
       $this->set_error($this->host_error);
       return FALSE;
@@ -224,12 +224,12 @@ class supportDaemon
     try {
       $client = new jsonRPCClient($this->s_host, $this->http_options, $this->ssl_options);
       if (!is_array($targets)) {
-        $tmpTargets = array($targets);
+        $tmpTargets = [$targets];
       } else {
         $tmpTargets = $targets;
       }
       $status = $client->action($action, $tmpTargets, $data);
-      @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date('H.i.s').' Answer');
+      @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date ('H.i.s').' Answer');
       $this->reset_error();
       $this->new_state(TRUE);
       if (is_array($status) && !is_array($targets) && isset($status[0])) {
@@ -254,9 +254,9 @@ class supportDaemon
    *
    * \param  String $str The Error message,
    */
-  private function set_error($str)
+  private function set_error ($str)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date('H.i.s').' Setting error to');
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date ('H.i.s').' Setting error to');
     $this->b_error = TRUE;
     $this->s_error = $str;
   }
@@ -265,7 +265,7 @@ class supportDaemon
   /*!
    * \brief  Resets the error message.
    */
-  private function reset_error()
+  private function reset_error ()
   {
     $this->b_error = FALSE;
     $this->s_error = "";
@@ -277,7 +277,7 @@ class supportDaemon
    *
    * \return boolean returns TRUE or FALSE, whether there is an error or not.
    */
-  public function is_error()
+  public function is_error ()
   {
     return $this->b_error;
   }
@@ -288,7 +288,7 @@ class supportDaemon
    *
    * \return string Returns the last error.
    */
-  public function get_error()
+  public function get_error ()
   {
     $str = $this->s_error;
     $ret = "";
@@ -310,12 +310,12 @@ class supportDaemon
    *
    * \return array The entries formatted
    */
-  private function format_entries($entries)
+  private function format_entries ($entries)
   {
     global $config;
     timezone::get_default_timezone();
-    $entries_r  = array();
-    $macInfos   = array();
+    $entries_r  = [];
+    $macInfos   = [];
     $ldap       = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     foreach ($entries as &$entry) {
@@ -324,18 +324,18 @@ class supportDaemon
 
       /* Do an ldap search only if we haven't done it for the same mac before */
       if (!isset($macInfos[$entry_r['MACADDRESS']])) {
-        $types = array('workstation','server','terminal');
+        $types = ['workstation','server','terminal'];
         foreach ($types as $type) {
-          $objects = objects::ls($type, array('dn' => 'raw', 'cn' => 1), NULL, '(macAddress='.$entry_r['MACADDRESS'].')');
+          $objects = objects::ls($type, ['dn' => 'raw', 'cn' => 1], NULL, '(macAddress='.$entry_r['MACADDRESS'].')');
           if (count($objects) > 1) {
             trigger_error('Duplicated mac address '.$entry_r['MACADDRESS'].' in LDAP');
           }
           if (count($objects) > 0) {
-            $macInfos[$entry_r['MACADDRESS']] = array(
+            $macInfos[$entry_r['MACADDRESS']] = [
               'dn'    => reset($objects)['dn'],
               'type'  => $type,
               'cn'    => reset($objects)['cn']
-            );
+            ];
             break;
           }
         }
@@ -369,7 +369,7 @@ class supportDaemon
    *
    * \return array All queued entries as an array or FALSE if there is an error.
    */
-  public function get_queued_entries()
+  public function get_queued_entries ()
   {
     if ($this->s_host == "") {
       $this->set_error($this->host_error);
@@ -399,7 +399,7 @@ class supportDaemon
    *
    * \return array  Array of the requested entries.
   */
-  public function get_entries_by_id($ids)
+  public function get_entries_by_id ($ids)
   {
     return $this->get_entries("get_entries_by_id", $ids);
   }
@@ -411,7 +411,7 @@ class supportDaemon
    *
    * \return boolean TRUE on success FALSE otherwise.
    */
-  public function remove_entries($ids)
+  public function remove_entries ($ids)
   {
     if (!is_array($ids)) {
       trigger_error("Requires an array as parameter.");
@@ -448,9 +448,9 @@ class supportDaemon
    *
    * \return Boolean TRUE on success.
   */
-  public function remove_entry($id)
+  public function remove_entry ($id)
   {
-    return $this->remove_entries(array($id));
+    return $this->remove_entries([$id]);
   }
 
   /*!
@@ -460,9 +460,9 @@ class supportDaemon
    *
    * \return array  array of the requested entry.
   */
-  public function get_entry_by_id($id)
+  public function get_entry_by_id ($id)
   {
-    return $this->get_entries_by_id(array($id));
+    return $this->get_entries_by_id([$id]);
   }
 
   /*!
@@ -472,7 +472,7 @@ class supportDaemon
    *
    * \return boolean Returns TRUE on success FALSE otherwise.
   */
-  public function process_entries_now($ids)
+  public function process_entries_now ($ids)
   {
     if (!is_array($ids)) {
       trigger_error("Requires an array as first parameter.");
@@ -509,13 +509,13 @@ class supportDaemon
    *
    * \return boolean Returns TRUE if currently installing FALSE otherwise.
    */
-  public function is_currently_installing($mac)
+  public function is_currently_installing ($mac)
   {
-    $evts = $this->get_entries_by_mac(array($mac));
+    $evts = $this->get_entries_by_mac([$mac]);
     if ($evts) {
       foreach ($evts as $evt) {
         if (($evt['STATUS'] == "processing") &&
-            in_array($evt['HEADERTAG'], array("reinstall","update"))) {
+            in_array($evt['HEADERTAG'], ["reinstall","update"])) {
 
           return TRUE;
         }
@@ -531,7 +531,7 @@ class supportDaemon
    *
    * \return array  The entries for the requested mac addresses.
    */
-  public function get_entries_by_mac($macs)
+  public function get_entries_by_mac ($macs)
   {
     return $this->get_entries("get_entries_by_mac", $macs);
   }
@@ -545,7 +545,7 @@ class supportDaemon
    *
    * \return Array   The entries for the requested addresses.
    */
-  private function get_entries($func, $address)
+  private function get_entries ($func, $address)
   {
     if (!is_array($address)) {
       trigger_error("Requires an array as parameter.");
@@ -589,7 +589,7 @@ class supportDaemon
    *  MAC_00_01_6C_9D_B9_FA['install_20080311_090900']['FILES'][1]=syslog.log
    * \endcode
    */
-  public function get_log_info_for_mac($mac)
+  public function get_log_info_for_mac ($mac)
   {
     if (empty($mac)) {
       return FALSE;
@@ -604,7 +604,7 @@ class supportDaemon
       /* directory does not exists */
       return FALSE;
     }
-    $ret = array();
+    $ret = [];
     foreach ($dates as $date) {
       if ($date == "." || $date == "..") {
           continue;
@@ -631,7 +631,7 @@ class supportDaemon
    * \param string $file The log filename.
    *
    */
-  public function get_log_file($mac, $date, $file)
+  public function get_log_file ($mac, $date, $file)
   {
     $path = $this->logdir.strtolower("/$mac")."/$date/$file";
     if (is_file($path)) {
@@ -654,7 +654,7 @@ class supportDaemon
    *
    * \return boolean TRUE if the workstation is running an argonaut daemon
   */
-  public function ping($mac)
+  public function ping ($mac)
   {
     if ($this->s_host == "") {
       $this->set_error($this->host_error);
@@ -697,14 +697,14 @@ class supportDaemon
    *
    * \return Array   List of packages that fit the given parameters.
   */
-  public function FAI_get_packages($release, $attrs, $filters, $from = -1, $to = -1, $package_list = FALSE)
+  public function FAI_get_packages ($release, $attrs, $filters, $from = -1, $to = -1, $package_list = FALSE)
   {
     if ($this->s_host == "") {
       $this->set_error($this->host_error);
-      return array();
+      return [];
     }
     if ($this->saved_state() == FALSE) {
-      return array();
+      return [];
     }
 
     // filters is a package name list
@@ -717,7 +717,7 @@ class supportDaemon
     try {
       $client = new jsonRPCClient($this->s_host, $this->http_options, $this->ssl_options);
       $res = $client->get_packages($release, $attrs, $filters, $from, $to);
-      $to_return = array();
+      $to_return = [];
       $attrs = array_map('strtoupper', $attrs);
       foreach ($res as $distribution => $packages) {
         $words = preg_split("/\//", $distribution);
@@ -746,11 +746,11 @@ class supportDaemon
       $this->set_error($e->getMessage());
       // connection is OK
       $this->new_state(TRUE);
-      return array();
+      return [];
     } catch (jsonRPCClientNetworkErrorException $e) {
       $this->set_error($e->getMessage());
       $this->new_state(FALSE);
-      return array();
+      return [];
     }
   }
 
@@ -761,10 +761,10 @@ class supportDaemon
    *
    * \return string Escaped string
   */
-  public function escape_perl_chars($str)
+  public function escape_perl_chars ($str)
   {
-    $patterns = array("/\+/", "/\*/", "/\./");
-    $escaped  = array("\+",   "\*",   "\."  );
+    $patterns = ["/\+/", "/\*/", "/\./"];
+    $escaped  = ["\+",   "\*",   "\."  ];
     return preg_replace($patterns, $escaped, $str);
   }
 
@@ -774,9 +774,9 @@ class supportDaemon
    *
    * \return array  All kernel packages for the given release
   */
-  public function FAI_get_kernels($release)
+  public function FAI_get_kernels ($release)
   {
-    $kernels = $this->FAI_get_packages($release, array("package"), array("linux-image", '^kernel$'));
+    $kernels = $this->FAI_get_packages($release, ["package"], ["linux-image", '^kernel$']);
     foreach ($kernels as &$kernel) {
       $kernel = $kernel['PACKAGE'];
     }
@@ -791,7 +791,7 @@ class supportDaemon
    *
    * \return TRUE if success or FALSE otherwise
   */
-  public function clean_queue_from_mac($macs)
+  public function clean_queue_from_mac ($macs)
   {
     if ($this->s_host == "") {
       $this->set_error($this->host_error);
@@ -805,7 +805,7 @@ class supportDaemon
       return TRUE;
     }
     if (!is_array($macs)) {
-      $macs = array($macs);
+      $macs = [$macs];
     }
 
     try {
diff --git a/argonaut/include/jsonRPCClient.php b/argonaut/include/jsonRPCClient.php
index 92d2b9669c..e66f5cd270 100644
--- a/argonaut/include/jsonRPCClient.php
+++ b/argonaut/include/jsonRPCClient.php
@@ -104,7 +104,7 @@ class jsonRPCClient {
    *
    * \param boolean $debug false
    */
-  public function __construct($url, $http_options = array(), $ssl_options = array(), $debug = FALSE)
+  public function __construct ($url, $http_options = [], $ssl_options = [], $debug = FALSE)
   {
     // server URL
     $this->url = $url;
@@ -129,7 +129,7 @@ class jsonRPCClient {
    *
    * \param boolean $notification
    */
-  public function setRPCNotification($notification)
+  public function setRPCNotification ($notification)
   {
     empty($notification) ?
               $this->notification = FALSE
@@ -146,7 +146,7 @@ class jsonRPCClient {
    *
    * \return array
    */
-  public function __call($method, $params)
+  public function __call ($method, $params)
   {
     $debug = "";
 
@@ -171,26 +171,26 @@ class jsonRPCClient {
     }
 
     // prepares the request
-    $request = array(
+    $request = [
             'method' => $method,
             'params' => $params,
             'id' => $currentId
-            );
+            ];
     $request = json_encode($request);
     $this->debug && $debug .= '***** Request *****'."\n".$request."\n".'***** End Of request *****'."\n\n";
 
     // performs the HTTP(S) POST
-    $opts = array (
+    $opts = [
       'http' => array_merge(
-        array (
+         [
           'method'  => 'POST',
           'header'  => 'Content-type: application/json',
           'content' => $request
-        ),
-        $this->http_options
+         ],
+         $this->http_options
       ),
       'ssl' => $this->ssl_options
-    );
+    ];
 
     $context  = stream_context_create($opts);
     $fp = fopenWithErrorHandling($this->url, 'r', FALSE, $context);
diff --git a/audit/admin/audit/class_auditEvent.inc b/audit/admin/audit/class_auditEvent.inc
index 452ff68970..64bc20ff1e 100644
--- a/audit/admin/audit/class_auditEvent.inc
+++ b/audit/admin/audit/class_auditEvent.inc
@@ -34,32 +34,32 @@ class auditEvent extends simplePlugin
 {
   public $base;
 
-  var $objectclasses = array('fdAuditEvent');
+  var $objectclasses = ['fdAuditEvent'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Audit event'),
       'plDescription' => _('An event like ldap modification which was registered by audit plugin'),
-      'plObjectType'  => array('auditEvent' => array(
+      'plObjectType'  => ['auditEvent' => [
         'name'        => _('Audit event'),
         'filter'      => 'objectClass=fdAuditEvent',
         'icon'        => 'geticon.php?context=applications&icon=audit&size=16',
         'ou'          => get_ou('auditRDN'),
         'mainAttr'    => FALSE,
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Event'),
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('fdAuditId'),
           new GeneralizedTimeDisplayAttribute(
             _('Time'), _('Date and time this event happened'),
@@ -71,9 +71,9 @@ class auditEvent extends simplePlugin
           new DisplayLDAPAttribute  (_('Object'),       _('Target object'),   'fdAuditObject',      TRUE),
           new DisplayLDAPArrayAttribute(_('Attributes'), _('Target attributes'), 'fdAuditAttributes', FALSE),
           new DisplayLDAPAttribute  (_('Result'),       _('Result or error'), 'fdAuditResult',      FALSE),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -82,7 +82,7 @@ class auditEvent extends simplePlugin
     $this->fdAuditId = random_int(0, PHP_INT_MAX);
   }
 
-  function compute_dn()
+  function compute_dn ()
   {
     return $this->create_unique_dn('fdAuditDateTime', get_ou('auditRDN').$this->base);
   }
diff --git a/audit/admin/audit/class_auditManagement.inc b/audit/admin/audit/class_auditManagement.inc
index d149ff6cb0..9bf0e4f214 100644
--- a/audit/admin/audit/class_auditManagement.inc
+++ b/audit/admin/audit/class_auditManagement.inc
@@ -20,11 +20,11 @@
 
 class auditManagement extends simpleManagement
 {
-  protected $objectTypes  = array('auditEvent');
+  protected $objectTypes  = ['auditEvent'];
 
-  protected $autoFilterAttributes = array(
+  protected $autoFilterAttributes = [
     'dn','fdAuditDateTime','fdAuditAction','fdAuditAuthorDN','fdAuditObjectType',
-    'fdAuditObject','fdAuditAttributes','fdAuditResult');
+    'fdAuditObject','fdAuditAttributes','fdAuditResult'];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
@@ -35,17 +35,17 @@ class auditManagement extends simpleManagement
 
   public static $skipSnapshots = TRUE;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Audit'),
       'plDescription' => _('Audit events display'),
       'plIcon'        => 'geticon.php?context=applications&icon=audit&size=48',
       'plSection'     => 'reporting',
-      'plManages'     => array('auditEvent'),
+      'plManages'     => ['auditEvent'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
@@ -71,24 +71,24 @@ class auditManagement extends simpleManagement
 
       $tag    = 'STARTDATE';
       $filter .= '$'.$tag;
-      $this->filter->elements[$tag] = array(
+      $this->filter->elements[$tag] = [
         'type'    => 'date',
         'tag'     => $tag,
         'default' => '',
         'unset'   => '',
         'set'     => '(fdAuditDateTime>=$)'
-      );
+      ];
       $this->filter->elementValues[$tag] = '';
 
       $tag    = 'ENDDATE';
       $filter .= '$'.$tag;
-      $this->filter->elements[$tag] = array(
+      $this->filter->elements[$tag] = [
         'type'    => 'date',
         'tag'     => $tag,
         'default' => '',
         'unset'   => '',
         'set'     => '(fdAuditDateTime<=$)'
-      );
+      ];
       $this->filter->elementValues[$tag] = '';
 
       $attributes = array_values(array_unique($attributes));
@@ -106,68 +106,68 @@ class auditManagement extends simpleManagement
   {
     $data = parent::parseXML($file);
     $data['list']['table']['layout'] = '|20px;c||||||50px;r|';
-    $columns = array (
-      array(
+    $columns = [
+      [
         'label'         => _('Time'),
         'sortAttribute' => 'fdAuditDateTime',
         'sortType'      => 'string',
         'value'         => '%{filter:filterDateTime(pid,row,dn,fdAuditDateTime)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => _('Author'),
         'sortAttribute' => 'fdAuditAuthorDN',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",fdAuditAuthorDN)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => _('Action'),
         'sortAttribute' => 'fdAuditAction',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",fdAuditAction)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => _('Type'),
         'sortAttribute' => 'fdAuditObjectType',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",fdAuditObjectType)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => _('Target'),
         'sortAttribute' => 'fdAuditObject',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",fdAuditObject)}',
         'export'        => 'true',
-      ),
-    );
+      ],
+    ];
     array_splice($data['list']['table']['column'], 1, count($data['list']['table']['column']), $columns);
     return $data;
   }
 
-  function renderList()
+  function renderList ()
   {
     global $config;
     $smarty = get_smarty();
-    $filters = array(
-      array(
+    $filters = [
+      [
         'id'    => 'STARTDATE',
         'label' => _('Newer than')
-      ),
-      array(
+      ],
+      [
         'id'    => 'ENDDATE',
         'label' => _('Older than')
-      ),
-    );
+      ],
+    ];
     $smarty->assign('dateFilters', $filters);
     $this->headpage->update();
     $display = $this->headpage->render();
     return $this->getHeader().$display;
   }
 
-  static function filterDateTime()
+  static function filterDateTime ()
   {
     $pid    = func_get_arg(0);
     $row    = func_get_arg(1);
diff --git a/audit/config/audit/class_auditConfig.inc b/audit/config/audit/class_auditConfig.inc
index ee8b41defe..91465b2ba4 100644
--- a/audit/config/audit/class_auditConfig.inc
+++ b/audit/config/audit/class_auditConfig.inc
@@ -20,26 +20,26 @@
 
 class auditConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdAuditPluginConf');
+  var $objectclasses  = ['fdAuditPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Audit configuration'),
       'plDescription'   => _('FusionDirectory audit plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Audit'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Audit RDN'), _('Branch in which audit events will be stored'),
             'fdAuditRDN', TRUE,
@@ -51,16 +51,16 @@ class auditConfig extends simplePlugin
               'fdAuditActions', TRUE,
               logging::$validActions
             ),
-            array('modify','create','remove')
+            ['modify','create','remove']
           ),
           new IntAttribute (
             _('Days to keep'), _('Number of days of audit to keep in the LDAP when cleaning'),
             'fdAuditRotationDelay', TRUE,
             1, FALSE, 120
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/autofs/admin/autofs/class_autofsManagement.inc b/autofs/admin/autofs/class_autofsManagement.inc
index 548fafad87..a21d3c8aee 100644
--- a/autofs/admin/autofs/class_autofsManagement.inc
+++ b/autofs/admin/autofs/class_autofsManagement.inc
@@ -20,45 +20,45 @@
 
 class autofsManagement extends simpleManagement
 {
-  protected $objectTypes  = array('nisMap', 'nisObject');
+  protected $objectTypes  = ['nisMap', 'nisObject'];
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'nisMapName', 'nisMapEntry');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'nisMapName', 'nisMapEntry'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Auto fs'),
       'plDescription' => _('Auto fs management'),
       'plIcon'        => 'geticon.php?context=applications&icon=autofs&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 5,
-      'plManages'     => array('nisMap', 'nisObject'),
+      'plManages'     => ['nisMap', 'nisObject'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function parseXML ($file)
   {
     $data = parent::parseXML($file);
     $data['list']['table']['layout'] = '|20px;c||||150px;r|';
-    $columns = array(
-      array(
+    $columns = [
+      [
         'label'         => 'Mount point',
         'sortAttribute' => 'nisMapName',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",nisMapName)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => 'Automount entry',
         'sortAttribute' => 'nisMapEntry',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",nisMapEntry)}',
         'export'        => 'true',
-      ),
-    );
+      ],
+    ];
     array_splice($data['list']['table']['column'], 2, 1, $columns);
     return $data;
   }
diff --git a/autofs/admin/autofs/class_nisMap.inc b/autofs/admin/autofs/class_nisMap.inc
index 683c261787..f1bfac4bea 100644
--- a/autofs/admin/autofs/class_nisMap.inc
+++ b/autofs/admin/autofs/class_nisMap.inc
@@ -22,40 +22,40 @@ class nisMap extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses  = array('nisMap', 'top');
+  var $objectclasses  = ['nisMap', 'top'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Mount point'),
       'plDescription'   => _('Autofs mount point'),
-      'plObjectType'    => array('nisMap' => array(
+      'plObjectType'    => ['nisMap' => [
         'name'        => _('Mount point'),
         'filter'      => 'objectClass=nisMap',
         'ou'          => get_ou('autofsRDN'),
         'icon'        => 'geticon.php?context=applications&icon=autofs-nis-netmap&size=16',
         'mainAttr'    => 'nisMapName',
-      )),
+      ]],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Mount point'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('autofsRDN')),
           new HostNameAttribute (
             _('Name'), _('Name of the mount point'),
             'nisMapName', TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 
diff --git a/autofs/admin/autofs/class_nisObject.inc b/autofs/admin/autofs/class_nisObject.inc
index bb5f17056f..639ed406be 100644
--- a/autofs/admin/autofs/class_nisObject.inc
+++ b/autofs/admin/autofs/class_nisObject.inc
@@ -22,37 +22,37 @@ class nisObject extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses  = array('nisObject');
+  var $objectclasses  = ['nisObject'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Directory'),
       'plDescription'   => _('Directory'),
-      'plObjectType'    => array('nisObject' => array(
+      'plObjectType'    => ['nisObject' => [
         'name'        => _('Directory'),
         'filter'      => 'objectClass=nisObject',
         'ou'          => get_ou('autofsRDN'),
         'icon'        => 'geticon.php?context=applications&icon=autofs-nis-object&size=16',
         'mainAttr'    => 'cn',
-      )),
-      'plForeignKeys'  => array(
-        'nisMapName'   => array(
-          array('nisMap', 'nisMapName'),
-        ),
-      ),
+      ]],
+      'plForeignKeys'  => [
+        'nisMapName'   => [
+          ['nisMap', 'nisMapName'],
+        ],
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Directory'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('autofsRDN')),
           new StringAttribute (
             _('Name'), _('Name of this directory'),
@@ -67,11 +67,11 @@ class nisObject extends simplePlugin
           new SelectAttribute (
             _('Mount point'), _('The mount point this directory will be placed in'),
             'nisMapName', TRUE,
-            array()
+            []
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -80,7 +80,7 @@ class nisObject extends simplePlugin
     $this->attributesAccess['nisMapName']->setChoices($this->getMountPoints());
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->attributesAccess['nisMapName']->setChoices($this->getMountPoints());
@@ -91,8 +91,8 @@ class nisObject extends simplePlugin
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd(get_ou('autofsRDN').$this->base);
-    $ldap->search('(objectClass=nisMap)', array('nisMapName'));
-    $nisMaps = array();
+    $ldap->search('(objectClass=nisMap)', ['nisMapName']);
+    $nisMaps = [];
     while ($attrs = $ldap->fetch()) {
       $nisMaps[] = $attrs['nisMapName'][0];
     }
@@ -100,13 +100,13 @@ class nisObject extends simplePlugin
   }
 
   /* We need to fix the base */
-  function get_allowed_bases()
+  function get_allowed_bases ()
   {
     $this->base = preg_replace('/^nisMapName=[^,]+,/', '', $this->base);
     return parent::get_allowed_bases();
   }
 
-  function compute_dn()
+  function compute_dn ()
   {
     return 'cn='.ldap_escape($this->attributesAccess['cn']->getValue(), '', LDAP_ESCAPE_DN).','.
             'nisMapName='.ldap_escape($this->nisMapName, '', LDAP_ESCAPE_DN).','.
diff --git a/autofs/config/autofs/class_autofsConfig.inc b/autofs/config/autofs/class_autofsConfig.inc
index 2cceac5934..f17f60d4ce 100644
--- a/autofs/config/autofs/class_autofsConfig.inc
+++ b/autofs/config/autofs/class_autofsConfig.inc
@@ -20,35 +20,35 @@
 
 class autofsConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdAutofsPluginConf");
+  var $objectclasses  = ["fdAutofsPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("Autofs configuration"),
       "plDescription"   => _("FusionDirectory autofs plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('AutoFS'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('AutoFS RDN'), _('Branch in which automount info will be stored'),
             'fdAutofsRDN', TRUE,
             'ou=autofs'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/certificates/personal/certificates/class_userCertificates.inc b/certificates/personal/certificates/class_userCertificates.inc
index 3da4097c91..fc099a7443 100644
--- a/certificates/personal/certificates/class_userCertificates.inc
+++ b/certificates/personal/certificates/class_userCertificates.inc
@@ -20,25 +20,25 @@
 
 class CertificateOrderedArrayAttribute extends OrderedArrayAttribute
 {
-  protected function genRowIcons($key, $value)
+  protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
     list ($img, $nbicons) = parent::genRowIcons($key, $value);
     $img = $this->renderInputField(
       'image', $id.'_download_'.$key,
-      array(
+      [
         'src'   => 'geticon.php?context=actions&amp;icon=document-save&amp;size=16',
         'title' => _('Download'),
         'alt'   => _('Download'),
         'class' => 'center'
-      )
+      ]
     ).$img;
     $nbicons++;
 
-    return array ($img, $nbicons);
+    return  [$img, $nbicons];
   }
 
-  protected function handlePostValueActions($id, $postValue)
+  protected function handlePostValueActions ($id, $postValue)
   {
     if (parent::handlePostValueActions($id, $postValue)) {
       return TRUE;
@@ -72,9 +72,9 @@ class CertificateFileAttribute extends FileAttribute
     }
     $infos = openssl_x509_parse($value, TRUE);
     if (empty($infos)) {
-      return array(_('Unknown format'), $this->displayValue($this->getValue()), '');
+      return [_('Unknown format'), $this->displayValue($this->getValue()), ''];
     }
-    $values = array('','','');
+    $values = ['','',''];
     if (isset($infos['subject']['CN'])) {
       $values[0] = $infos['subject']['CN'];
     }
@@ -109,28 +109,28 @@ class CertificateFileAttribute extends FileAttribute
 class userCertificates extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('strongAuthenticationUser');
+  var $objectclasses = ['strongAuthenticationUser'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Certificates'),
       'plDescription'   => _('User certificates'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=types&icon=certificate&size=48',
       'plSmallIcon'     => 'geticon.php?context=types&icon=certificate&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Certificates'),
-        'attrs' => array(
+        'attrs' => [
           new CertificateOrderedArrayAttribute(
             new CertificateFileAttribute (
               '', _('Certificate content'),
@@ -138,9 +138,9 @@ class userCertificates extends simplePlugin
             ),
             FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/community/admin/departments/community/class_communityOrganization.inc b/community/admin/departments/community/class_communityOrganization.inc
index cec0a52aee..877c4c9b22 100644
--- a/community/admin/departments/community/class_communityOrganization.inc
+++ b/community/admin/departments/community/class_communityOrganization.inc
@@ -20,31 +20,31 @@
 
 class communityOrganization extends simplePlugin
 {
-  var $objectclasses  = array('fdCommunityOrganization');
+  var $objectclasses  = ['fdCommunityOrganization'];
   var $displayHeader  = TRUE;
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Community organization'),
       'plDescription'   => _('Community organization dates and alternate address'),
-      'plObjectType'    => array('organization'),
+      'plObjectType'    => ['organization'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     global $config;
-    return array(
-      'membership' => array(
+    return [
+      'membership' => [
         'name'  => _('Membership'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Membership type'), _('Membership type of this organization'),
             'fdCommunityMembershipType', FALSE,
-            $config->get_cfg_value('communityMembershipTypeChoices', array())
+            $config->get_cfg_value('communityMembershipTypeChoices', [])
           ),
           new BooleanAttribute (
             _('Agreement signed'), _('Did this member returned the agreement signed'),
@@ -58,11 +58,11 @@ class communityOrganization extends simplePlugin
             _('Hidden'), _('Should this membership be hidden from listings'),
             'fdCommunityMembershipHidden', FALSE
           )
-        )
-      ),
-      'dates' => array(
+        ]
+      ],
+      'dates' => [
         'name'  => _('Dates'),
-        'attrs' => array(
+        'attrs' => [
           new GeneralizedTimeDateAttribute (
             _('Start date'), _('Date of the beginning'),
             'fdCommunityStartDate', TRUE
@@ -72,11 +72,11 @@ class communityOrganization extends simplePlugin
             'fdCommunityEndDate', FALSE,
             ''
           ),
-        )
-      ),
-      'address' => array (
+        ]
+      ],
+      'address' => [
         'name'  => _('Contact'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute(
             _('First name'), _('First name'),
             'fdOrganizationAlternateFirstName', FALSE
@@ -101,9 +101,9 @@ class communityOrganization extends simplePlugin
             _('Country'), _('Country'),
             'fdOrganizationAlternateCountry', FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/community/admin/departments/community/class_communityProject.inc b/community/admin/departments/community/class_communityProject.inc
index c4f5472427..6c0871e6c5 100644
--- a/community/admin/departments/community/class_communityProject.inc
+++ b/community/admin/departments/community/class_communityProject.inc
@@ -20,27 +20,27 @@
 
 class communityProject extends communityOrganization
 {
-  var $objectclasses  = array('fdCommunityProject');
+  var $objectclasses  = ['fdCommunityProject'];
   var $displayHeader  = TRUE;
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Community project'),
       'plDescription'   => _('Community project dates and alternate address'),
-      'plObjectType'    => array('department'),
+      'plObjectType'    => ['department'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $infos = array_merge(
-      array(
-        'project' => array(
+      [
+        'project' => [
           'name'  => _('Project'),
-          'attrs' => array(
+          'attrs' => [
             new StringAttribute (
               _('Project full name'), _('Full name of this project'),
               'fdProjectFullName', FALSE
@@ -49,9 +49,9 @@ class communityProject extends communityOrganization
               _('Project key'), _('ID used for this project in other softwares or databases'),
               'fdProjectKey', FALSE
             ),
-          )
-        )
-      ),
+          ]
+        ]
+      ],
       parent::getAttributesInfo()
     );
     unset($infos['membership']);
diff --git a/community/config/community/class_communityConfig.inc b/community/config/community/class_communityConfig.inc
index d25b5f97c9..576906a1e2 100644
--- a/community/config/community/class_communityConfig.inc
+++ b/community/config/community/class_communityConfig.inc
@@ -20,36 +20,36 @@
 
 class communityConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdCommunityPluginConf');
+  var $objectclasses  = ['fdCommunityPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Community configuration'),
       'plDescription'   => _('FusionDirectory community plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Community'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new StringAttribute (
               _('Membership type choices'), _('Community membership types available in the user community tab'),
               'fdCommunityMembershipTypeChoices', FALSE
             ),
-            array()
+            []
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc b/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
index e65701a8cc..2169e52bae 100644
--- a/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
+++ b/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
@@ -21,18 +21,18 @@
 
 class serviceCyrus extends simpleMailMethodService
 {
-  var $objectclasses = array('fdCyrusServer');
+  var $objectclasses = ['fdCyrusServer'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Cyrus (IMAP/POP3)'),
       'plDescription'   => _('Cyrus (IMAP/POP3)').' ('._('Services').')',
       'plIcon'          => 'geticon.php?context=applications&icon=cyrus&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -40,14 +40,14 @@ class serviceCyrus extends simpleMailMethodService
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'cyrus' => array (
+    return  [
+      'cyrus' => [
         'name'  => _('Cyrus settings'),
-        'attrs' => array (
+        'attrs' => [
           new CompositeAttribute (
             _('Connect URL for Cyrus server'),
             'fdCyrusConnect',
-            array(
+            [
               new StringAttribute(
                 _('Hostname'), _('Hostname of the Cyrus server'),
                 'cyrusConnectURL', TRUE
@@ -60,15 +60,15 @@ class serviceCyrus extends simpleMailMethodService
               new SelectAttribute(
                 _('Option'), _('Options for contacting Cyrus server'),
                 'cyrusConnectOptions1', TRUE,
-                array('notls', 'tls', 'ssl'), 'notls'
+                ['notls', 'tls', 'ssl'], 'notls'
               ),
               new SelectAttribute(
                 _('Valide certificats'), _('Weither or not to validate server certificate on connexion'),
                 'cyrusConnectOptions2', FALSE,
-                array('', '/validate-cert', '/novalidate-cert'), '',
-                array('', 'validate',       'no-validate')
+                ['', '/validate-cert', '/novalidate-cert'], '',
+                ['', 'validate',       'no-validate']
               )
-            ),
+            ],
             '/^{(.*):(\\d+)\\/([^\\/]+)(.*)}$/',
             '{%s:%d/%s%s}'
           ),
@@ -80,15 +80,15 @@ class serviceCyrus extends simpleMailMethodService
             _('Password'), _('Admin user password'),
             'fdCyrusPassword', TRUE
           ),
-        )
-      ),
-      'sieve' => array (
+        ]
+      ],
+      'sieve' => [
         'name'  => _('Sieve settings'),
-        'attrs' => array (
+        'attrs' => [
           new CompositeAttribute (
             _('Sieve connect URL for Cyrus server'),
             'fdCyrusSieveServer',
-            array(
+            [
               new StringAttribute(
                 _('Hostname'), _('Hostname of the Cyrus sieve server'),
                 'cyrusSieveConnectURL', TRUE
@@ -101,15 +101,15 @@ class serviceCyrus extends simpleMailMethodService
               new SelectAttribute(
                 _('Option'), _('Options for contacting Cyrus sieve server'),
                 'cyrusSieveConnectOptions', TRUE,
-                array('notls', 'tls', 'ssl'), 'notls'
+                ['notls', 'tls', 'ssl'], 'notls'
               ),
-            ),
+            ],
             '/^{(.*):(\\d+)\\/([^\\/]+)}$/',
             '{%s:%d/%s}'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
index bd68e7bc30..ce39a8180a 100644
--- a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
+++ b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
@@ -21,7 +21,7 @@
 
 class mailMethodCyrus extends mailMethod
 {
-  protected $ServerList   = array();
+  protected $ServerList   = [];
   protected $imap_handle  = NULL;
   protected $quota_loaded = FALSE;
 
@@ -35,13 +35,13 @@ class mailMethodCyrus extends mailMethod
   protected $enableVacationRange    = FALSE;
   protected $enableFolderTypes      = FALSE;
 
-  protected function init()
+  protected function init ()
   {
     parent::init();
     $this->ServerList = parent::getMailServers();
   }
 
-  public function connect()
+  public function connect ()
   {
     global $config;
     parent::connect();
@@ -85,7 +85,7 @@ class mailMethodCyrus extends mailMethod
     if ($this->imap_handle === FALSE) {
       $this->error = imap_last_error();
 
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
 
       $this->connected = FALSE;
@@ -98,11 +98,11 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  public function account_exists()
+  public function account_exists ()
   {
     if (!$this->is_connected() || !$this->imap_handle) {
       trigger_error("Method not connected, catch error.");
-      return array();
+      return [];
     }
 
     /* Get server config */
@@ -117,7 +117,7 @@ class mailMethodCyrus extends mailMethod
     return $res;
   }
 
-  public function disconnect()
+  public function disconnect ()
   {
     parent::disconnect();
     if ($this->is_connected()) {
@@ -125,13 +125,13 @@ class mailMethodCyrus extends mailMethod
     }
   }
 
-  public function is_connected()
+  public function is_connected ()
   {
     $ret = parent::is_connected();
     return ($ret && $this->imap_handle);
   }
 
-  protected function loadQuota()
+  protected function loadQuota ()
   {
     if (!$this->quotaEnabled()) {
       return TRUE;
@@ -144,7 +144,7 @@ class mailMethodCyrus extends mailMethod
     $this->reset_error();
 
     /* Load quota settings */
-    $result = array("quotaUsage" => "","gosaMailQuota" => "");
+    $result = ["quotaUsage" => "","gosaMailQuota" => ""];
     $quota_value = @imap_get_quota($this->imap_handle, $this->account_id);
 
     /* Reset error queue, imap_qet_quota() will fail if the quota wasn't set yet.
@@ -187,12 +187,12 @@ class mailMethodCyrus extends mailMethod
       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
           "<b>IMAP: Successfully received account quota</b>");
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
 
-  public function getQuota($quota)
+  public function getQuota ($quota)
   {
     parent::getQuota($quota);
     if (!$this->quota_loaded) {
@@ -202,7 +202,7 @@ class mailMethodCyrus extends mailMethod
     return $this->quotaValue;
   }
 
-  public function getQuotaUsage()
+  public function getQuotaUsage ()
   {
     parent::getQuotaUsage();
     if (!$this->quota_loaded) {
@@ -212,7 +212,7 @@ class mailMethodCyrus extends mailMethod
     return $this->quotaUsage;
   }
 
-  public function setQuota($number)
+  public function setQuota ($number)
   {
     parent::setQuota($number);
 
@@ -249,7 +249,7 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  public function updateMailbox()
+  public function updateMailbox ()
   {
     global $config;
     parent::updateMailbox();
@@ -291,7 +291,7 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  public function deleteMailbox()
+  public function deleteMailbox ()
   {
     global $config;
     parent::deleteMailbox();
@@ -319,14 +319,14 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  public function getMailboxList()
+  public function getMailboxList ()
   {
     if (!$this->is_connected() || !$this->imap_handle) {
       trigger_error("Method not connected, catch error.");
-      return array();
+      return [];
     }
 
-    $result = array();
+    $result = [];
 
     /* Get server config */
     $cfg = $this->ServerList[$this->parent->gosaMailServer];
@@ -375,14 +375,14 @@ class mailMethodCyrus extends mailMethod
           mb_convert_encoding($str, "UTF-8", "UTF7-IMAP"));
         $result[] = $str;
       }
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim(implode($result, ", "), ", "),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim (implode ($result, ", "), ", "),
           "<b>IMAP: Received mailbox folders.</b>");
       $this->error = imap_last_error();
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
           "<b>IMAP: Cannot receive mailbox folders.</b>");
       $this->error = imap_last_error();
-      return array();
+      return [];
     }
 
     /* Append "INBOX" to the folder array if result is empty and request comes from user dialog */
@@ -395,12 +395,12 @@ class mailMethodCyrus extends mailMethod
 
   /*! \brief  Returns configured acls
    */
-  public function getFolderACLs($folder_acls)
+  public function getFolderACLs ($folder_acls)
   {
     $this->reset_error();
 
     /* imap_getacl available? */
-    if (!function_exists('imap_getacl')) {
+    if (!function_exists ('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
@@ -433,12 +433,12 @@ class mailMethodCyrus extends mailMethod
 
   /*! \brief  Write ACLs back to imap or what ever
    */
-  public function setFolderACLs($permissions)
+  public function setFolderACLs ($permissions)
   {
     $this->reset_error();
 
     /* imap_getacl available? */
-    if (!function_exists('imap_getacl')) {
+    if (!function_exists ('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
       @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
@@ -476,7 +476,7 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  public function saveSieveSettings()
+  public function saveSieveSettings ()
   {
     parent::saveSieveSettings();
 
@@ -576,7 +576,7 @@ class mailMethodCyrus extends mailMethod
     /* Upload script and make it the default one */
     if (!$sieve->sieve_sendscript("fusiondirectory", $script)) {
       $this->error = sprintf(_("Cannot store SIEVE script: %s"), to_string($sieve->error_raw));
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string ($sieve->error_raw),
         "<b>SIEVE: Writing new Sieve script failed!</b>");
       return FALSE;
     }
@@ -590,15 +590,15 @@ class mailMethodCyrus extends mailMethod
     return TRUE;
   }
 
-  static public function get_server_list()
+  static public function get_server_list ()
   {
     global $config;
-    $serverList = array();
+    $serverList = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search ('(objectClass=fdCyrusServer)',
-                  array('cn', 'fdCyrusConnect', 'fdCyrusAdmin', 'fdCyrusPassword', 'fdCyrusSieveServer'));
+                  ['cn', 'fdCyrusConnect', 'fdCyrusAdmin', 'fdCyrusPassword', 'fdCyrusSieveServer']);
     while ($attrs = $ldap->fetch()) {
 
       /* Check if the given fdCyrusSieveServer is in the new style "{cn:port/option}"
@@ -612,7 +612,7 @@ class mailMethodCyrus extends mailMethod
         $sieve_port   = "";
       }
 
-      $serverList[$attrs['cn'][0]] = array(
+      $serverList[$attrs['cn'][0]] = [
         "server_dn"     => $attrs['dn'],
         "connect"       => $attrs['fdCyrusConnect'][0],
         "admin"         => $attrs['fdCyrusAdmin'][0],
@@ -620,7 +620,7 @@ class mailMethodCyrus extends mailMethod
         "sieve_server"  => $sieve_server,
         "sieve_option"  => $sieve_option,
         "sieve_port"    => $sieve_port
-      );
+      ];
     }
 
     return $serverList;
diff --git a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
index 7bec45b6f6..b113b40c04 100644
--- a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
+++ b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
@@ -22,7 +22,7 @@ class DebconfEntriesAttribute extends CompositeAttribute
 {
   function __construct ($description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, array(), "", "", $acl);
+    parent::__construct ($description, $ldapName, [], "", "", $acl);
     $this->setInLdap(FALSE);
   }
 
@@ -37,7 +37,7 @@ class DebconfEntriesAttribute extends CompositeAttribute
   function loadEntries ()
   {
     global $config;
-    $this->attributes = array();
+    $this->attributes = [];
 
     /* Load template */
     $ldap = $config->get_ldap_link();
@@ -74,21 +74,21 @@ class DebconfEntriesAttribute extends CompositeAttribute
     }
   }
 
-  function saveInLdap()
+  function saveInLdap ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     foreach ($this->attributes as $cn => $attribute) {
       $dn = "cn=$cn,ou=questions,".$this->plugin->dn;
-      $ldap->cat($dn, array("objectClass"));
+      $ldap->cat($dn, ["objectClass"]);
       if ($ldap->count() != 1) {
         msg_dialog::display(_("Error"),
           sprintf(_("Can't find entry %s in LDAP for profile %s"), $cn, $this->plugin->dn),
           ERROR_DIALOG);
       } else {
-        $attrs = array(
-          'value' => array($attribute->getValue()),
-        );
+        $attrs = [
+          'value' => [$attribute->getValue()],
+        ];
         $ldap->cd($dn);
         $ldap->modify($attrs);
       }
@@ -108,10 +108,10 @@ class DebconfImportAttribute extends FileAttribute
    *
    *  \param filehandle $handle The handle on the opened uploaded file
    */
-  function readFile($handle)
+  function readFile ($handle)
   {
     global $config;
-    $matches = array();
+    $matches = [];
     $str = fread($handle, 1024);
     // removing breaklines
     $tmp = str_replace ("\n", "", $str);
@@ -145,7 +145,7 @@ class DebconfImportAttribute extends FileAttribute
     }
   }
 
-  function renderFormInput()
+  function renderFormInput ()
   {
     global $config;
     return sprintf(_("In order to import a debconf file, please run the following command : <br/>".
@@ -159,43 +159,43 @@ class debconfProfileGeneric extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses   = array("top","organizationalUnit");
+  var $objectclasses   = ["top","organizationalUnit"];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Debconf profile'),
       'plDescription' => _('Debconf profile information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('debconfProfile' => array(
+      'plObjectType'  => ['debconfProfile' => [
         'name'      => _('Debconf profile'),
         'filter'    => '(&(objectClass=organizationalUnit)(!(objectClass=gosaDepartment)))',
         'ou'        => get_ou('debconfRDN'),
         'icon'      => 'geticon.php?context=applications&icon=debconf&size=16',
         'mainAttr'  => 'ou',
-      )),
+      ]],
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _("Name"),
-        'attrs' => array(
+        'attrs' => [
           new DebconfImportAttribute ("", _("Import a debconf file"), "import"),
           new StringAttribute (_("Name"), _("Name of this debconf template"), "ou", TRUE),
-        )
-      ),
-      'entries' => array(
+        ]
+      ],
+      'entries' => [
         'name'  => _("Entries"),
-        'attrs' => array(
+        'attrs' => [
           new DebconfEntriesAttribute (_("Debconf template answers"), "debconfEntries"),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -214,7 +214,7 @@ class debconfProfileGeneric extends simplePlugin
     }
   }
 
-  function ldap_save()
+  function ldap_save ()
   {
     $errors = parent::ldap_save();
     if (!empty($errors)) {
diff --git a/debconf/admin/debconfProfile/class_debconfProfileManagement.inc b/debconf/admin/debconfProfile/class_debconfProfileManagement.inc
index 349fbe50f2..7c66c3b5cb 100644
--- a/debconf/admin/debconfProfile/class_debconfProfileManagement.inc
+++ b/debconf/admin/debconfProfile/class_debconfProfileManagement.inc
@@ -20,27 +20,27 @@
 
 class debconfProfileManagement extends simpleManagement
 {
-  protected $objectTypes  = array('debconfProfile');
+  protected $objectTypes  = ['debconfProfile'];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = FALSE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Debconf'),
       'plDescription' => _('Debconf profile management'),
       'plIcon'        => 'geticon.php?context=applications&icon=debconf&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 21,
-      'plManages'     => array('debconfProfile'),
+      'plManages'     => ['debconfProfile'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
-  function __construct()
+  function __construct ()
   {
     $this->filterXMLPath  = get_template_path('debconfProfile-filter.xml', TRUE, dirname(__FILE__));
     parent::__construct();
diff --git a/debconf/admin/systems/debconf/class_debconfStartup.inc b/debconf/admin/systems/debconf/class_debconfStartup.inc
index a641e0e755..cd86f751d3 100644
--- a/debconf/admin/systems/debconf/class_debconfStartup.inc
+++ b/debconf/admin/systems/debconf/class_debconfStartup.inc
@@ -23,28 +23,28 @@ class debconfStartup extends simplePlugin
 {
   var $displayHeader = TRUE;
 
-  var $objectclasses = array('debconfStartup');
+  var $objectclasses = ['debconfStartup'];
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Debconf'),
       'plDescription'   => _('Debconf preseed startup'),
       'plPriority'      => 9,
-      'plObjectType'    => array('workstation', 'server', 'ogroup-dynamic'),
+      'plObjectType'    => ['workstation', 'server', 'ogroup-dynamic'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Debconf settings'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Profile'), _('Debconf preseed profile to be used for installation'),
             'debconfProfile', TRUE
@@ -52,11 +52,11 @@ class debconfStartup extends simplePlugin
           new SelectAttribute (
             _('Release'), _('Debian release to install'),
             'debconfDebianRelease', TRUE,
-            array('squeeze', 'unstable', 'wheezy')
+            ['squeeze', 'unstable', 'wheezy']
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -69,10 +69,10 @@ class debconfStartup extends simplePlugin
     $ldap->cd(get_ou('debconfRDN').$config->current['BASE']);
     $ldap->search(
       'objectClass=organizationalUnit',
-      array('ou'),
+      ['ou'],
       'one'
     );
-    $profiles = array();
+    $profiles = [];
     while ($attrs = $ldap->fetch()) {
       $profiles[] = $attrs['ou'][0];
     }
diff --git a/developers/addons/debugHelp/class_debugHelp.inc b/developers/addons/debugHelp/class_debugHelp.inc
index aa9dcebee9..cbef31737a 100644
--- a/developers/addons/debugHelp/class_debugHelp.inc
+++ b/developers/addons/debugHelp/class_debugHelp.inc
@@ -20,46 +20,46 @@
 
 class debugHelp extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Debug help'),
       'plDescription' => _('Debug help tools'),
       'plSection'     => 'reporting',
       'plPriority'    => 1,
       'plIcon'        => 'geticon.php?context=categories&icon=applications-development&size=48',
-      'plObjectType'  => array('debug' => array(
+      'plObjectType'  => ['debug' => [
         'name'      => _('Debug help'),
         'mainAttr'  => FALSE
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'diagram' => array(
+    return [
+      'diagram' => [
         'name'      => _('Diagrams'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new ButtonAttribute(
             _('Object types diagram'), '',
             'links',
             _('Get'), 'buildDiagram'
           )
-        )
-      ),
-      'objectTypes' => array(
+        ]
+      ],
+      'objectTypes' => [
         'name'      => _('Object Types'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new FakeAttribute('dump')
-        ),
+        ],
         'template'  => get_template_path('debughelp.tpl', TRUE, dirname(__FILE__))
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -69,26 +69,26 @@ class debugHelp extends simplePlugin
     $this->buildObjectTypesDump();
   }
 
-  function buildObjectTypesDump()
+  function buildObjectTypesDump ()
   {
     global $config;
-    $dump = array();
+    $dump = [];
     foreach ($config->data['OBJECTS'] as $type => $infos) {
       if (isset($infos['icon'])) {
         $img = $infos['icon'];
       } else {
         $img = 'images/empty.png';
       }
-      $node = array(
+      $node = [
         'img'       => $img,
         'name'      => $infos['name'],
-        'attrs'     => array(),
-        'subnodes'  => array()
-      );
-      foreach (array('aclCategory', 'mainAttr', 'ou', 'filter', 'tabClass', 'tabGroup', 'mainTab', 'management') as $key) {
+        'attrs'     => [],
+        'subnodes'  => []
+      ];
+      foreach (['aclCategory', 'mainAttr', 'ou', 'filter', 'tabClass', 'tabGroup', 'mainTab', 'management'] as $key) {
         if (isset($infos[$key])) {
           if ($infos[$key] != '') {
-            $node['attrs'][$key] = array($infos[$key]);
+            $node['attrs'][$key] = [$infos[$key]];
           } else {
             $node['attrs'][$key] = '&nbsp;';
           }
@@ -105,7 +105,7 @@ class debugHelp extends simplePlugin
     $this->dump = $dump;
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $smarty->assign('usePrototype', 'true');
diff --git a/dhcp/admin/dhcp/class_dhcpConfiguration.inc b/dhcp/admin/dhcp/class_dhcpConfiguration.inc
index 34cb647ae7..24efd6a339 100644
--- a/dhcp/admin/dhcp/class_dhcpConfiguration.inc
+++ b/dhcp/admin/dhcp/class_dhcpConfiguration.inc
@@ -24,34 +24,34 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   protected $dialogClass = 'DhcpSectionCreationDialog';
 
   protected $subnet_expanded = FALSE;
-  protected $dhcpObjectCache = array();
+  protected $dhcpObjectCache = [];
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
     $id = $this->getHtmlId();
     $subnetExpandImg = $this->renderInputField(
       'image', $id.'_expandDHCP_'.$key,
-      array(
+      [
         'src'   => 'images/lists/expand.png',
         'title' => _('Expand DHCP subnet'),
         'alt'   => _('Expand'),
         'class' => 'center',
         'style' => 'padding:5px 6px 4px;'
-      )
+      ]
     );
     $subnetExpandedImg = $this->renderInputField(
       'image', $id.'_foldDHCP_'.$key,
-      array(
+      [
         'src'   => 'images/down-arrow.png',
         'title' => _('Fold DHCP subnet'),
         'alt'   => _('Fold'),
         'class' => 'center',
         'style' => 'padding:6px 5px 6px 4px;'
-      )
+      ]
     );
     $dn = $value[0];
     if (empty($this->dhcpObjectCache[$dn])) {
-      return array('not in cache',$dn,'');
+      return ['not in cache',$dn,''];
     }
 
     $link = $value[1];
@@ -65,11 +65,11 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
         } else {
           $link = $subnetExpandImg.$link;
         }
-        return array(
-          array('html' => $link),
+        return [
+          ['html' => $link],
           '',
           '',
-        );
+        ];
       } else {
         if ($objtype == 'dhcpSubnet') {
           if ($dn === $this->subnet_expanded) {
@@ -78,22 +78,22 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
             $link = '&nbsp;&nbsp;'.$subnetExpandImg.$link;
           }
         }
-        return array(
-          array('html' => $link),
-          array('html' => $dhcpObject->getOption('routers')),
+        return [
+          ['html' => $link],
+          ['html' => $dhcpObject->getOption('routers')],
           ''
-        );
+        ];
       }
     } else {
-      return array(
-        array('html' => $link),
-        array('html' => $dhcpObject->getStatement('fixed-address')),
-        array('html' => preg_replace('/^[^ ]+ /', '', isset($dhcpObject->dhcpHWAddress) ? $dhcpObject->dhcpHWAddress : '')),
-      );
+      return [
+        ['html' => $link],
+        ['html' => $dhcpObject->getStatement('fixed-address')],
+        ['html' => preg_replace('/^[^ ]+ /', '', isset($dhcpObject->dhcpHWAddress) ? $dhcpObject->dhcpHWAddress : '')],
+      ];
     }
   }
 
-  protected function genRowIcons($key, $value)
+  protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
     list ($img, $nbicons) = parent::genRowIcons($key, $value);
@@ -105,19 +105,19 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
 
     $img = $this->renderInputField(
       'image', $id.'_insertDHCP_'.$key,
-      array(
+      [
         'src'   => 'geticon.php?context=actions&amp;icon=document-new&amp;size=16',
         'title' => _('Insert new DHCP section'),
         'alt'   => _('Insert new DHCP section'),
         'class' => 'center',
-      )
+      ]
     ).$img;
     $nbicons++;
 
-    return array ($img, $nbicons);
+    return  [$img, $nbicons];
   }
 
-  protected function handlePostValueActions($id, $postValue)
+  protected function handlePostValueActions ($id, $postValue)
   {
     if (parent::handlePostValueActions($id, $postValue)) {
       return TRUE;
@@ -150,28 +150,28 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     return FALSE;
   }
 
-  protected function handleEdit($key)
+  protected function handleEdit ($key)
   {
     $dn           = $this->value[$key][0];
     $editingValue = $this->dhcpObjectCache[$dn];
     $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, $this->objectType($dn), $dn, $editingValue));
   }
 
-  function delPostValue($key)
+  function delPostValue ($key)
   {
     $dn = $this->postValue[$key][0];
-    $this->dhcpObjectCache[$dn] = array();
+    $this->dhcpObjectCache[$dn] = [];
     foreach ($this->postValue as $i => $value) {
       if (preg_match('/'.preg_quote($dn, '/').'$/', $value[0])) {
         unset($this->postValue[$i]);
-        $this->dhcpObjectCache[$value[0]] = array();
+        $this->dhcpObjectCache[$value[0]] = [];
       }
     }
     parent::delPostValue($key);
   }
 
   /* Should be addValue but we need more attributes */
-  function editEnded($dn, $object, $olddn = FALSE)
+  function editEnded ($dn, $object, $olddn = FALSE)
   {
     $this->dhcpObjectCache[$dn] = $object;
     if (($olddn !== FALSE) && ($olddn !== $dn)) {
@@ -181,38 +181,38 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
           $new_dn = preg_replace("/,$olddn$/", ','.$dn, $key);
           $dsc['MODIFIED'] = TRUE;
           $this->dhcpObjectCache[$new_dn] = $dsc;
-          $this->dhcpObjectCache[$key]    = array();
+          $this->dhcpObjectCache[$key]    = [];
         }
       }
-      $this->dhcpObjectCache[$olddn]    = array();
+      $this->dhcpObjectCache[$olddn]    = [];
     }
     $this->reload(FALSE);
   }
 
   /* Used by dhcpHost */
-  function addHost($parentDn, $cn, $mac, $ip)
+  function addHost ($parentDn, $cn, $mac, $ip)
   {
     $dn = 'cn='.$cn.','.$parentDn;
-    $this->dhcpObjectCache[$dn] = array(
+    $this->dhcpObjectCache[$dn] = [
       'dn'              => $dn,
-      'objectClass'     => array('dhcpHost'),
-      'cn'              => array($cn),
-      'dhcpHWAddress'   => array('ethernet '.$mac),
-      'dhcpStatements'  => array(
+      'objectClass'     => ['dhcpHost'],
+      'cn'              => [$cn],
+      'dhcpHWAddress'   => ['ethernet '.$mac],
+      'dhcpStatements'  => [
         'fixed-address '.$ip
-      ),
-      'dhcpOption'      => array(),
-      'dhcpComments'    => array(),
+      ],
+      'dhcpOption'      => [],
+      'dhcpComments'    => [],
       'MODIFIED'        => TRUE,
-    );
+    ];
     $this->reload(FALSE);
   }
 
   /* Used by dhcpHost */
-  function delHost($dn)
+  function delHost ($dn)
   {
     if (($dn != '') && ($dn != 'new')) {
-      $this->dhcpObjectCache[$dn] = array();
+      $this->dhcpObjectCache[$dn] = [];
     }
   }
 
@@ -252,10 +252,10 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   }
 
   /* Subfonction of reload function */
-  protected function reload_readItemFromLDAP(&$ldap, $attrs, &$final, $erase)
+  protected function reload_readItemFromLDAP (&$ldap, $attrs, &$final, $erase)
   {
     global $config;
-    $sattrs = array();
+    $sattrs = [];
     $dn     = $attrs['dn'];
 
     if (isset($this->dhcpObjectCache[$dn]) && !$erase) {
@@ -285,7 +285,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     if ($dn === $this->subnet_expanded) {
       $ldap_subnet = $config->get_ldap_link();
       $ldap_subnet->cd($dn);
-      $ldap_subnet->search('(objectClass=dhcpHost)', array('*'), 'one');
+      $ldap_subnet->search('(objectClass=dhcpHost)', ['*'], 'one');
       while ($host_attrs = $ldap_subnet->fetch()) {
         $this->reload_readItemFromLDAP($ldap_subnet, $host_attrs, $final, $erase);
       }
@@ -293,7 +293,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   }
 
   /* Subfonction of reload function */
-  protected function reload_refreshListFromCache(&$final)
+  protected function reload_refreshListFromCache (&$final)
   {
     $firstdn = NULL;
     foreach ($this->dhcpObjectCache as $dn => $sattrs) {
@@ -345,15 +345,15 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function reload($erase = TRUE)
+  function reload ($erase = TRUE)
   {
     global $config;
     @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $erase, 'reload');
     /* Init LDAP and load list */
     $ldap = $config->get_ldap_link();
 
-    $final  = array();
-    $ldap->cat($this->plugin->dn, array('cn'), '(objectClass=dhcpService)');
+    $final  = [];
+    $ldap->cat($this->plugin->dn, ['cn'], '(objectClass=dhcpService)');
 
     if ($value = $ldap->fetch()) {
       /* Set header */
@@ -367,7 +367,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
 
       /* Read all sub entries to place here */
       $ldap->cd($value['dn']);
-      $ldap->search('(|(objectClass=dhcpService)(objectClass=dhcpClass)(objectClass=dhcpSubClass)(objectClass=dhcpGroup)(objectClass=dhcpPool)(objectClass=dhcpSubnet)(objectClass=dhcpSharedNetwork)(objectClass=dhcpTSigKey)(objectClass=dhcpDnsZone)(objectClass=dhcpFailOverPeer))', array());
+      $ldap->search('(|(objectClass=dhcpService)(objectClass=dhcpClass)(objectClass=dhcpSubClass)(objectClass=dhcpGroup)(objectClass=dhcpPool)(objectClass=dhcpSubnet)(objectClass=dhcpSharedNetwork)(objectClass=dhcpTSigKey)(objectClass=dhcpDnsZone)(objectClass=dhcpFailOverPeer))', []);
 
       while ($attrs = $ldap->fetch()) {
         $this->reload_readItemFromLDAP($ldap, $attrs, $final, $erase);
@@ -377,9 +377,9 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
 
     /* Sort it... */
     natsort($final);
-    $this->value = array();
+    $this->value = [];
     foreach ($final as $dn => $val) {
-      $this->value[] = array($dn, preg_replace('/^[^!]+!(.*)$/', '\\1', $val));
+      $this->value[] = [$dn, preg_replace('/^[^!]+!(.*)$/', '\\1', $val)];
     }
 
     if (empty($final)) {
@@ -387,26 +387,26 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function add_global_node()
+  function add_global_node ()
   {
-    $attrs = array(
+    $attrs = [
       'dn'              => $this->plugin->dn,
-      'cn'              => array($this->plugin->cn),
-      'objectClass'     => array('top', 'dhcpService'),
-      'dhcpStatements'  => array(
+      'cn'              => [$this->plugin->cn],
+      'objectClass'     => ['top', 'dhcpService'],
+      'dhcpStatements'  => [
         'default-lease-time 600',
         'max-lease-time 7200',
         'authoritative',
         'ddns-update-style none'
-      ),
+      ],
       'MODIFIED' => TRUE,
-    );
+    ];
 
-    $this->value[] = array($this->plugin->dn, _('Global options'));
+    $this->value[] = [$this->plugin->dn, _('Global options')];
     $this->dhcpObjectCache[$this->plugin->dn]  = $attrs;
   }
 
-  function objectType($dn)
+  function objectType ($dn)
   {
     $types = array_keys($this->plugin->types);
 
@@ -422,7 +422,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     return '';
   }
 
-  function getCache()
+  function getCache ()
   {
     return $this->dhcpObjectCache;
   }
@@ -432,14 +432,14 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     return '';
   }
 
-  public function htmlIds()
+  public function htmlIds ()
   {
     $ids = parent::htmlIds();
     unset($ids[0]);
     return $ids;
   }
 
-  function foreignKeyUpdate($oldvalue, $newvalue, $source)
+  function foreignKeyUpdate ($oldvalue, $newvalue, $source)
   {
     if (($source['CLASS'] == 'serverGeneric') && ($source['FIELD'] == 'dn') && ($source['MODE'] == 'move')) {
       $globalNode = $this->value[0][0];
@@ -447,7 +447,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
         if ($newvalue === NULL) {
           unset($this->dhcpObjectCache[$globalNode]['dhcpPrimaryDN']);
         } else {
-          $this->dhcpObjectCache[$globalNode]['dhcpPrimaryDN'] = array($newvalue);
+          $this->dhcpObjectCache[$globalNode]['dhcpPrimaryDN'] = [$newvalue];
         }
         $this->dhcpObjectCache[$globalNode]['MODIFIED'] = TRUE;
       }
@@ -455,7 +455,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
         if ($newvalue === NULL) {
           unset($this->dhcpObjectCache[$globalNode]['dhcpSecondaryDN']);
         } else {
-          $this->dhcpObjectCache[$globalNode]['dhcpSecondaryDN'] = array($newvalue);
+          $this->dhcpObjectCache[$globalNode]['dhcpSecondaryDN'] = [$newvalue];
         }
         $this->dhcpObjectCache[$globalNode]['MODIFIED'] = TRUE;
       }
@@ -464,7 +464,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function foreignKeyCheck($value, $source)
+  function foreignKeyCheck ($value, $source)
   {
     if (($source['CLASS'] == 'serverGeneric') && ($source['FIELD'] == 'dn')) {
       $globalNode = $this->value[0][0];
@@ -480,7 +480,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function isIpInParentSubnet($dn, $ip)
+  function isIpInParentSubnet ($dn, $ip)
   {
     $parts = explode(',', $dn);
     do {
@@ -498,74 +498,74 @@ class dhcpConfiguration extends simplePlugin
 {
   public $mainTab = TRUE;
 
-  public $objectclasses = array('dhcpService');
+  public $objectclasses = ['dhcpService'];
 
-  public $types = array();
+  public $types = [];
 
-  static $sectionMap = array(
-    'dhcpService'       => array(
+  static $sectionMap = [
+    'dhcpService'       => [
       'dhcpSharedNetwork','dhcpSubnet','dhcpGroup',
       'dhcpHost','dhcpClass','dhcpTSigKey','dhcpDnsZone','dhcpFailOverPeer'
-    ),
-    'dhcpClass'         => array('dhcpSubClass'),
-    'dhcpSubClass'      => array(),
-    'dhcpHost'          => array(),
-    'dhcpGroup'         => array('dhcpHost'),
-    'dhcpPool'          => array(),
-    'dhcpSubnet'        => array(
+    ],
+    'dhcpClass'         => ['dhcpSubClass'],
+    'dhcpSubClass'      => [],
+    'dhcpHost'          => [],
+    'dhcpGroup'         => ['dhcpHost'],
+    'dhcpPool'          => [],
+    'dhcpSubnet'        => [
       'dhcpPool','dhcpGroup',
       'dhcpHost','dhcpClass','dhcpTSigKey','dhcpDnsZone','dhcpFailOverPeer'
-    ),
-    'dhcpSharedNetwork' => array('dhcpSubnet', 'dhcpPool','dhcpTSigKey','dhcpDnsZone','dhcpFailOverPeer'),
-    'dhcpFailOverPeer'  => array(),
-    'dhcpTSigKey'       => array(),
-    'dhcpDnsZone'       => array()
-  );
+    ],
+    'dhcpSharedNetwork' => ['dhcpSubnet', 'dhcpPool','dhcpTSigKey','dhcpDnsZone','dhcpFailOverPeer'],
+    'dhcpFailOverPeer'  => [],
+    'dhcpTSigKey'       => [],
+    'dhcpDnsZone'       => []
+  ];
 
-  static $quote_option = array('domain-name');
+  static $quote_option = ['domain-name'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DHCP configuration'),
       'plDescription' => _('DHCP configuration'),
-      'plObjectType'  => array('dhcpConfiguration' => array(
+      'plObjectType'  => ['dhcpConfiguration' => [
         'name'        => _('DHCP configuration'),
         'filter'      => '(objectClass=dhcpService)',
         'ou'          => get_ou('dhcpRDN'),
         'icon'        => 'geticon.php?context=applications&icon=dhcp&size=16'
-      )),
-      'plForeignKeys'   => array(
-        'dhcpSections' => array(
-          array('serverGeneric', 'dn', '(|(dhcpPrimaryDN=%oldvalue%)(dhcpSecondaryDN=%oldvalue%))'),
-        ),
-      ),
+      ]],
+      'plForeignKeys'   => [
+        'dhcpSections' => [
+          ['serverGeneric', 'dn', '(|(dhcpPrimaryDN=%oldvalue%)(dhcpSecondaryDN=%oldvalue%))'],
+        ],
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP Objects'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('dhcpRDN')),
           new HiddenAttribute('cn'),
           new DhcpSectionsAttribute (
             '', _('The DHCP sections handled by this server'),
             'dhcpSections', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
-    $this->types = array(
+    $this->types = [
       'dhcpLog'           => _('Logging'),
       'dhcpService'       => _('Global options'),
       'dhcpClass'         => _('Class'),
@@ -578,7 +578,7 @@ class dhcpConfiguration extends simplePlugin
       'dhcpSharedNetwork' => _('Shared network'),
       'dhcpTSigKey'       => _('DNS update key'),
       'dhcpDnsZone'       => _('DNS update zones')
-    );
+    ];
 
     parent::__construct($dn, $object, $parent, $mainTab);
 
@@ -586,24 +586,24 @@ class dhcpConfiguration extends simplePlugin
     $this->cn = $this->attributesAccess['dhcpSections']->getGlobalCn();
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->cn = $this->attributesAccess['dhcpSections']->getGlobalCn();
   }
 
-  function save()
+  function save ()
   {
     $this->cn = $this->attributesAccess['dhcpSections']->getGlobalCn();
     return parent::save();
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     return TRUE;
   }
 
-  protected function ldap_save()
+  protected function ldap_save ()
   {
     global $config;
     $this->ldap_error = 'Success';
@@ -612,7 +612,7 @@ class dhcpConfiguration extends simplePlugin
     $ldap->cd($config->current['BASE']);
     $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
     $cache  = $this->attributesAccess['dhcpSections']->getCache();
-    $errors = array();
+    $errors = [];
     $new    = ($this->orig_dn == 'new');
     foreach ($cache as $dn => $data) {
       if (($this->dn != $this->orig_dn) && !$new) {
@@ -643,13 +643,13 @@ class dhcpConfiguration extends simplePlugin
         }
 
         /* Build new entry */
-        $attrs = array();
+        $attrs = [];
         foreach ($data as $attribute => $values) {
           if ($attribute == 'MODIFIED' || $attribute == 'dn') {
             continue;
           }
 
-          if (in_array($attribute, array('dhcpServerDN','dhcpFailOverPeerDN'))) {
+          if (in_array($attribute, ['dhcpServerDN','dhcpFailOverPeerDN'])) {
             foreach ($values as $v_key => $value) {
               $values[$v_key] = preg_replace('/'.preg_quote($this->orig_dn, '/').'$/i', $this->dn, $value);
             }
@@ -671,7 +671,7 @@ class dhcpConfiguration extends simplePlugin
               $attrs[$attribute] = $values;
             }
           } elseif ($modify) {
-            $attrs[$attribute] = array();
+            $attrs[$attribute] = [];
           }
         }
 
diff --git a/dhcp/admin/dhcp/class_dhcpManagement.inc b/dhcp/admin/dhcp/class_dhcpManagement.inc
index f6d056ece8..6d2c2fa3a4 100644
--- a/dhcp/admin/dhcp/class_dhcpManagement.inc
+++ b/dhcp/admin/dhcp/class_dhcpManagement.inc
@@ -20,26 +20,26 @@
 
 class dhcpManagement extends simpleManagement
 {
-  protected $objectTypes  = array('dhcpConfiguration');
+  protected $objectTypes  = ['dhcpConfiguration'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = TRUE;
   protected $baseMode               = TRUE;
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DHCP'),
       'plDescription' => _('DHCP Management'),
       'plIcon'        => 'geticon.php?context=applications&icon=dhcp&size=48',
-      'plSection'     => array('systems' => array('name' => _('Systems'), 'priority' => 10)),
+      'plSection'     => ['systems' => ['name' => _('Systems'), 'priority' => 10]],
       'plPriority'    => 2,
-      'plManages'     => array('dhcpConfiguration'),
+      'plManages'     => ['dhcpConfiguration'],
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 }
 ?>
diff --git a/dhcp/admin/dhcp/class_dhcpPlugin.inc b/dhcp/admin/dhcp/class_dhcpPlugin.inc
index 98d898eb90..c34ad53d54 100644
--- a/dhcp/admin/dhcp/class_dhcpPlugin.inc
+++ b/dhcp/admin/dhcp/class_dhcpPlugin.inc
@@ -26,10 +26,10 @@ class dhcpPlugin extends simplePlugin
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
@@ -40,22 +40,22 @@ class dhcpPlugin extends simplePlugin
               'dhcpOption', FALSE
             ),
             // Order disabled, Default values, Edit enabled
-            FALSE, array(), TRUE
+            FALSE, [], TRUE
           ),
           new OrderedArrayAttribute (
             new StringAttribute(
               _('Statements'), _('The DHCP statements'),
               'dhcpStatements', FALSE
             ),
-            FALSE, array(), TRUE
+            FALSE, [], TRUE
           ),
           new TextAreaAttribute (
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($plugin, $dn, $attrs = NULL)
@@ -69,10 +69,10 @@ class dhcpPlugin extends simplePlugin
             $value['count'] = count($value);
           }
         } else {
-          $value = array(
+          $value = [
             $value,
             'count' => 1
-          );
+          ];
         }
       }
       unset($value);
@@ -93,7 +93,7 @@ class dhcpPlugin extends simplePlugin
     $this->set_acl_base($this->base);
   }
 
-  function execute()
+  function execute ()
   {
     return parent::execute()."\n".
     '<p class="plugbottom">'."\n".
@@ -102,24 +102,24 @@ class dhcpPlugin extends simplePlugin
     '</p>';
   }
 
-  function save()
+  function save ()
   {
     $this->dn = $this->compute_dn();
     @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->dn, 'save');
     $this->prepare_save();
-    $this->attrs['cn']          = array($this->cn);
+    $this->attrs['cn']          = [$this->cn];
     $this->attrs['objectClass'] = $this->objectclasses;
     $this->attrs['dn']          = $this->dn;
     $this->attrs['MODIFIED']    = TRUE;
     return $this->attrs;
   }
 
-  function compute_dn()
+  function compute_dn ()
   {
     return 'cn='.ldap_escape_dn($this->attributesAccess['cn']->computeLdapValue()).','.$this->base;
   }
 
-  function getOption($option)
+  function getOption ($option)
   {
     if (isset($this->dhcpOption)) {
       foreach ($this->dhcpOption as $line) {
@@ -131,7 +131,7 @@ class dhcpPlugin extends simplePlugin
     return NULL;
   }
 
-  function getStatement($statement)
+  function getStatement ($statement)
   {
     if (isset($this->dhcpStatements)) {
       foreach ($this->dhcpStatements as $line) {
diff --git a/dhcp/admin/dhcp/class_dhcpSectionCreationDialog.inc b/dhcp/admin/dhcp/class_dhcpSectionCreationDialog.inc
index 53d402f7a9..857500f7e8 100644
--- a/dhcp/admin/dhcp/class_dhcpSectionCreationDialog.inc
+++ b/dhcp/admin/dhcp/class_dhcpSectionCreationDialog.inc
@@ -29,7 +29,7 @@ class DhcpSectionCreationDialog extends GenericDialog
   protected $initialObjectValue;
   protected $selectAttribute;
 
-  function __construct($simplePlugin, &$attribute, $classtype, $parentdn, $editingValue = NULL)
+  function __construct ($simplePlugin, &$attribute, $classtype, $parentdn, $editingValue = NULL)
   {
     $this->plugin     = $simplePlugin;
     $this->attribute  = $attribute;
@@ -43,7 +43,7 @@ class DhcpSectionCreationDialog extends GenericDialog
     $this->initialObjectValue = $editingValue;
 
     $sections = dhcpConfiguration::$sectionMap[$this->classtype];
-    $t_sections = array();
+    $t_sections = [];
     foreach ($sections as $section) {
       $t_sections[$section] = $this->plugin->types[$section];
     }
@@ -88,13 +88,13 @@ class DhcpSectionCreationDialog extends GenericDialog
     $smarty->assign('section',        _('Create new DHCP section'));
     $smarty->assign('sectionId',      'dhcpCreation');
     $smarty->assign('sectionClasses', '');
-    $attributes = array();
+    $attributes = [];
     $smarty->assign($this->selectAttribute->getAcl().'ACL', 'rwcdm');
     $this->selectAttribute->renderAttribute($attributes, FALSE);
     $smarty->assign('attributes', $attributes);
-    $sections = array(
+    $sections = [
       'dhcp' => $smarty->fetch(get_template_path('simpleplugin_section.tpl'))
-    );
+    ];
     $smarty->assign('sections', $sections);
     $smarty->assign('hiddenPostedInput', get_class($this).'_posted');
     $smarty->assign('focusedField', $this->selectAttribute->getLdapName());
@@ -127,7 +127,7 @@ class DhcpSectionCreationDialog extends GenericDialog
     return FALSE;
   }
 
-  function save_dhcp()
+  function save_dhcp ()
   {
     $this->dialog->save_object();
     $messages = $this->dialog->check();
diff --git a/dhcp/admin/dhcp/sections/class_dhcpClass.inc b/dhcp/admin/dhcp/sections/class_dhcpClass.inc
index a049001f40..14dd7f93db 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpClass.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpClass.inc
@@ -20,15 +20,15 @@
 
 class dhcpClass extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpClass');
+  public $objectclasses = ['dhcpClass'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP class'),
       'plDescription'   => _('DHCP class'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc b/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
index c22a80e6ea..60902b544f 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
@@ -20,24 +20,24 @@
 
 class dhcpDnsZone extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpDnsZone');
+  public $objectclasses = ['dhcpDnsZone'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP DNS update zone'),
       'plDescription'   => _('DHCP DNS update zone'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
@@ -54,18 +54,18 @@ class dhcpDnsZone extends dhcpPlugin
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($plugin, $dn, $attrs = NULL)
   {
     global $config;
     parent::__construct($plugin, $dn, $attrs);
-    $keys = array();
+    $keys = [];
     $ldap = $config->get_ldap_link();
-    $ldap->search('(objectClass=dhcpTSigKey)', array('dn','cn'));
+    $ldap->search('(objectClass=dhcpTSigKey)', ['dn','cn']);
     while ($attrs = $ldap->fetch()) {
       $keys[$attrs['dn']] = $attrs['cn'][0];
     }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc b/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
index db07f58e05..c8395e88ca 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
@@ -20,24 +20,24 @@
 
 class dhcpFailOverPeer extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpFailOverPeer');
+  public $objectclasses = ['dhcpFailOverPeer'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP failover peer'),
       'plDescription'   => _('DHCP failover peer'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
@@ -93,8 +93,8 @@ class dhcpFailOverPeer extends dhcpPlugin
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpGroup.inc b/dhcp/admin/dhcp/sections/class_dhcpGroup.inc
index e7e2c08dcb..b2b07149dc 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpGroup.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpGroup.inc
@@ -20,15 +20,15 @@
 
 class dhcpGroup extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpGroup');
+  public $objectclasses = ['dhcpGroup'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP group'),
       'plDescription'   => _('DHCP group'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpHost.inc b/dhcp/admin/dhcp/sections/class_dhcpHost.inc
index 00a8f24fc0..77e48369f5 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpHost.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpHost.inc
@@ -20,52 +20,52 @@
 
 class dhcpHost extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpHost');
+  public $objectclasses = ['dhcpHost'];
   private $parentPlugin;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP host'),
       'plDescription'   => _('DHCP host'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $attributesInfo = parent::getAttributesInfo();
-    $attributesInfo['host'] = array(
+    $attributesInfo['host'] = [
       'name'  => _('Host'),
-      'attrs' => array(
+      'attrs' => [
         new CompositeAttribute(
           _('The client hardware address'), 'dhcpHWAddress',
-          array(
+          [
             new SelectAttribute (
               '', _('The hardware address type'),
               'dhcpHWAddress_type', TRUE,
-              array(  'ethernet',   'fddi',   'token-ring'), 'ethernet',
-              array(_('Ethernet'),_('FDDI'),_('Token Ring'))
+              [  'ethernet',   'fddi',   'token-ring'], 'ethernet',
+              [_('Ethernet'),_('FDDI'),_('Token Ring')]
             ),
             new StringAttribute (
               '', _('The client hardware address'),
               'dhcpHWAddress_address', TRUE
             ),
-          ),
+          ],
           '/^([^ ]+) ([^ ]+)$/',
           '%s %s',
           '',
           _('Hardware address')
         )
-      )
-    );
+      ]
+    ];
     $attributesInfo['host']['attrs'][0]->setRequired(TRUE);
     $attributesInfo['host']['attrs'][0]->setLinearRendering(TRUE);
     $attributesInfo['main']['attrs'][2]->setDefaultValue(
-      array(
+      [
         'fixed-address ip',
-      )
+      ]
     );
     return $attributesInfo;
   }
@@ -76,7 +76,7 @@ class dhcpHost extends dhcpPlugin
     parent::__construct($plugin, $dn, $attrs);
   }
 
-  function check()
+  function check ()
   {
     $messages = parent::check();
     $dn = $this->dn;
diff --git a/dhcp/admin/dhcp/sections/class_dhcpPool.inc b/dhcp/admin/dhcp/sections/class_dhcpPool.inc
index e3bcbd613f..0c4d8e73cd 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpPool.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpPool.inc
@@ -20,24 +20,24 @@
 
 class dhcpPool extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpPool');
+  public $objectclasses = ['dhcpPool'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP pool'),
       'plDescription'   => _('DHCP pool'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $attributesInfo = parent::getAttributesInfo();
-    $attributesInfo['pool'] = array(
+    $attributesInfo['pool'] = [
       'name'  => _('Pool'),
-      'attrs' => array(
+      'attrs' => [
         new SetAttribute (
           new StringAttribute (
             _('Range'), _('The starting & ending IP Addresses in the range (inclusive), separated by a space; if the range only contains one address, then just the address can be specified. Each range is defined as a separate value.'),
@@ -52,8 +52,8 @@ class dhcpPool extends dhcpPlugin
             'dhcpPermitList', FALSE
           )
         ),
-      )
-    );
+      ]
+    ];
     return $attributesInfo;
   }
 }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpService.inc b/dhcp/admin/dhcp/sections/class_dhcpService.inc
index ad01d994f0..5b33692d77 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpService.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpService.inc
@@ -20,28 +20,28 @@
 
 class dhcpService extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpService');
+  public $objectclasses = ['dhcpService'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP service'),
       'plDescription'   => _('DHCP service'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $attributesInfo = parent::getAttributesInfo();
     $attributesInfo['main']['attrs'][2]->setDefaultValue(
-      array(
+      [
         'default-lease-time 600',
         'max-lease-time 7200',
         'authoritative',
         'ddns-update-style none'
-      )
+      ]
     );
     $attributesInfo['main']['attrs'][] = new ObjectSelectAttribute(_('DHCP Primary'), _('Primary DHCP server'), 'dhcpPrimaryDN', FALSE, 'server');
     $attributesInfo['main']['attrs'][] = new ObjectSelectAttribute(_('DHCP Secondary'), _('Secondary DHCP server'), 'dhcpSecondaryDN', FALSE, 'server');
diff --git a/dhcp/admin/dhcp/sections/class_dhcpSharedNetwork.inc b/dhcp/admin/dhcp/sections/class_dhcpSharedNetwork.inc
index 8c51423bae..6b0afa9c77 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpSharedNetwork.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpSharedNetwork.inc
@@ -20,27 +20,27 @@
 
 class dhcpSharedNetwork extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpSharedNetwork');
+  public $objectclasses = ['dhcpSharedNetwork'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP shared network'),
       'plDescription'   => _('DHCP shared network'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $attributesInfo = parent::getAttributesInfo();
     $attributesInfo['main']['attrs'][2]->setDefaultValue(
-      array(
+      [
         'deny unknown-clients',
         'deny bootp',
         'deny booting',
-      )
+      ]
     );
     return $attributesInfo;
   }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpSubClass.inc b/dhcp/admin/dhcp/sections/class_dhcpSubClass.inc
index 2ecc750a33..226c25a1ff 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpSubClass.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpSubClass.inc
@@ -20,15 +20,15 @@
 
 class dhcpSubClass extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpSubClass');
+  public $objectclasses = ['dhcpSubClass'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP subclass'),
       'plDescription'   => _('DHCP subclass'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
diff --git a/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc b/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
index 42bbb944ca..c3a409a365 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
@@ -20,24 +20,24 @@
 
 class dhcpSubnet extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpSubnet');
+  public $objectclasses = ['dhcpSubnet'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP subnet'),
       'plDescription'   => _('DHCP subnet'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     $attributesInfo = parent::getAttributesInfo();
-    $attributesInfo['subnet'] = array(
+    $attributesInfo['subnet'] = [
       'name'  => _('Subnet'),
-      'attrs' => array(
+      'attrs' => [
         new IntAttribute (
           _('Mask length'), _('The subnet mask length for the subnet. The mask can be easily computed from this length.'),
           'dhcpNetMask', TRUE,
@@ -51,8 +51,8 @@ class dhcpSubnet extends dhcpPlugin
             '/^[0-9\.:]+(\s[0-9\.:]+)?$/'
           )
         ),
-      )
-    );
+      ]
+    ];
     $attributesInfo['main']['attrs'][0] = new IPAttribute(
       _('Network address'), _('Network address of this subnet'),
       'cn', TRUE
diff --git a/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc b/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
index 0c5cf52998..b84ceb142f 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
@@ -20,24 +20,24 @@
 
 class dhcpTSigKey extends dhcpPlugin
 {
-  public $objectclasses = array('dhcpTSigKey');
+  public $objectclasses = ['dhcpTSigKey'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP DNS update key'),
       'plDescription'   => _('DHCP DNS update key'),
-      'plCategory'      => array('dhcpConfiguration'),
+      'plCategory'      => ['dhcpConfiguration'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
@@ -45,7 +45,7 @@ class dhcpTSigKey extends dhcpPlugin
           new SelectAttribute (
             _('Algorithm'), _('Algorithm to generate TSIG Key'),
             'dhcpKeyAlgorithm', TRUE,
-            array('HMAC-MD5','RSAMD5','RSASHA1','DSA','DH')
+            ['HMAC-MD5','RSAMD5','RSASHA1','DSA','DH']
           ),
           new StringAttribute (
             _('Secret'), _('Secret to generate TSIG Key'),
@@ -55,8 +55,8 @@ class dhcpTSigKey extends dhcpPlugin
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/dhcp/admin/systems/class_dhcpSystem.inc b/dhcp/admin/systems/class_dhcpSystem.inc
index 0b43313e51..4c3d6ab24a 100644
--- a/dhcp/admin/systems/class_dhcpSystem.inc
+++ b/dhcp/admin/systems/class_dhcpSystem.inc
@@ -20,14 +20,14 @@
 
 class DhcpHostsAttribute extends OrderedArrayAttribute
 {
-  private $nodesCache = array();
+  private $nodesCache = [];
   private static $templateValueSeparator = '^';
 
-  function __construct ($label, $description, $ldapName, array $values = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, array $values = [], $acl = '')
   {
     $attribute = new CompositeAttribute(
       $description, $ldapName,
-      array(
+      [
         new SelectAttribute(
           '', _('The DHCP configuration or subsection in which this host should be added'),
           $ldapName.'_parent', TRUE
@@ -43,18 +43,18 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
         new HiddenAttribute(
           'dn'
         )
-      ),
+      ],
       FALSE,
       FALSE,
       $acl,
       $label
     );
     parent::__construct($attribute, FALSE, $values, TRUE);
-    $this->setHeaders(array(
+    $this->setHeaders([
       _('Parent'),
       _('Mac'),
       _('IP')
-    ));
+    ]);
     $this->setInLdap(FALSE);
   }
 
@@ -62,7 +62,7 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
   {
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
     return array_slice($value, 0, 3);
   }
@@ -73,7 +73,7 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
     if (is_object($this->plugin)) {
       $this->loadChoices();
       if ($this->plugin->is_template) {
-        $this->value = array();
+        $this->value = [];
         $this->loadAdditionalTemplatesValues();
       } else {
         $this->loadRecords();
@@ -92,22 +92,22 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
     }
   }
 
-  function loadChoices()
+  function loadChoices ()
   {
     list($nodesChoices, $nodes) = dhcpSystem::getDhcpParentNodes();
     $macs   = $this->plugin->parent->getBaseObject()->macAddress;
     if (!is_array($macs)) {
-      $macs = array($macs);
+      $macs = [$macs];
     }
     $ips    = $this->plugin->parent->getBaseObject()->ipHostNumber;
     if (!is_array($ips)) {
-      $ips = array($ips);
+      $ips = [$ips];
     }
     $this->nodesCache = $nodes;
     $this->setChoices($nodesChoices, $macs, $ips);
   }
 
-  function setChoices(array $parentNodes, array $macs, array $ips)
+  function setChoices (array $parentNodes, array $macs, array $ips)
   {
     $this->attribute->attributes[0]->setChoices(array_keys($parentNodes), array_values($parentNodes));
     if (is_object($this->plugin) && $this->plugin->is_template) {
@@ -128,15 +128,15 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
     }
   }
 
-  function loadRecords()
+  function loadRecords ()
   {
     global $config;
 
-    $this->value = array();
+    $this->value = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(objectClass=dhcpHost)(cn='.$this->plugin->parent->getBaseObject()->cn.')(dhcpHWAddress=*))', array('dhcpStatements','dhcpHWAddress','dn'));
+    $ldap->search('(&(objectClass=dhcpHost)(cn='.$this->plugin->parent->getBaseObject()->cn.')(dhcpHWAddress=*))', ['dhcpStatements','dhcpHWAddress','dn']);
     while ($attrs = $ldap->fetch()) {
       $ip = '';
       foreach ($attrs['dhcpStatements'] as $statement) {
@@ -145,12 +145,12 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
           break;
         }
       }
-      $this->value[] = array(
+      $this->value[] = [
         preg_replace('/^[^,]+,/', '', $attrs['dn']),
         preg_replace('/ethernet (([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2}))/', '\\1', $attrs['dhcpHWAddress'][0]),
         $ip,
         $attrs['dn']
-      );
+      ];
     }
     $this->initialValue = $this->getValue();
   }
@@ -233,7 +233,7 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
       $errors = $dhcpTabs->save();
       msg_dialog::displayChecks($errors);
     }
-    $errors = array();
+    $errors = [];
     foreach ($values as $value) {
       $configDn = $value[0];
       if (preg_match('/([^,]+,'.preg_quote(get_ou('dhcpRDN')).'.*'.preg_quote($config->current['BASE']).')$/', $value[0], $m)) {
@@ -293,39 +293,39 @@ class DhcpHostsAttribute extends OrderedArrayAttribute
 
 class dhcpSystem extends simplePlugin
 {
-  var $objectclasses = array();
+  var $objectclasses = [];
 
   protected $zonesCache;
   protected $loaded = FALSE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP'),
       'plDescription'   => _('Edit the DHCP zones of a system'),
       'plIcon'          => 'geticon.php?context=applications&icon=dhcp&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=dhcp&size=16',
-      'plObjectType'    => array('server','workstation','terminal','printer','component','phone','mobilePhone'),
+      'plObjectType'    => ['server','workstation','terminal','printer','component','phone','mobilePhone'],
       'plPriority'      => 4,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP zones'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new DhcpHostsAttribute(
             '', _('DHCP hosts declared for this system'),
             'dhcpHosts'
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -334,7 +334,7 @@ class dhcpSystem extends simplePlugin
     $this->ignore_account = FALSE;
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     /* Will not work when call from constructor (or when $attrs is not us)
      * See DhcpHostsAttribute::setParent which sets is_account later
@@ -348,22 +348,22 @@ class dhcpSystem extends simplePlugin
     $this->attributesAccess['dhcpHosts']->setParent($this);
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->is_account = $this->is_this_account($this->attrs);
   }
 
-  static function getDhcpParentNodes()
+  static function getDhcpParentNodes ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search('(|(objectClass=dhcpService)(objectClass=dhcpGroup)'.
-                    '(objectClass=dhcpSubnet)(objectClass=dhcpSharedNetwork))', array('cn', 'dhcpNetMask'));
+                    '(objectClass=dhcpSubnet)(objectClass=dhcpSharedNetwork))', ['cn', 'dhcpNetMask']);
 
-    $nodes    = array();
-    $choices  = array();
+    $nodes    = [];
+    $choices  = [];
     while ($attrs = $ldap->fetch()) {
       $subdn = preg_replace('/,'.preg_quote(get_ou('dhcpRDN')).'.+$/', '', $attrs['dn']);
       $parts = ldap_explode_dn($subdn, 1);
@@ -376,11 +376,11 @@ class dhcpSystem extends simplePlugin
       }
       $nodes[$attrs['dn']] = $attrs;
     }
-    return array($choices, $nodes);
+    return [$choices, $nodes];
   }
 
   /* Returns error text if the IP is not in the given subnet LDAP node, or TRUE */
-  static function dhcpIsIpInSubnet($subnetAttrs, $ip)
+  static function dhcpIsIpInSubnet ($subnetAttrs, $ip)
   {
     if (isset($subnetAttrs['dhcpNetMask'][0])) {
       if (!tests::is_in_network($subnetAttrs['cn'][0], normalize_netmask($subnetAttrs['dhcpNetMask'][0]), $ip)) {
@@ -390,13 +390,13 @@ class dhcpSystem extends simplePlugin
     return TRUE;
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
   }
 
-  protected function ldap_save()
+  protected function ldap_save ()
   {
     global $config;
 
@@ -419,18 +419,18 @@ class dhcpSystem extends simplePlugin
     );
   }
 
-  protected function ldap_remove()
+  protected function ldap_remove ()
   {
     if ($this->is_template) {
       return parent::ldap_remove();
     } elseif (($this->dn != '') && ($this->dn != 'new')) {
       /* Remove all records */
-      $this->attributesAccess['dhcpHosts']->setValue(array());
+      $this->attributesAccess['dhcpHosts']->setValue([]);
       return $this->ldap_save();
     }
   }
 
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     parent::adapt_from_template($attrs, $skip);
     $this->attributesAccess['dhcpHosts']->loadChoices();
diff --git a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
index 2df087564d..46e692b55f 100644
--- a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
+++ b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
@@ -20,38 +20,38 @@
 
 class serviceDHCP extends simpleService
 {
-  var $objectclasses = array('dhcpServer');
+  var $objectclasses = ['dhcpServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DHCP service'),
       'plDescription' => _('DHCP service'),
       'plIcon'        => 'geticon.php?context=applications&icon=dhcp&size=16',
-      'plForeignKeys' => array(
+      'plForeignKeys' => [
         'dhcpServiceDN' => 'dhcpConfiguration',
-      ),
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP configurations'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SetAttribute(
             new SelectAttribute (
               '', _('The DN of dhcpService object(s) which contain the configuration information'),
               'dhcpServiceDN'
             )
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
diff --git a/dhcp/config/dhcp/class_dhcpConfig.inc b/dhcp/config/dhcp/class_dhcpConfig.inc
index 97d5ca94dc..7a36e4a602 100644
--- a/dhcp/config/dhcp/class_dhcpConfig.inc
+++ b/dhcp/config/dhcp/class_dhcpConfig.inc
@@ -20,34 +20,34 @@
 
 class dhcpConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdDhcpPluginConf');
+  var $objectclasses  = ['fdDhcpPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DHCP configuration'),
       'plDescription'   => _('FusionDirectory dhcp plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DHCP config'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('DHCP RDN'), _('Branch in which DHCP configurations will be stored'),
             'fdDhcpRDN', TRUE,
             'ou=dhcp'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/dns/admin/dns/class_DnsRecordAttribute.inc b/dns/admin/dns/class_DnsRecordAttribute.inc
index fd7620437c..b27d859e60 100644
--- a/dns/admin/dns/class_DnsRecordAttribute.inc
+++ b/dns/admin/dns/class_DnsRecordAttribute.inc
@@ -29,7 +29,7 @@ class LocRecordAttribute extends CompositeAttribute
     parent::__construct ($description, $ldapName, $attributes, $readFormat, FALSE, $acl, $label);
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     /* '%s %s %.2fm[ %.2fm[ %.2fm[ %.2fm]]]' */
     $str = sprintf('%s %s %.2fm', $values['lat'], $values['long'], $values['alt']);
@@ -58,7 +58,7 @@ class LocRecordLatLongAttribute extends CompositeAttribute
     $this->setLinearRendering(TRUE);
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     /* The format is: d1 [m1 [s1]] {"N"|"S"|"E"|"W"} */
     $str = $values['degrees'];
@@ -75,11 +75,11 @@ class LocRecordLatLongAttribute extends CompositeAttribute
 
 class DnsRecordAttribute extends CompositeAttribute
 {
-  protected $parentIPs4 = array('');
-  protected $parentIPs6 = array('');
+  protected $parentIPs4 = [''];
+  protected $parentIPs6 = [''];
   protected $parentFQDN = '';
 
-  public static $types = array(
+  public static $types = [
     'aRecord'     => 'A',
     //~ 'a6Record'    => 'A6',
     'aAAARecord'  => 'AAAA',
@@ -104,23 +104,23 @@ class DnsRecordAttribute extends CompositeAttribute
     'sRVRecord'   => 'SRV',
     'sSHFPRecord' => 'SSHFP',
     'tXTRecord'   => 'TXT',
-  );
+  ];
 
   /* Types which might match reverse zone records */
-  public static $reverseTypes = array(
+  public static $reverseTypes = [
     'aRecord', 'aAAARecord'
-  );
+  ];
 
-  function __construct($label, $description, $ldapName, $required)
+  function __construct ($label, $description, $ldapName, $required)
   {
-    $attributes = array(
+    $attributes = [
       new SelectAttribute(_('Type'), '', $ldapName.'_type', $required, array_keys(static::$types), '', array_values(static::$types)),
       new HiddenAttribute($ldapName.'_nofield'),
       new SelectAttribute(
         _('Reverse zone'), _('Reverse zone this record should be in, if any'),
         'reverse', FALSE
       ),
-    );
+    ];
     parent::__construct($description, $ldapName, $attributes, FALSE, FALSE, '', $label);
     $this->setLinearRendering(TRUE);
     $this->attributes[0]->setSubmitForm(TRUE);
@@ -128,7 +128,7 @@ class DnsRecordAttribute extends CompositeAttribute
     $this->setRequired($required);
   }
 
-  function setParentIPs($ipv4, $ipv6, $fqdn)
+  function setParentIPs ($ipv4, $ipv6, $fqdn)
   {
     $this->parentIPs4   = $ipv4;
     $this->parentIPs4[] = '';
@@ -147,16 +147,16 @@ class DnsRecordAttribute extends CompositeAttribute
     }
   }
 
-  private function loadLocRecordFields($ldapName)
+  private function loadLocRecordFields ($ldapName)
   {
     $this->attributes[1] = new LocRecordAttribute(
       _('LOC Record'),
       $ldapName,
-      array(
+      [
         'lat' => new LocRecordLatLongAttribute(
           _('Latitude'), _('Latitude'),
           $ldapName.'_latitude',
-          array(
+          [
             'degrees' => new IntAttribute(
               '', _('Degrees'),
               $ldapName.'_lat_degrees', TRUE,
@@ -175,15 +175,15 @@ class DnsRecordAttribute extends CompositeAttribute
             'dir' => new SelectAttribute(
               '', _('North/South'),
               $ldapName.'_lat_direction', TRUE,
-              array('N', 'S'), '',
-              array(_('North'), _('South'))
+              ['N', 'S'], '',
+              [_('North'), _('South')]
             ),
-          )
+          ]
         ),
         'long' => new LocRecordLatLongAttribute(
           _('Longitude'), _('Longitude'),
           $ldapName.'_longitude',
-          array(
+          [
             'degrees' => new IntAttribute(
               '', _('Degrees'),
               $ldapName.'_long_degrees', TRUE,
@@ -202,10 +202,10 @@ class DnsRecordAttribute extends CompositeAttribute
             'dir' => new SelectAttribute(
               '', _('East/West'),
               $ldapName.'_long_direction', TRUE,
-              array('E', 'W'), '',
-              array(_('East'), _('West'))
+              ['E', 'W'], '',
+              [_('East'), _('West')]
             ),
-          )
+          ]
         ),
         'alt' => new FloatAttribute(
           _('Altitude (meters)'), '',
@@ -227,16 +227,16 @@ class DnsRecordAttribute extends CompositeAttribute
           $ldapName.'_vp', FALSE,
           0, 90000000, ''
         ),
-      )
+      ]
     );
   }
 
-  private function loadNaptrRecordFields($ldapName)
+  private function loadNaptrRecordFields ($ldapName)
   {
     $this->attributes[1] = new CharSeparatedCompositeAttribute(
       _('NAPTR Record'),
       $ldapName,
-      array(
+      [
         new IntAttribute(
           _('Order'), _('Integer specifying the order in which the NAPTR records MUST be processed to ensure the correct ordering of rules.  Low numbers are processed before high numbers.'),
           $ldapName.'_order', TRUE,
@@ -263,17 +263,17 @@ class DnsRecordAttribute extends CompositeAttribute
           _('Replacement'), _('The next NAME to query for NAPTR, SRV, or address records depending on the value of the flags field.'),
           $ldapName.'_replace', TRUE
         ),
-      ),
+      ],
       ' '
     );
   }
 
-  private function loadSrvRecordFields($ldapName)
+  private function loadSrvRecordFields ($ldapName)
   {
     $this->attributes[1] = new CharSeparatedCompositeAttribute(
       _('SRV Record'),
       $ldapName,
-      array(
+      [
         new IntAttribute(
           _('Priority'), _('Priority of the target host, lower value means more preferred'),
           $ldapName.'_priority', TRUE,
@@ -293,12 +293,12 @@ class DnsRecordAttribute extends CompositeAttribute
           _('Target'), _('Canonical hostname of the machine providing the service, ending in a dot'),
           $ldapName.'_target', TRUE
         ),
-      ),
+      ],
       ' '
     );
   }
 
-  protected function updateFields()
+  protected function updateFields ()
   {
     $type = $this->attributes[0]->getValue();
     $ldapName = $this->getLdapName().'_'.$type.'_content';
@@ -325,7 +325,7 @@ class DnsRecordAttribute extends CompositeAttribute
           $this->attributes[1] = new CharSeparatedCompositeAttribute(
             _('MX Record'),
             $ldapName,
-            array(
+            [
               new IntAttribute(
                 _('Priority'), _('Preference given to this RR among others at the same owner, lower values are preferred'),
                 $ldapName.'_priority', TRUE,
@@ -335,7 +335,7 @@ class DnsRecordAttribute extends CompositeAttribute
                 _('Target'), _('Domain name which specifies a host willing to act as a mail exchange for the owner name'),
                 $ldapName.'_target', TRUE
               ),
-            ),
+            ],
             ' '
           );
           break;
@@ -378,7 +378,7 @@ class DnsRecordAttribute extends CompositeAttribute
     $this->setAttributes($this->attributes);
   }
 
-  function applyPostValue()
+  function applyPostValue ()
   {
     parent::applyPostValue();
     $this->updateFields();
@@ -420,7 +420,7 @@ class DnsRecordAttribute extends CompositeAttribute
     }
   }
 
-  static function getReverseZoneInfo($ipv6, $ip, $reverse)
+  static function getReverseZoneInfo ($ipv6, $ip, $reverse)
   {
     $mask = preg_replace('/\.(in-addr|ip6)\.arpa\.?$/i', '', $reverse);
     if (preg_match('/^([[:digit:]]+[-\/][[:digit:]]+).([\.[:digit:]]+)$/', $mask, $m)) {
@@ -433,10 +433,10 @@ class DnsRecordAttribute extends CompositeAttribute
       $reversedIp = implode('.', array_reverse(explode('.', $ip)));
     }
 
-    return array($mask, $reversedIp);
+    return [$mask, $reversedIp];
   }
 
-  static function matchReverseZone($type, $ip, $reverse)
+  static function matchReverseZone ($type, $ip, $reverse)
   {
     list($mask, $testString) = static::getReverseZoneInfo(($type == 'aAAARecord'), $ip, $reverse);
 
diff --git a/dns/admin/dns/class_dnsAcl.inc b/dns/admin/dns/class_dnsAcl.inc
index a3bbfb7fed..f557b732cf 100644
--- a/dns/admin/dns/class_dnsAcl.inc
+++ b/dns/admin/dns/class_dnsAcl.inc
@@ -22,30 +22,30 @@ class dnsAcl extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdDNSAcl');
+  var $objectclasses = ['fdDNSAcl'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DNS acl'),
       'plDescription' => _('DNS acl'),
-      'plObjectType'  => array('dnsAcl' => array(
+      'plObjectType'  => ['dnsAcl' => [
         'name'        => _('DNS acl'),
         'filter'      => '(objectClass=fdDNSAcl)',
         'ou'          => get_ou('dnsRDN'),
         'icon'        => 'geticon.php?context=categories&icon=acl&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Acl'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
           new HostNameAttribute (
             _('ACL name'), _('Name of this acl'),
@@ -57,8 +57,8 @@ class dnsAcl extends simplePlugin
               'fdDNSAclMatchList', FALSE
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/dns/admin/dns/class_dnsManagement.inc b/dns/admin/dns/class_dnsManagement.inc
index b73ef2175a..9ef77f1409 100644
--- a/dns/admin/dns/class_dnsManagement.inc
+++ b/dns/admin/dns/class_dnsManagement.inc
@@ -20,26 +20,26 @@
 
 class dnsManagement extends simpleManagement
 {
-  protected $objectTypes  = array('dnsZone', 'dnsView', 'dnsAcl');
+  protected $objectTypes  = ['dnsZone', 'dnsView', 'dnsAcl'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = TRUE;
   protected $baseMode               = TRUE;
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'zoneName', 'relativeDomainName', 'sOARecord');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'zoneName', 'relativeDomainName', 'sOARecord'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DNS'),
       'plDescription' => _('DNS Management'),
       'plIcon'        => 'geticon.php?context=applications&icon=dns&size=48',
-      'plSection'     => array('systems' => array('name' => _('Systems'), 'priority' => 10)),
+      'plSection'     => ['systems' => ['name' => _('Systems'), 'priority' => 10]],
       'plPriority'    => 1,
-      'plManages'     => array('dnsZone', 'dnsView', 'dnsAcl'),
+      'plManages'     => ['dnsZone', 'dnsView', 'dnsAcl'],
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
   function configureHeadpage ()
@@ -51,29 +51,29 @@ class dnsManagement extends simpleManagement
         $this->headpage->xmlData['actionmenu']['action'],
         2,
         0,
-        array(
-          array(
+        [
+          [
             'name'  => 'zonerefresh',
             'type'  => 'entry',
             'image' => 'geticon.php?context=actions&icon=view-refresh&size=16',
             'label' => 'Refresh Zone',
             'acl'   => 'dnsZone/dnsZone[w]',
-          )
-        )
+          ]
+        ]
       );
       array_splice(
         $this->headpage->xmlData['actiontriggers']['action'],
         2,
         0,
-        array(
-          array(
+        [
+          [
             'name'  => 'zonerefresh',
             'type'  => 'entry',
             'image' => 'geticon.php?context=actions&icon=view-refresh&size=16',
             'label' => 'Refresh Zone',
             'acl'   => '%acl[w]',
-          )
-        )
+          ]
+        ]
       );
     }
   }
@@ -104,7 +104,7 @@ class dnsManagement extends simpleManagement
               $target = $target[0];
             }
             $zoneName = $entry['zoneName'][0];
-            $s_daemon->append_call('Ldap2Zone.start', $target, array('args' => array($zoneName)));
+            $s_daemon->append_call('Ldap2Zone.start', $target, ['args' => [$zoneName]]);
             if ($s_daemon->is_error()) {
               msg_dialog::display(_('Could not get run ldap2zone'), msgPool::siError($s_daemon->get_error()), ERROR_DIALOG);
             } else {
@@ -118,14 +118,14 @@ class dnsManagement extends simpleManagement
     }
   }
 
-  public static function findServerByFQDN($fqdn, $zoneDn = NULL)
+  public static function findServerByFQDN ($fqdn, $zoneDn = NULL)
   {
     global $config;
     list ($serverCn, $serverZone) = explode('.', $fqdn, 2);
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ips = array();
-    $ldap->search('(&(|(aRecord=*)(aAAARecord=*))(relativeDomainName='.$serverCn.')(zoneName='.$serverZone.'))', array('aRecord', 'aAAARecord'));
+    $ips = [];
+    $ldap->search('(&(|(aRecord=*)(aAAARecord=*))(relativeDomainName='.$serverCn.')(zoneName='.$serverZone.'))', ['aRecord', 'aAAARecord']);
     while ($attrs = $ldap->fetch()) {
       if (isset($attrs['aRecord'])) {
         unset($attrs['aRecord']['count']);
@@ -143,7 +143,7 @@ class dnsManagement extends simpleManagement
       }
       return objects::ls('server', NULL, NULL, $filter);
     }
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/dns/admin/dns/class_dnsView.inc b/dns/admin/dns/class_dnsView.inc
index 554c1f2eaa..a40f884e75 100644
--- a/dns/admin/dns/class_dnsView.inc
+++ b/dns/admin/dns/class_dnsView.inc
@@ -20,30 +20,30 @@
 
 class dnsView extends simplePlugin
 {
-  var $objectclasses = array('fdDNSView');
+  var $objectclasses = ['fdDNSView'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DNS view'),
       'plDescription' => _('DNS view'),
-      'plObjectType'  => array('dnsView' => array(
+      'plObjectType'  => ['dnsView' => [
         'name'        => _('DNS view'),
         'filter'      => '(objectClass=fdDNSView)',
         'ou'          => get_ou('dnsRDN'),
         'icon'        => 'geticon.php?context=applications&icon=dns&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('View'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
           new HostNameAttribute (
             _('View name'), _('Name of this view'),
@@ -67,9 +67,9 @@ class dnsView extends simplePlugin
               'fdDNSZoneDn', FALSE
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
diff --git a/dns/admin/dns/class_dnsZone.inc b/dns/admin/dns/class_dnsZone.inc
index 266e47e1dc..f0be55748a 100644
--- a/dns/admin/dns/class_dnsZone.inc
+++ b/dns/admin/dns/class_dnsZone.inc
@@ -20,7 +20,7 @@
 
 class DnsRecordPlugin extends simplePlugin
 {
-  public static function plInfo()
+  public static function plInfo ()
   {
     $plProvidedAcls = parent::generatePlProvidedAcls(static::getAttributesInfo());
 
@@ -30,21 +30,21 @@ class DnsRecordPlugin extends simplePlugin
       $plProvidedAcls['dnsRecord_'.$id] = sprintf(_('%s record'), $name);
     }
 
-    return array(
+    return [
       'plShortName'     => _('DNS record'),
       'plDescription'   => _('DNS record'),
-      'plCategory'      => array('dnsZone'),
+      'plCategory'      => ['dnsZone'],
       'plProvidedAcls'  => $plProvidedAcls
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Record'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new StringAttribute (
             _('Subdomain'), _('Relative subdomain name'),
             'relativeSubdomainName', FALSE,
@@ -54,9 +54,9 @@ class DnsRecordPlugin extends simplePlugin
             _('Record'), _('DNS Record'),
             'dnsRecord', TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   /*
@@ -96,11 +96,11 @@ class DnsRecordPlugin extends simplePlugin
     $this->attributesAccess['dnsRecord']->attributes[2]->setChoices($attribute->getReverseZones());
   }
 
-  function save()
+  function save ()
   {
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $attr   = $this->attributesAccess['dnsRecord'];
@@ -119,7 +119,7 @@ class DnsRecordDialog extends GenericDialog
 
   protected $plugin;
 
-  function __construct($simplePlugin, &$attribute, $value = array())
+  function __construct ($simplePlugin, &$attribute, $value = [])
   {
     $this->attribute  = $attribute;
     $this->plugin     = $simplePlugin;
@@ -156,7 +156,7 @@ class DnsRecordDialog extends GenericDialog
     if ($relativeSubdomainName == '@') {
       $relativeSubdomainName = '';
     }
-    $ret = array_merge(array($relativeSubdomainName), $this->dialog->dnsRecord);
+    $ret = array_merge([$relativeSubdomainName], $this->dialog->dnsRecord);
     $this->attribute->addValue($ret);
     return FALSE;
   }
@@ -174,24 +174,24 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
 {
   protected $height       = 400;
   protected $dialogClass  = 'DnsRecordDialog';
-  protected $reverseZones = array();
+  protected $reverseZones = [];
   protected $zoneName;
   protected $zoneDn;
   protected $initialReverseZones;
 
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = array(), $acl = "")
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = "")
   {
     parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
-    $this->setHeaders(array(
+    $this->setHeaders([
       _('Subdomain'),
       _('Type'),
       _('Content'),
       _('Reverse'),
       ''
-    ));
+    ]);
   }
 
-  function getZoneName()
+  function getZoneName ()
   {
     if ($this->plugin instanceof dnsZone) {
       return $this->plugin->zoneName;
@@ -200,7 +200,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function getZoneDn()
+  function getZoneDn ()
   {
     if ($this->plugin instanceof dnsZone) {
       return $this->plugin->dn;
@@ -209,7 +209,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function getReverseZones()
+  function getReverseZones ()
   {
     if ($this->plugin instanceof dnsZone) {
       return $this->plugin->reverseZones;
@@ -218,14 +218,14 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
-    return array(
+    return [
       $value[0],
       DnsRecordAttribute::$types[$value[1]],
       $value[2],
       $value[3]
-    );
+    ];
   }
 
   protected function loadReverseZones ($attrs)
@@ -235,8 +235,8 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     /* Get reverse zones */
     $ldap = $config->get_ldap_link();
     $ldap->cd($attrs['dn']);
-    $ldap->search('(&(objectClass=dNSZone)(relativeDomainName=@)(zoneName=*))', array('zoneName','nSRecord','sOARecord'), 'one');
-    $reverseZones = array();
+    $ldap->search('(&(objectClass=dNSZone)(relativeDomainName=@)(zoneName=*))', ['zoneName','nSRecord','sOARecord'], 'one');
+    $reverseZones = [];
     while ($subattrs = $ldap->fetch()) {
       $reverseZones[$subattrs['dn']] = $subattrs;
     }
@@ -261,15 +261,15 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
   {
     global $config;
 
-    $this->value = array();
-    $aRecords = array(
-      'aRecord'     => array(),
-      'aAAARecord'  => array()
-    );
+    $this->value = [];
+    $aRecords = [
+      'aRecord'     => [],
+      'aAAARecord'  => []
+    ];
     foreach (array_keys(DnsRecordAttribute::$types) as $type) {
       if (isset($attrs[$type]['count'])) {
         for ($i = 0; $i < $attrs[$type]['count']; $i++) {
-          $this->value[] = array('', $type, $attrs[$type][$i], '');
+          $this->value[] = ['', $type, $attrs[$type][$i], ''];
           if (in_array($type, DnsRecordAttribute::$reverseTypes)) {
             end($this->value);
             $ip = $attrs[$type][$i];
@@ -284,7 +284,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     if (isset($attrs['dn'])) {
       $ldap = $config->get_ldap_link();
       $ldap->cd($attrs['dn']);
-      $ldap->search('(&(objectClass=dNSZone)(zoneName='.$attrs['zoneName'][0].'))', array_merge(array('relativeDomainName'), array_keys(DnsRecordAttribute::$types)), 'one');
+      $ldap->search('(&(objectClass=dNSZone)(zoneName='.$attrs['zoneName'][0].'))', array_merge(['relativeDomainName'], array_keys(DnsRecordAttribute::$types)), 'one');
       while ($subattrs = $ldap->fetch()) {
         for ($i = 0; $i < $subattrs['count']; $i++) {
           $type = $subattrs[$i];
@@ -292,7 +292,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
             continue;
           }
           for ($j = 0; $j < $subattrs[$type]['count']; $j++) {
-            $this->value[] = array($subattrs['relativeDomainName'][0], $type, $subattrs[$type][$j], '');
+            $this->value[] = [$subattrs['relativeDomainName'][0], $type, $subattrs[$type][$j], ''];
             if (in_array($type, DnsRecordAttribute::$reverseTypes)) {
               end($this->value);
               $ip = $subattrs[$type][$j];
@@ -320,7 +320,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
           $baseIp = implode('.', array_reverse(explode('.', $baseIp)));
         }
         $ldap->cd($reverseZoneDn);
-        $ldap->search('(objectClass=dNSZone)', array('relativeDomainName', 'pTRRecord'), 'one');
+        $ldap->search('(objectClass=dNSZone)', ['relativeDomainName', 'pTRRecord'], 'one');
         while ($subattrs = $ldap->fetch()) {
           unset($subattrs['pTRRecord']['count']);
           foreach ($subattrs['pTRRecord'] as $ptrRecord) {
@@ -344,7 +344,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
       }
       $this->initialReverseZones = $reverseZones;
     } else {
-      $this->initialReverseZones = array();
+      $this->initialReverseZones = [];
     }
     sort($this->value);
   }
@@ -353,7 +353,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
   {
     foreach (array_keys(DnsRecordAttribute::$types) as $type) {
       if (!isset($attrs[$type])) {
-        $attrs[$type] = array();
+        $attrs[$type] = [];
       }
     }
     foreach ($this->value as $line) {
@@ -365,14 +365,14 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  private function valueToNodes($value)
+  private function valueToNodes ($value)
   {
     /* Compute values into $nodes and $ptrs */
     $zoneDn     = $this->getZoneDn();
     $zoneName   = $this->getZoneName();
-    $nodes      = array();
-    $ptrs       = array();
-    $nsRecords  = array();
+    $nodes      = [];
+    $ptrs       = [];
+    $nsRecords  = [];
     foreach ($value as $line) {
       list ($domain, $type, $content, $reverse) = $line;
       if (!empty($reverse)) {
@@ -384,10 +384,10 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
           );
         } else {
           if (!isset($ptrs[$reverse])) {
-            $ptrs[$reverse] = array();
+            $ptrs[$reverse] = [];
           }
           if (!isset($ptrs[$reverse][$content])) {
-            $ptrs[$reverse][$content] = array();
+            $ptrs[$reverse][$content] = [];
           }
           $ptrs[$reverse][$content][] = $domain;
         }
@@ -401,22 +401,22 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
       }
       $dn = 'relativeDomainName='.$domain.','.$zoneDn;
       if (!isset($nodes[$dn])) {
-        $nodes[$dn] = array(
-          'objectClass'         => array('dNSZone'),
+        $nodes[$dn] = [
+          'objectClass'         => ['dNSZone'],
           'relativeDomainName'  => $domain,
           'zoneName'            => $zoneName,
           'dNSClass'            => 'IN',
-        );
+        ];
       }
       if (!isset($nodes[$dn][$type])) {
-        $nodes[$dn][$type] = array();
+        $nodes[$dn][$type] = [];
       }
       $nodes[$dn][$type][] = $content;
     }
-    return array($nodes, $ptrs, $nsRecords);
+    return [$nodes, $ptrs, $nsRecords];
   }
 
-  protected function reverseZoneNeedUpdate(array $new, array $old, array $ptrs, array $initialPtrs, $reverseZone)
+  protected function reverseZoneNeedUpdate (array $new, array $old, array $ptrs, array $initialPtrs, $reverseZone)
   {
     // NS Record changes
     if (!empty($old['nSRecord'])) {
@@ -465,14 +465,14 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
       /* Write this reverse under the zone dn */
       $reverseDn = 'zoneName='.$reverseZone.','.$zoneDn;
       /* Copy NS records and SOA from zone */
-      $node = array(
-        'objectClass'         => array('dNSZone'),
+      $node = [
+        'objectClass'         => ['dNSZone'],
         'zoneName'            => $reverseZone,
         'relativeDomainName'  => '@',
         'dNSClass'            => 'IN',
         'sOARecord'           => $this->plugin->sOARecord,
         'nSRecord'            => $nsRecords
-      );
+      ];
       $ldap->cd($reverseDn);
       if (isset($oldReverseZones[$reverseDn])) {
         if (!$soaChanged && !$this->reverseZoneNeedUpdate($node, $oldReverseZones[$reverseDn], $ptrs, $initialPtrs, $reverseZone)) {
@@ -519,7 +519,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
         }
         foreach (array_keys(DnsRecordAttribute::$types) as $type) {
           if (!isset($node[$type])) {
-            $node[$type] = array();
+            $node[$type] = [];
           }
         }
         $ldap->modify($node);
@@ -545,8 +545,8 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
           $relativeDomainName = preg_replace('/\.'.preg_quote($mask).'$/', '', $reversedIp);
           $dn = 'relativeDomainName='.$relativeDomainName.','.$reverseDn;
           $ldap->cd($dn);
-          $node = array(
-            'objectClass'         => array('dNSZone'),
+          $node = [
+            'objectClass'         => ['dNSZone'],
             'zoneName'            => $reverseZone,
             'dNSClass'            => 'IN',
             'pTRRecord'           => array_map(
@@ -556,7 +556,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
               $names
             ),
             'relativeDomainName'  => $relativeDomainName,
-          );
+          ];
           if (isset($initialPtrs[$reverseZone][$ip])) {
             $ldap->modify($node);
             if (!$ldap->success()) {
@@ -585,7 +585,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  function cnChanged($oldcn, $newcn)
+  function cnChanged ($oldcn, $newcn)
   {
     $nb = 0;
     foreach ($this->value as &$row) {
@@ -598,7 +598,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     return $nb;
   }
 
-  function ipChanged($oldip, $newip)
+  function ipChanged ($oldip, $newip)
   {
     $nb = 0;
     foreach ($this->value as &$row) {
@@ -611,7 +611,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     return $nb;
   }
 
-  function cnRemoved($oldcn)
+  function cnRemoved ($oldcn)
   {
     $nb = 0;
     foreach ($this->value as $key => $row) {
@@ -623,7 +623,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     return $nb;
   }
 
-  function ipRemoved($oldips)
+  function ipRemoved ($oldips)
   {
     $nb = 0;
     foreach ($this->value as $key => $row) {
@@ -635,31 +635,31 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     return $nb;
   }
 
-  protected function canWriteRecord($value)
+  protected function canWriteRecord ($value)
   {
     $ui     = get_userinfo();
     $rights = $ui->get_permissions($this->getZoneDn(), 'dnsZone/DnsRecordPlugin', 'dnsRecord_'.$value[1], $this->plugin->readOnly());
     return preg_match('/w/', $rights);
   }
 
-  protected function genRowIcons($key, $value)
+  protected function genRowIcons ($key, $value)
   {
     list ($img, $nbicons) = parent::genRowIcons($key, $value);
     if ($this->canWriteRecord($value)) {
-      return array($img, $nbicons);
+      return [$img, $nbicons];
     } else {
-      return array('', 0);
+      return ['', 0];
     }
   }
 
-  protected function handleEdit($key)
+  protected function handleEdit ($key)
   {
     if ($this->canWriteRecord($this->value[$key])) {
       return parent::handleEdit($key);
     }
   }
 
-  function delPostValue($key)
+  function delPostValue ($key)
   {
     if ($this->canWriteRecord($this->value[$key])) {
       return parent::delPostValue($key);
@@ -686,37 +686,37 @@ class FQDNAttribute extends StringAttribute
 
 class dnsZone extends simplePlugin
 {
-  var $objectclasses = array('dNSZone');
+  var $objectclasses = ['dNSZone'];
 
-  public static function finalDot()
+  public static function finalDot ()
   {
     global $config;
     return ($config->get_cfg_value('DNSFinalDot', 'TRUE') == 'TRUE');
   }
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DNS zone'),
       'plDescription' => _('DNS zone'),
-      'plObjectType'  => array('dnsZone' => array(
+      'plObjectType'  => ['dnsZone' => [
         'name'        => _('DNS zone'),
         'filter'      => '(&(objectClass=dNSZone)(relativeDomainName=@)(!(|(zoneName=*.arpa)(zoneName=*.arpa.))))',
         'ou'          => get_ou('dnsRDN'),
         'icon'        => 'geticon.php?context=applications&icon=dns&size=16',
         'mainAttr'    => 'zoneName'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo()),
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Zone'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
           new FQDNAttribute (
             _('Zone name'), _('Zone name'),
@@ -739,15 +739,15 @@ class dnsZone extends simplePlugin
             'dNSClass', TRUE,
             'IN'
           ),
-        )
-      ),
-      'soa' => array(
+        ]
+      ],
+      'soa' => [
         'name'  => _('SOA record'),
-        'attrs' => array(
+        'attrs' => [
           new CompositeAttribute (
             _('SOA Record'),
             'sOARecord',
-            array(
+            [
               new FQDNAttribute(
                 _('Primary DNS server'), _('Domain name of the name server that was the original or primary source of data for this zone'),
                 'soaRecord_primary', TRUE
@@ -781,23 +781,23 @@ class dnsZone extends simplePlugin
                 'soaRecord_ttl', TRUE,
                 0, FALSE, 6400
               ),
-            ),
+            ],
             '/^(\S*) (\S*) (\S*) (\S*) (\S*) (\S*) (\S*)$/',
             '%s %s %s %s %s %s %s'
           ),
-        )
-      ),
-      'records' => array(
+        ]
+      ],
+      'records' => [
         'name'  => _('Records'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new DnsRecordsAttribute(
             '', _('The DNS records for this zone'),
             'dnsRecords', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -806,7 +806,7 @@ class dnsZone extends simplePlugin
     $this->attributesAccess['reverseZones']->setInLdap(FALSE);
   }
 
-  function prepareSavedAttributes()
+  function prepareSavedAttributes ()
   {
     parent::prepareSavedAttributes();
     foreach (array_keys(DnsRecordAttribute::$types) as $type) {
diff --git a/dns/admin/systems/class_dnsHost.inc b/dns/admin/systems/class_dnsHost.inc
index bd7cdaaf04..5869a66e12 100644
--- a/dns/admin/systems/class_dnsHost.inc
+++ b/dns/admin/systems/class_dnsHost.inc
@@ -23,7 +23,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
 {
   private static $templateValueSeparator = '^';
 
-  function __construct ($label, $description, $ldapName, $zoneDn, $defaultValue = array(), $acl = "")
+  function __construct ($label, $description, $ldapName, $zoneDn, $defaultValue = [], $acl = "")
   {
     parent::__construct ($label, $description, $ldapName, FALSE, $defaultValue, $acl);
     $this->zoneDn = $zoneDn;
@@ -40,7 +40,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
       if (!$this->plugin->is_template) {
         $this->loadRecords();
       } else {
-        $this->value = array();
+        $this->value = [];
         $this->loadAdditionalTemplatesValues();
       }
     }
@@ -75,7 +75,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
     $this->initialValue = $this->getValue();
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
     $values = parent::getAttributeArrayValue($key, $value);
     if ($this->plugin->is_template) {
@@ -96,7 +96,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
     ) {
       return $values;
     } else {
-      return array();
+      return [];
     }
   }
 
@@ -127,53 +127,53 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
 
 class dnsHost extends simplePlugin
 {
-  var $objectclasses = array('fdDNSHost');
+  var $objectclasses = ['fdDNSHost'];
   var $displayHeader = TRUE;
 
   protected $zonesCache;
   protected $loaded = FALSE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('DNS'),
       'plDescription'   => _('Edit the DNS zones of a system'),
       'plIcon'          => 'geticon.php?context=applications&icon=dns&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=dns&size=16',
-      'plObjectType'    => array('server','workstation','terminal','printer','component','phone','mobilePhone'),
+      'plObjectType'    => ['server','workstation','terminal','printer','component','phone','mobilePhone'],
       'plPriority'      => 5,
-      'plForeignKeys'  => array(
+      'plForeignKeys'  => [
         'fdDNSZoneDn' => 'dnsZone'
-      ),
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'zones' => array(
+    return [
+      'zones' => [
         'name'  => _('DNS zones'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new SelectAttribute(
               '', _('DNS zones for this host'),
               'fdDNSZoneDn', TRUE
             )
           )
-        )
-      ),
-      'soa' => array(
+        ]
+      ],
+      'soa' => [
         'name'  => _('SOA records'),
-        'attrs' => array()
-      ),
-      'records' => array(
+        'attrs' => []
+      ],
+      'records' => [
         'name'  => _('DNS Records'),
-        'class' => array('fullwidth'),
-        'attrs' => array()
-      ),
-    );
+        'class' => ['fullwidth'],
+        'attrs' => []
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -183,7 +183,7 @@ class dnsHost extends simplePlugin
     $this->reloadZoneChoices();
   }
 
-  protected function reloadZoneChoices()
+  protected function reloadZoneChoices ()
   {
     /* List DNS zones we can read */
     $this->zonesCache = objects::ls('dnsZone', NULL, NULL, '', TRUE);
@@ -202,7 +202,7 @@ class dnsHost extends simplePlugin
     $counts = array_count_values($this->zonesCache);
     foreach ($this->zonesCache as $dn => &$name) {
       if ($counts[$name] > 1) {
-        $name .= ' ('.preg_replace(array('/^[^,]+,/', '/,'.preg_quote($config->current['BASE']).'$/'), '', $dn).')';
+        $name .= ' ('.preg_replace(['/^[^,]+,/', '/,'.preg_quote($config->current['BASE']).'$/'], '', $dn).')';
       }
     }
     unset($name);
@@ -210,7 +210,7 @@ class dnsHost extends simplePlugin
     $this->attributesAccess['fdDNSZoneDn']->setSubmitForm('zoneChanged');
   }
 
-  function zoneChanged()
+  function zoneChanged ()
   {
     global $config;
     $ldap     = $config->get_ldap_link();
@@ -238,15 +238,15 @@ class dnsHost extends simplePlugin
         $cn = '';
       }
       $cn = preg_replace('/\$$/', '', $cn);
-      $this->attributesInfo['soa'] = array(
+      $this->attributesInfo['soa'] = [
         'name'  => _('Primary servers'),
-        'attrs' => array()
-      );
-      $this->attributesInfo['records'] = array(
+        'attrs' => []
+      ];
+      $this->attributesInfo['records'] = [
         'name'  => _('DNS Records'),
-        'class' => array('fullwidth'),
-        'attrs' => array()
-      );
+        'class' => ['fullwidth'],
+        'attrs' => []
+      ];
       foreach ($dnsZones as $dn) {
         if (isset($this->zonesCache[$dn])) {
           $name   = $this->zonesCache[$dn];
@@ -260,7 +260,7 @@ class dnsHost extends simplePlugin
           new DnsRecordsFilteredAttribute(
             $name, sprintf(_('The DNS records for zone "%s"'), $name),
             $attrId, $dn,
-            array(), 'dnsRecords'
+            [], 'dnsRecords'
           )
         );
 
@@ -291,7 +291,7 @@ class dnsHost extends simplePlugin
     }
   }
 
-  function load()
+  function load ()
   {
     if (!$this->loaded) {
       $this->zoneChanged();
@@ -299,7 +299,7 @@ class dnsHost extends simplePlugin
     }
   }
 
-  function execute()
+  function execute ()
   {
     $this->load();
     $smarty = get_smarty();
@@ -327,7 +327,7 @@ class dnsHost extends simplePlugin
               if (is_array($target)) {
                 $target = $target[0];
               }
-              $s_daemon->append_call('Ldap2Zone.start', $target, array('args' => array($zone)));
+              $s_daemon->append_call('Ldap2Zone.start', $target, ['args' => [$zone]]);
               if ($s_daemon->is_error()) {
                 msg_dialog::display(_('Could not run ldap2zone'), msgPool::siError($s_daemon->get_error()), ERROR_DIALOG);
               } else {
@@ -342,7 +342,7 @@ class dnsHost extends simplePlugin
     }
   }
 
-  function save()
+  function save ()
   {
     global $config;
     $errors = parent::save();
@@ -355,7 +355,7 @@ class dnsHost extends simplePlugin
     /* Update records if IP or CN changed */
     if ($this->initially_was_account) {
       $baseObject = $this->parent->getBaseObject();
-      $messages   = array();
+      $messages   = [];
       $oldcn      = preg_replace('/\$$/', '', $baseObject->attributeInitialValue('cn'));
       $oldips     = $baseObject->attributeInitialValue('ipHostNumber');
 
@@ -424,7 +424,7 @@ class dnsHost extends simplePlugin
     /* Remove records of our IP or CN */
     if ($this->initially_was_account) {
       $baseObject = $this->parent->getBaseObject();
-      $messages   = array();
+      $messages   = [];
       $oldcn      = preg_replace('/\$$/', '', $baseObject->attributeInitialValue('cn'));
       $oldips     = $baseObject->attributeInitialValue('ipHostNumber');
 
@@ -447,7 +447,7 @@ class dnsHost extends simplePlugin
     return parent::post_remove();
   }
 
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     parent::adapt_from_template($attrs, $skip);
     $this->reloadZoneChoices();
@@ -462,7 +462,7 @@ class dnsHost extends simplePlugin
 
   /* Record example: array('host', 'aRecord', '192.168.1.1', '')
    * Fields are relativeDomainName, record type, record content, reverse zone (for a/aaaa) */
-  function addRecord($zoneDn, array $record)
+  function addRecord ($zoneDn, array $record)
   {
     if (isset($this->zonesCache[$zoneDn])) {
       $zoneid = preg_replace('/[\/\-,.#:; =]/', '_', $zoneDn);
@@ -473,9 +473,9 @@ class dnsHost extends simplePlugin
     $this->attributesAccess[$attrId]->addValue($record);
   }
 
-  static function removeIpsFromZones(array $zoneDns, array $ips)
+  static function removeIpsFromZones (array $zoneDns, array $ips)
   {
-    $messages = array();
+    $messages = [];
     foreach ($zoneDns as $zoneDn) {
       try {
         $tabObject = objects::open($zoneDn, 'dnsZone');
@@ -495,9 +495,9 @@ class dnsHost extends simplePlugin
     return $messages;
   }
 
-  static function removeCnFromZones(array $zoneDns, $cn)
+  static function removeCnFromZones (array $zoneDns, $cn)
   {
-    $messages = array();
+    $messages = [];
     foreach ($zoneDns as $zoneDn) {
       try {
         $tabObject = objects::open($zoneDn, 'dnsZone');
diff --git a/dns/config/dns/class_dnsConfig.inc b/dns/config/dns/class_dnsConfig.inc
index 8ef25d9268..83f48d6cf5 100644
--- a/dns/config/dns/class_dnsConfig.inc
+++ b/dns/config/dns/class_dnsConfig.inc
@@ -20,27 +20,27 @@
 
 class dnsConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdDnsPluginConf");
+  var $objectclasses  = ["fdDnsPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("DNS configuration"),
       "plDescription"   => _("FusionDirectory dns plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DNS config'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('DNS RDN'), _('Branch in which DNS zones will be stored'),
             'fdDnsRDN', TRUE,
@@ -51,9 +51,9 @@ class dnsConfig extends simplePlugin
             'fdDNSFinalDot', FALSE,
             TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc b/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
index 8ee4bb4206..70c0078416 100644
--- a/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
+++ b/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
@@ -20,17 +20,17 @@
 
 class serviceDovecot extends simpleMailMethodService
 {
-  var $objectclasses = array('fdDovecotServer');
+  var $objectclasses = ['fdDovecotServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Dovecot (IMAP/POP3)'),
       'plDescription'   => _('Dovecot (IMAP/POP3)').' ('._('Services').')',
       'plIcon'          => 'geticon.php?context=applications&icon=dovecot&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -38,14 +38,14 @@ class serviceDovecot extends simpleMailMethodService
    */
   static function getAttributesInfo ()
   {
-      return array (
-      'connection' => array (
+      return  [
+      'connection' => [
         'name'  => _('Dovecot connection'),
-        'attrs' => array (
+        'attrs' => [
           new CompositeAttribute (
             _('Connect URL for Dovecot server'),
             'fdDovecotConnect',
-            array(
+            [
               new StringAttribute(
                 _('Hostname'), _('Hostname of the Dovecot server'),
                 'dovecotConnectURL', TRUE
@@ -58,23 +58,23 @@ class serviceDovecot extends simpleMailMethodService
               new SelectAttribute(
                 _('Option'), _('Options for contacting Dovecot server'),
                 'dovecotConnectOptions1', TRUE,
-                array('notls', 'tls', 'ssl'), 'notls'
+                ['notls', 'tls', 'ssl'], 'notls'
               ),
               new SelectAttribute(
                 _('Validate TLS/SSL Certificates'), _('Weither or not to validate server certificates on connection'),
                 'dovecotConnectOptions2', FALSE,
-                array('', '/validate-cert', '/novalidate-cert'), '',
-                array('', 'validate',       'no-validate')
+                ['', '/validate-cert', '/novalidate-cert'], '',
+                ['', 'validate',       'no-validate']
               )
-            ),
+            ],
             '/^{(.*):(\\d+)\\/([^\\/]+)(.*)}$/',
             '{%s:%d/%s%s}'
           ),
-        )
-      ),
-      'credentials' => array (
+        ]
+      ],
+      'credentials' => [
         'name'  => _('Master credentials'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Admin user'), _('Dovecot server admin user'),
             'fdDovecotAdmin', TRUE
@@ -88,19 +88,19 @@ class serviceDovecot extends simpleMailMethodService
             'fdDovecotMailDir', TRUE,
             '/var/mail'
           ),
-        )
-      ),
-      'options' => array (
+        ]
+      ],
+      'options' => [
         'name'  => _('Options'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Create the user folder via Argonaut'), _('Use argonaut to create the user mailbox on the Dovecot server'),
             'fdDovecotArgonautMkdir', TRUE,
             TRUE
           ),
-        )
-      )
-    );
+        ]
+      ]
+      ];
   }
 }
 ?>
diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 9e62ba9c71..7bcacc1e92 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -30,12 +30,12 @@ class mailMethodDovecot extends mailMethod
   protected $imap_handle  = NULL;
   protected $quota_loaded = FALSE;
 
-  public function is_connected()
+  public function is_connected ()
   {
     return (parent::is_connected() && $this->imap_handle);
   }
 
-  public function connect()
+  public function connect ()
   {
     global $config;
     parent::connect();
@@ -86,7 +86,7 @@ class mailMethodDovecot extends mailMethod
 
     /* Mailbox reachable? */
     if ($this->imap_handle === FALSE) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
       if ($cfg['mkdir']) {
         if ($this->argonautCreateFolder()) {
@@ -98,7 +98,7 @@ class mailMethodDovecot extends mailMethod
       if ($this->imap_handle === FALSE) {
         $this->error = imap_last_error();
 
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
+        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
           "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
 
         $this->connected = FALSE;
@@ -112,7 +112,7 @@ class mailMethodDovecot extends mailMethod
     return TRUE;
   }
 
-  protected function loadQuota()
+  protected function loadQuota ()
   {
     global $config;
     if (!$this->quotaEnabled()) {
@@ -157,7 +157,7 @@ class mailMethodDovecot extends mailMethod
       }
     } else {
       $this->error = imap_last_error();
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
@@ -173,7 +173,7 @@ class mailMethodDovecot extends mailMethod
   }
 
   /* Get quota usage in MB */
-  public function getQuotaUsage()
+  public function getQuotaUsage ()
   {
     parent::getQuotaUsage();
     if (!$this->quota_loaded) {
@@ -185,7 +185,7 @@ class mailMethodDovecot extends mailMethod
   /*
    * Create the folder for the user INBOX through Argonaut
    */
-  private function argonautCreateFolder()
+  private function argonautCreateFolder ()
   {
     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
       "<b>Attempting to create folder through Argonaut</b> on server :".$this->parent->gosaMailServer);
@@ -196,8 +196,8 @@ class mailMethodDovecot extends mailMethod
     $o_queue = new supportDaemon();
     if (!$o_queue->is_error()) {
       $o_queue->append_call('Dovecot.create_mailbox',
-                            array($cfg['mac']),
-                            array('args' => array($this->account_id, $this->parent->uidNumber, $this->parent->gidNumber)));
+                            [$cfg['mac']],
+                            ['args' => [$this->account_id, $this->parent->uidNumber, $this->parent->gidNumber]]);
     }
     /* If we got an error while connecting or sending the call */
     if ($o_queue->is_error()) {
@@ -215,24 +215,24 @@ class mailMethodDovecot extends mailMethod
     return FALSE;
   }
 
-  static public function get_server_list()
+  static public function get_server_list ()
   {
     global $config;
-    $serverList = array();
+    $serverList = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search ('(objectClass=fdDovecotServer)',
-                  array('cn', 'fdDovecotConnect', 'fdDovecotAdmin', 'fdDovecotPassword', 'fdDovecotArgonautMkdir', 'macAddress'));
+                  ['cn', 'fdDovecotConnect', 'fdDovecotAdmin', 'fdDovecotPassword', 'fdDovecotArgonautMkdir', 'macAddress']);
     while ($attrs = $ldap->fetch()) {
-      $serverList[$attrs['cn'][0]] = array(
+      $serverList[$attrs['cn'][0]] = [
         'server_dn' => $attrs['dn'],
         'connect'   => $attrs['fdDovecotConnect'][0],
         'admin'     => $attrs['fdDovecotAdmin'][0],
         'password'  => $attrs['fdDovecotPassword'][0],
         'mkdir'     => (isset($attrs['fdDovecotArgonautMkdir']) ? (strtoupper($attrs['fdDovecotArgonautMkdir'][0]) == 'TRUE') : TRUE),
         'mac'       => $attrs['macAddress'][0],
-      );
+      ];
     }
 
     return $serverList;
diff --git a/dsa/admin/dsa/class_dsaManagement.inc b/dsa/admin/dsa/class_dsaManagement.inc
index c8b6aa1044..0dc4571464 100644
--- a/dsa/admin/dsa/class_dsaManagement.inc
+++ b/dsa/admin/dsa/class_dsaManagement.inc
@@ -21,27 +21,27 @@
 class dsaManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('simpleSecurityObject');
+  protected $objectTypes  = ['simpleSecurityObject'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = TRUE;
   protected $baseMode               = TRUE;
 
   /* Return plugin information for acl handling */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('DSA'),
       'plDescription' => _('DSA management'),
       'plIcon'        => 'geticon.php?context=applications&icon=dsa&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 55,
-      'plCategory'    => array('dsa' => array('description'  => _('DSA'),
-                                              'objectClass'  => array('simpleSecurityObject'))),
-      'plManages'     => array('simpleSecurityObject'),
+      'plCategory'    => ['dsa' => ['description'  => _('DSA'),
+                                              'objectClass'  => ['simpleSecurityObject']]],
+      'plManages'     => ['simpleSecurityObject'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/dsa/admin/dsa/class_simpleSecurityObject.inc b/dsa/admin/dsa/class_simpleSecurityObject.inc
index dc556e6a79..7e9a55fcbe 100644
--- a/dsa/admin/dsa/class_simpleSecurityObject.inc
+++ b/dsa/admin/dsa/class_simpleSecurityObject.inc
@@ -22,34 +22,34 @@ class simpleSecurityObject extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('organizationalRole', 'top', 'simpleSecurityObject');
+  var $objectclasses = ['organizationalRole', 'top', 'simpleSecurityObject'];
 
   /* Return plugin information for acl handling */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Simple security object'),
       'plDescription' => _('Simple security object'),
-      'plObjectType'  => array('simpleSecurityObject' => array(
+      'plObjectType'  => ['simpleSecurityObject' => [
         'name'        => _('Simple security object'),
         'filter'      => 'objectClass=simpleSecurityObject',
         'aclCategory' => 'dsa',
         'ou'          => get_ou('dsaRDN'),
         'icon'        => 'geticon.php?context=applications&icon=dsa&size=16',
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('Simple security object'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('dsaRDN')),
           new HostNameAttribute (
             _('Entry name'), _('Account name'),
@@ -59,18 +59,18 @@ class simpleSecurityObject extends simplePlugin
             _('Description'), _('Description of this simple security object'),
             'description', FALSE
           ),
-        )
-      ),
-      'password' => array(
+        ]
+      ],
+      'password' => [
         'name'  => _('Change password'),
-        'attrs' => array(
+        'attrs' => [
           new UserPasswordAttribute (
             _('Password'), _('Password'),
             'userPassword', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 
diff --git a/dsa/config/dsa/class_dsaConfig.inc b/dsa/config/dsa/class_dsaConfig.inc
index 3528b05f9f..9f3bf44bb5 100644
--- a/dsa/config/dsa/class_dsaConfig.inc
+++ b/dsa/config/dsa/class_dsaConfig.inc
@@ -20,35 +20,35 @@
 
 class dsaConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdDsaPluginConf");
+  var $objectclasses  = ["fdDsaPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("DSA configuration"),
       "plDescription"   => _("FusionDirectory dsa plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('DSA'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('DSA RDN'), _('Branch in which Directory Service Account (dsa) will be stored'),
             'fdDSARDN', TRUE,
             'ou=dsa'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/ejbca/admin/ejbca/certificates/class_ejbcaCertificates.inc b/ejbca/admin/ejbca/certificates/class_ejbcaCertificates.inc
index ae62b22f50..d12a9ab823 100644
--- a/ejbca/admin/ejbca/certificates/class_ejbcaCertificates.inc
+++ b/ejbca/admin/ejbca/certificates/class_ejbcaCertificates.inc
@@ -21,40 +21,40 @@
 class ejbcaCertificates extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('fdEjbcaCertificates');
+  var $objectclasses = ['fdEjbcaCertificates'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('EJBCA'),
       'plDescription'   => _('Assign EJBCA certificates to a user'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user','server','workstation','terminal','printer','component','phone','mobilePhone'),
+      'plObjectType'    => ['user','server','workstation','terminal','printer','component','phone','mobilePhone'],
       'plIcon'          => 'geticon.php?context=applications&icon=ejbca&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=ejbca&size=16',
-      'plForeignKeys'   => array(
+      'plForeignKeys'   => [
         'fdEjbcaCertDN' => 'ejbcaCertificate',
-      ),
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('EJBCA certs'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new EjbcaUserCertsAttribute(
             '', _('Certificates associated to this object'),
             'fdEjbcaCertDN', TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
index 642a9c8a5f..d0ea992c08 100644
--- a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
+++ b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
@@ -21,9 +21,9 @@
 
 class ejbcaCertificateSelectManagement extends simpleSelectManagement
 {
-  protected $objectTypes = array('ejbcaCertificate');
+  protected $objectTypes = ['ejbcaCertificate'];
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'userCertificate');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'userCertificate'];
 }
 
 class EjbcaCertSelectDialog extends GenericSelectDialog
@@ -35,7 +35,7 @@ class EjbcaUserCertsAttribute extends GenericDialogAttribute
 {
   protected $dialogClass      = 'EjbcaCertSelectDialog';
 
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
   }
@@ -92,12 +92,12 @@ class EjbcaUserCertsAttribute extends GenericDialogAttribute
     // Updates and get display values
     $displays = $this->getDisplayValues();
     foreach ($displays as $key => $display_item) {
-      $fields = array(
-        array('string'  => $display_item['cn'][0])
-      );
+      $fields = [
+        ['string'  => $display_item['cn'][0]]
+      ];
       $img = '<input type="image" src="geticon.php?context=actions&icon=download&size=16" name="'.$id.'_get_'.$key.'" class="center"/>';
       $img .= '<input type="image" src="geticon.php?context=actions&icon=edit-delete&size=16" name="'.$id.'_del_'.$key.'" class="center"/>';
-      $fields[] = array('html' => $img, 'attach' => 'style="border-right:0px;width:32px;"');
+      $fields[] = ['html' => $img, 'attach' => 'style="border-right:0px;width:32px;"'];
       $div->AddEntry($fields);
     }
     $smarty = get_smarty();
@@ -105,10 +105,10 @@ class EjbcaUserCertsAttribute extends GenericDialogAttribute
     return '{$div_'.$id.'}'."\n";
   }
 
-  public function htmlIds()
+  public function htmlIds ()
   {
     $id = $this->getHtmlId();
-    $ids = array('add'.$id.'_dialog');
+    $ids = ['add'.$id.'_dialog'];
     $nb_values = count($this->value);
     for ($i = 0; $i < $nb_values; ++$i) {
       $ids[] = $id.'_del_'.$i;
diff --git a/ejbca/admin/ejbca/class_ejbcaCertificate.inc b/ejbca/admin/ejbca/class_ejbcaCertificate.inc
index 2c88ef3df1..9f294c79cf 100644
--- a/ejbca/admin/ejbca/class_ejbcaCertificate.inc
+++ b/ejbca/admin/ejbca/class_ejbcaCertificate.inc
@@ -22,30 +22,30 @@ class ejbcaCertificate extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array();
+  var $objectclasses = [];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('EJBCA certificate'),
       'plDescription' => _('EJBCA certificate'),
-      'plObjectType'  => array('ejbcaCertificate' => array(
+      'plObjectType'  => ['ejbcaCertificate' => [
         'name'        => _('EJBCA certificate'),
         'filter'      => 'userCertificate;binary=*',
         'ou'          => get_ou('ejbcaRDN'),
         'icon'        => 'geticon.php?context=applications&icon=ejbca&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Certificate'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('ejbcaRDN')),
           new HostNameAttribute (
             _('Name'), _('Common name'),
@@ -56,24 +56,24 @@ class ejbcaCertificate extends simplePlugin
             'userCertificate;binary', TRUE,
             '.der'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
-  function renderAttributes($readOnly = FALSE)
+  function renderAttributes ($readOnly = FALSE)
   {
     parent::renderAttributes(TRUE);
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/ejbca/admin/ejbca/class_ejbcaManagement.inc b/ejbca/admin/ejbca/class_ejbcaManagement.inc
index 3ec5158e08..84fe74bea2 100644
--- a/ejbca/admin/ejbca/class_ejbcaManagement.inc
+++ b/ejbca/admin/ejbca/class_ejbcaManagement.inc
@@ -20,25 +20,25 @@
 
 class ejbcaManagement extends simpleManagement
 {
-  protected $objectTypes      = array('ejbcaCertificate');
+  protected $objectTypes      = ['ejbcaCertificate'];
   protected $autoActions      = FALSE;
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'userCertificate');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'userCertificate'];
 
   public static $skipSnapshots = TRUE;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('EJBCA'),
       'plDescription' => _('EJBCA certificates management'),
       'plIcon'        => 'geticon.php?context=applications&icon=ejbca&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 50,
-      'plManages'     => array('ejbcaCertificate'),
+      'plManages'     => ['ejbcaCertificate'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
@@ -46,18 +46,18 @@ class ejbcaManagement extends simpleManagement
     parent::configureHeadpage();
     unset($this->headpage->xmlData['actionmenu']['action'][0]);
     $downloadAction =
-      array(
+      [
         'name'  => 'download',
         'type'  => 'entry',
         'image' => 'geticon.php?context=actions&amp;icon=download&amp;size=16',
         'label' => _('Download'),
         'acl'   => 'ejbcaCertificate/ejbcaCertificate[r]',
-      );
+      ];
     array_unshift($this->headpage->xmlData['actiontriggers']['action'], $downloadAction);
     $this->registerAction('download', 'downloadEntry');
   }
 
-  function downloadEntry($action, array $targets)
+  function downloadEntry ($action, array $targets)
   {
     $entry = $this->headpage->getEntry($targets[0]);
     session::set('binary', $entry['userCertificate;binary'][0]);
diff --git a/ejbca/config/ejbca/class_ejbcaConfig.inc b/ejbca/config/ejbca/class_ejbcaConfig.inc
index b64fb5ca15..b54d7c81d2 100644
--- a/ejbca/config/ejbca/class_ejbcaConfig.inc
+++ b/ejbca/config/ejbca/class_ejbcaConfig.inc
@@ -20,35 +20,35 @@
 
 class ejbcaConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdEjbcaPluginConf");
+  var $objectclasses  = ["fdEjbcaPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("EJBCA plugin configuration"),
       "plDescription"   => _("FusionDirectory ejbca plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('EJBCA plugin'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('EJBCA RDN'), _('Branch in which ejbca certificates are stored'),
             'fdEjbcaRDN', TRUE,
             'ou=certificates'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/fai/admin/fai/class_faiDiskEntry.inc b/fai/admin/fai/class_faiDiskEntry.inc
index 1a2abc9555..eaca1e4754 100644
--- a/fai/admin/fai/class_faiDiskEntry.inc
+++ b/fai/admin/fai/class_faiDiskEntry.inc
@@ -30,7 +30,7 @@ class PartitionDialog extends GenericDialog
 
   protected $plugin;
 
-  function __construct($simplePlugin, $attribute, $partition = array())
+  function __construct ($simplePlugin, $attribute, $partition = [])
   {
     $this->attribute  = $attribute;
     $this->plugin     = $simplePlugin;
@@ -80,7 +80,7 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
 {
   protected $dialogClass = 'PartitionDialog';
 
-  function __construct ($label, $description, $ldapName, $values = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
   }
@@ -94,22 +94,22 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
   {
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
-    $opt = array();
+    $opt = [];
     if (isset($value['bootable']) && $value['bootable']) {
       $opt[] = _('bootable');
     }
     if (!empty($value['preserve'])) {
       $opt[] = _('preserve').':'.$value['preserve'];
     }
-    return array(
+    return [
       $value['description'],
       $value['FAIpartitionType'],
       $value['FAImountPoint'],
       $value['FAIpartitionSize'],
       implode(', ', $opt),
-    );
+    ];
   }
 
   /* Only allow to remove partitions if they are not in use elsewhere */
@@ -118,7 +118,7 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
     /* Create a list of all partitions that are used in
      *  lvm, raid or cryptsetup compilations.
      */
-    $list = array();
+    $list = [];
     foreach ($this->plugin->parent->disks as $disk) {
       if ($disk['FAIdiskType'] == 'lvm') {
         foreach ($disk['FAIlvmDevice'] as $partname) {
@@ -153,7 +153,7 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
   }
 
   /* Bypass delPostValue check for edition */
-  protected function handleEdit($key)
+  protected function handleEdit ($key)
   {
     $this->editingValue = $this->value[$key];
     unset($this->postValue[$key]);
@@ -161,7 +161,7 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
   }
 
   /* Add or update a partition */
-  function updatePartition($part)
+  function updatePartition ($part)
   {
     if (!isset($part['FAIpartitionNr']) || ($part['FAIpartitionNr'] == 'undefined')) {
       $part['FAIpartitionNr'] = $this->get_free_partition_number();
@@ -199,14 +199,14 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
   }
 
   /* Add a partition back */
-  function addPartition($part)
+  function addPartition ($part)
   {
     $this->value[$part['FAIpartitionNr']] = $part;
   }
 
-  function get_free_partition_number()
+  function get_free_partition_number ()
   {
-    $used = array();
+    $used = [];
     foreach ($this->value as $key => $part) {
       $used[$key] = $part['FAIpartitionNr'];
     }
@@ -222,23 +222,23 @@ class faiDiskEntry extends simplePlugin
 {
   protected $is_edit = FALSE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Partition table entry'),
       'plDescription'   => _('FAI partition table entry'),
-      'plCategory'      => array('fai'),
+      'plCategory'      => ['fai'],
       /* No ACL, we use the one for FAIpartitions */
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Device'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Name'), _('Disk name'),
             'cn', TRUE,
@@ -252,39 +252,39 @@ class faiDiskEntry extends simplePlugin
           new SelectAttribute (
             _('fstab key'), _('Key to use in fstab file'),
             'fstabkey', TRUE,
-            array('device', 'label', 'uuid'), '',
-            array(_('Device'), _('Label'), _('UUID'))
+            ['device', 'label', 'uuid'], '',
+            [_('Device'), _('Label'), _('UUID')]
           ),
           new SelectAttribute (
             _('Disk label'), _('Disk label'),
             'disklabel', TRUE,
-            array('msdos', 'gpt'), '',
-            array('MSDOS', 'GPT')
+            ['msdos', 'gpt'], '',
+            ['MSDOS', 'GPT']
           ),
           new BooleanAttribute (
             _('Random init'), _('Initialise all encrypted partitions with random data'),
             'randinit', FALSE
           ),
           new HiddenAttribute ('FAIdiskType')
-        )
-      ),
-      'partitions' => array(
+        ]
+      ],
+      'partitions' => [
         'name'  => _('Partition entries'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SetAttribute (
             new SelectAttribute (
               _('Combined physical partitions'), _('Physical partitions combined in this LVM volume'),
               'lvmDevices', FALSE,
-              array()
+              []
             )
           ),
           new DiskPartitionsAttribute (
             '', _('Partitions in this class'), 'partitions'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn, $parent, $disk, $type)
@@ -390,7 +390,7 @@ class faiDiskEntry extends simplePlugin
     }
   }
 
-  protected function loadAttributes()
+  protected function loadAttributes ()
   {
     foreach ($this->attributesAccess as &$attribute) {
       $attribute->setInLdap(FALSE);
@@ -400,7 +400,7 @@ class faiDiskEntry extends simplePlugin
     parent::loadAttributes();
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $acl    = $this->aclGetPermissions('FAIpartitions');
@@ -418,9 +418,9 @@ class faiDiskEntry extends simplePlugin
     }
   }
 
-  function save()
+  function save ()
   {
-    $tmp = array();
+    $tmp = [];
     $tmp['cn']          = $this->cn;
     $tmp['description'] = $this->description;
 
@@ -449,15 +449,15 @@ class faiDiskEntry extends simplePlugin
 
     /* Assemble flags */
     if ($this->FAIdiskType == 'disk') {
-      $tmp['FAIdiskOption'] = array('fstabkey:'.$this->fstabkey, 'disklabel:'.$this->disklabel);
+      $tmp['FAIdiskOption'] = ['fstabkey:'.$this->fstabkey, 'disklabel:'.$this->disklabel];
     } elseif ($this->FAIdiskType == 'cryptsetup') {
       if ($this->randinit) {
-        $tmp['FAIdiskOption'] = array('randinit');
+        $tmp['FAIdiskOption'] = ['randinit'];
       } else {
-        $tmp['FAIdiskOption'] = array();
+        $tmp['FAIdiskOption'] = [];
       }
     } else {
-      $tmp['FAIdiskOption'] = array('fstabkey:'.$this->fstabkey);
+      $tmp['FAIdiskOption'] = ['fstabkey:'.$this->fstabkey];
     }
 
     /* If hdd name has changed, tell partitionTable to rename it */
@@ -489,7 +489,7 @@ class faiDiskEntry extends simplePlugin
       }
 
       /* Unset non valid attributes */
-      foreach (array('bootable','preserve','resize','FAIdiskType') as $attr) {
+      foreach (['bootable','preserve','resize','FAIdiskType'] as $attr) {
         if (isset($tmp['partitions'][$id][$attr])) {
           unset($tmp['partitions'][$id][$attr]);
         }
@@ -516,10 +516,10 @@ class faiDiskEntry extends simplePlugin
   /* Returns a list of available partitions that are useable in
    *  lvm disk setups.
    */
-  function getAvailablePartitions()
+  function getAvailablePartitions ()
   {
-    $may  = array();
-    $used = array();
+    $may  = [];
+    $used = [];
 
     foreach ($this->parent->disks as $disk) {
       // Skip ourselves
@@ -549,7 +549,7 @@ class faiDiskEntry extends simplePlugin
     }
 
     // Check which of the available disks are unused.
-    $ret = array();
+    $ret = [];
     foreach ($may as $val) {
       if (!in_array($val, $used)) {
         $ret[$val] = $val;
@@ -559,9 +559,9 @@ class faiDiskEntry extends simplePlugin
   }
 
   /* Checks the disk combinations */
-  function check_disks($disk_to_add = array())
+  function check_disks ($disk_to_add = [])
   {
-    $msgs = array();
+    $msgs = [];
 
     /* Check 'disk' combinations.
      *  - There can be four primary partitions.
@@ -569,7 +569,7 @@ class faiDiskEntry extends simplePlugin
      *     three 'primary' partitions.
      */
     if ($this->FAIdiskType == 'disk') {
-      $types = array('logical' => array(), 'primary' => array());
+      $types = ['logical' => [], 'primary' => []];
       $types[$disk_to_add['FAIpartitionType']][$disk_to_add['FAIpartitionNr']] = 1;
       foreach ($this->partitions as $part) {
         $types[$part['FAIpartitionType']][$part['FAIpartitionNr']] = 1;
diff --git a/fai/admin/fai/class_faiHook.inc b/fai/admin/fai/class_faiHook.inc
index d27137201d..00389d3159 100644
--- a/fai/admin/fai/class_faiHook.inc
+++ b/fai/admin/fai/class_faiHook.inc
@@ -20,33 +20,33 @@
 
 class faiHook extends faiSimplePluginClass
 {
-  var $objectclasses = array('top','FAIclass','FAIhook');
+  var $objectclasses = ['top','FAIclass','FAIhook'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Hook'),
       'plDescription' => _('FAI hook'),
-      'plObjectType'  => array(
-        'faiHook' => array(
+      'plObjectType'  => [
+        'faiHook' => [
           'name'        => _('FAI hook'),
           'filter'      => 'objectClass=FAIhook',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiHookRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-hook&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Variables class name'),
             'cn', TRUE
@@ -55,16 +55,16 @@ class faiHook extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'vars' => array(
+        ]
+      ],
+      'vars' => [
         'name'  => _('Hooks'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SubNodesAttribute (
             '', _('Variables in this class'),
-            'hooks', array('FAIhookEntry','FAIclass','top'),
-            array(
+            'hooks', ['FAIhookEntry','FAIclass','top'],
+            [
               new StringAttribute (
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
@@ -76,24 +76,24 @@ class faiHook extends faiSimplePluginClass
               new SelectAttribute (
                 _('Task'), _('Task to run'),
                 'FAItask', TRUE,
-                array('chboot','configure','debconf','error','extrbase',
+                ['chboot','configure','debconf','error','extrbase',
                        'faiend','finish','install','instsoft','mirror',
                        'mountdisks','partition','prepareapt','repository',
-                       'savelog','setup','softupdate','sysinfo','updatebase')
+                       'savelog','setup','softupdate','sysinfo','updatebase']
               ),
               new FileTextAreaAttribute (
                 _('Script'), _('The script of this hook'),
                 'FAIscript', TRUE,
                 '.sh'
               ),
-            ),
+            ],
             FALSE, /* no order */
-            array(),
+            [],
             TRUE /* edit enabled */
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -104,7 +104,7 @@ class faiHook extends faiSimplePluginClass
     $this->attributesAccess['hooks']->setLinearRendering(FALSE);
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
diff --git a/fai/admin/fai/class_faiManagement.inc b/fai/admin/fai/class_faiManagement.inc
index f167d2bb3b..9330f8e151 100644
--- a/fai/admin/fai/class_faiManagement.inc
+++ b/fai/admin/fai/class_faiManagement.inc
@@ -22,7 +22,7 @@ class faiListing extends listing
 {
   private $builded = FALSE;
 
-  function __construct($data)
+  function __construct ($data)
   {
     parent::__construct($data);
     // Instanciate base selector
@@ -32,7 +32,7 @@ class faiListing extends listing
   /*!
    * \brief Refresh the bases list
    */
-  function refreshBasesList()
+  function refreshBasesList ()
   {
     if (!$this->builded) {
       return;
@@ -53,7 +53,7 @@ class faiBaseSelector extends baseSelector
 {
   protected $select;
 
-  function __construct($bases, $base = '')
+  function __construct ($bases, $base = '')
   {
     parent::__construct($bases, $base);
     $this->select = new SelectAttribute(
@@ -64,7 +64,7 @@ class faiBaseSelector extends baseSelector
     $this->select->setSubmitForm(TRUE);
   }
 
-  function setBases($bases)
+  function setBases ($bases)
   {
     $this->pathMapping = $bases;
 
@@ -73,7 +73,7 @@ class faiBaseSelector extends baseSelector
     }
   }
 
-  function update($force = FALSE)
+  function update ($force = FALSE)
   {
     if (!is_object($this->select)) {
       return TRUE;
@@ -103,7 +103,7 @@ class faiBaseSelector extends baseSelector
 class faiManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate', 'faiProfile');
+  protected $objectTypes  = ['faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate', 'faiProfile'];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
@@ -111,20 +111,20 @@ class faiManagement extends simpleManagement
 
   protected $headpageClass = 'faiListing';
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('FAI'),
       'plDescription' => _('Manage FAI software packages and deployment recipes'),
       'plIcon'        => 'geticon.php?context=applications&icon=fai&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 20,
-      'plCategory'    => array('fai' => array('description'  => _('FAI'),
-                                              'objectClass'  => array('FAIclass'))),
-      'plManages'     => array('faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate', 'faiProfile'),
+      'plCategory'    => ['fai' => ['description'  => _('FAI'),
+                                              'objectClass'  => ['FAIclass']]],
+      'plManages'     => ['faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate', 'faiProfile'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function execute ()
@@ -147,14 +147,14 @@ class faiManagement extends simpleManagement
 
   /*! \brief   Returns a list of all releases for useable for drop down boxes.
    */
-  static function getReleaseList()
+  static function getReleaseList ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=FAIbranch)', array('ou','FAIstate'));
+    $ldap->search('(objectClass=FAIbranch)', ['ou','FAIstate']);
 
-    $list = array();
+    $list = [];
 
     while ($release = $ldap->fetch()) {
       preg_match('/[^,],ou=([^,]+),/', $release['dn'], $m);
diff --git a/fai/admin/fai/class_faiPackage.inc b/fai/admin/fai/class_faiPackage.inc
index 82feff730c..de65f60f7b 100644
--- a/fai/admin/fai/class_faiPackage.inc
+++ b/fai/admin/fai/class_faiPackage.inc
@@ -46,7 +46,7 @@ class PackageConfigDialog extends GenericDialog
   protected $post_cancel = 'CancelObjectConfig';
   protected $post_finish = 'SaveObjectConfig';
 
-  function __construct($simplePlugin, &$attribute, $key, $pkg_config)
+  function __construct ($simplePlugin, &$attribute, $key, $pkg_config)
   {
     $this->attribute  = $attribute;
     $this->dialog     = new $this->dialogClass($simplePlugin->dn, $key, $simplePlugin->FAIdebianRelease, $pkg_config);
@@ -92,10 +92,10 @@ class PackageConfigDialog extends GenericDialog
 class PackagesAttribute extends DialogOrderedArrayAttribute
 {
   protected $dialogClass        = 'PackageSelectDialog';
-  protected $buffer             = array();
-  protected $configuredPackages = array();
+  protected $buffer             = [];
+  protected $configuredPackages = [];
 
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = array(), $acl = "")
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = "")
   {
     OrderedArrayAttribute::__construct(
       new StringAttribute($label, $description, $ldapName, $required, "", $acl),
@@ -105,19 +105,19 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     );
   }
 
-  function addValue($value)
+  function addValue ($value)
   {
     $this->value[preg_replace('/\-$/', '', $value)] = $value;
   }
 
-  function readValue($value)
+  function readValue ($value)
   {
-    return array(preg_replace('/\-$/', '', $value), $value);
+    return [preg_replace('/\-$/', '', $value), $value];
   }
 
   function getFilterBlackList ()
   {
-    return array('PACKAGE' => array_keys($this->value));
+    return ['PACKAGE' => array_keys($this->value)];
   }
 
   function renderButtons ()
@@ -132,28 +132,28 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     return $buttons;
   }
 
-  public function htmlIds()
+  public function htmlIds ()
   {
     $id = $this->getHtmlId();
-    return array_merge(array('add'.$id), parent::htmlIds());
+    return array_merge(['add'.$id], parent::htmlIds());
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
     if (!isset($this->buffer[$value])) {
       $this->genPkgs();
     }
     if (isset($this->buffer[$value])) {
-      return array(
+      return [
         $this->buffer[$value]['PACKAGE'],
         $this->buffer[$value]['VERSION'],
         base64_decode($this->buffer[$value]['DESCRIPTION']),
-      );
+      ];
     }
-    return array($value, '', '');
+    return [$value, '', ''];
   }
 
-  protected function genRowIcons($key, $value)
+  protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
     list ($img, $nbicons) = parent::genRowIcons($key, $value);
@@ -176,10 +176,10 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     }
     $nbicons += 2;
 
-    return array ($img, $nbicons);
+    return  [$img, $nbicons];
   }
 
-  protected function handleAddAndEditValue()
+  protected function handleAddAndEditValue ()
   {
     $id = $this->getHtmlId();
 
@@ -188,7 +188,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
         $key = preg_replace('/^'.$id.'_config_/', '', $name);
         $key = base64_decode(preg_replace('/_[xy]$/', '', $key));
         /* Open configuration dialog */
-        $pkg_config = array();
+        $pkg_config = [];
         if (isset($this->configuredPackages[$key])) {
           $pkg_config = $this->configuredPackages[$key];
         }
@@ -211,7 +211,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     parent::handleAddAndEditValue();
   }
 
-  function packageConfigured($packageConfig)
+  function packageConfigured ($packageConfig)
   {
     $this->configuredPackages = array_merge($this->configuredPackages, $packageConfig);
   }
@@ -221,8 +221,8 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
   {
     /* First delete all old nodes */
     $ldap->cd($this->plugin->dn);
-    $ldap->search('objectClass=FAIdebconfInfo', array('dn'), 'one');
-    $delete = array();
+    $ldap->search('objectClass=FAIdebconfInfo', ['dn'], 'one');
+    $delete = [];
     while ($attrs = $ldap->fetch()) {
       $delete[] = $attrs['dn'];
     }
@@ -233,7 +233,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     /* Then add our values */
     foreach ($this->configuredPackages as $pkgname => $pkgvars) {
       foreach ($pkgvars as $varname => $varinfos) {
-        $attrs = array('objectClass' => 'FAIdebconfInfo');
+        $attrs = ['objectClass' => 'FAIdebconfInfo'];
         $attrs['FAIpackage']           = $pkgname;
         $attrs['FAIvariable']          = $varname;
         $attrs['FAIvariableType']      = $varinfos['Type'];
@@ -257,7 +257,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
   /*! \brief  Reload the list of cached packages.
       @return Returns the currently cached list of packages.
    */
-  function genPkgs()
+  function genPkgs ()
   {
     if (empty($this->plugin->FAIdebianRelease)) {
       return;
@@ -268,7 +268,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
       return;
     }
 
-    $attrs = array('distribution','package','version','section','description','timestamp','hastemplate');
+    $attrs = ['distribution','package','version','section','description','timestamp','hastemplate'];
 
     // packages names that are not already in the buffer
     $packages = array_diff_key($this->value, $this->buffer);
@@ -299,7 +299,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
           }
         }
       }
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count($packages), "$release done, packages left");
+      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count ($packages), "$release done, packages left");
     }
 
     if (count($packages) > 0) {
@@ -312,7 +312,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     $this->genConfiguredPackages();
   }
 
-  function genConfiguredPackages()
+  function genConfiguredPackages ()
   {
     global $config;
     /* Fetch all package configurations from ldap */
@@ -328,10 +328,10 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
     /* Search for configuration objects */
     $ldap = $config->get_ldap_link();
     $ldap->cd($this->plugin->dn);
-    $ldap->search($PackageFilter, array("FAIvariable","FAIvariableType",
-          "FAIvariableContent","FAIpackage","FAIdebianSection","FAIstate"));
+    $ldap->search($PackageFilter, ["FAIvariable","FAIvariableType",
+          "FAIvariableContent","FAIpackage","FAIdebianSection","FAIstate"]);
 
-    $this->configuredPackages = array();
+    $this->configuredPackages = [];
 
     /* Walk through configurations and append them to our list of ConfiguredPackages */
     while ($attr = $ldap->fetch()) {
@@ -342,16 +342,16 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
         }
       }
 
-      $tmp = array();
+      $tmp = [];
       $tmp['Name']  = $attr['FAIvariable'][0];
       $tmp['Type']  = $attr['FAIvariableType'][0];
       $tmp['Save']  = TRUE;
 
       if (isset($attr['FAIvariableContent'][0])) {
-        if (!in_array($attr['FAIvariableType'], array("multiselect"))) {
+        if (!in_array($attr['FAIvariableType'], ["multiselect"])) {
           $tmp['Value'] = $attr['FAIvariableContent'][0];
         } else {
-          $tmp['Value'] = array();
+          $tmp['Value'] = [];
           unset($attr['FAIvariableContent']['count']);
           foreach ($attr['FAIvariableContent'] as $attr) {
             $tmp['Value'][] = $attr;
@@ -368,33 +368,33 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
 
 class faiPackage extends faiSimplePluginClass
 {
-  var $objectclasses = array('top','FAIclass','FAIpackageList','FAIrepository');
+  var $objectclasses = ['top','FAIclass','FAIpackageList','FAIrepository'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Package'),
       'plDescription' => _('FAI Package list'),
-      'plObjectType'  => array(
-        'faiPackage' => array(
+      'plObjectType'  => [
+        'faiPackage' => [
           'name'        => _('FAI Package'),
           'filter'      => 'objectClass=FAIpackageList',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiPackageRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-packages&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Variables class name'),
             'cn', TRUE
@@ -403,11 +403,11 @@ class faiPackage extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'repo' => array(
+        ]
+      ],
+      'repo' => [
         'name'  => _('Repository'),
-        'attrs' => array(
+        'attrs' => [
           new DisplayLDAPAttribute (
             _('Release'), _('Debian release concerned'),
             'FAIdebianRelease', FALSE
@@ -419,25 +419,25 @@ class faiPackage extends faiSimplePluginClass
           new SelectAttribute (
             _('Install method'), _('Install method to use for this package list'),
             'FAIinstallMethod', TRUE,
-            array('install', 'ninstall', 'remove',
+            ['install', 'ninstall', 'remove',
               'dselect-upgrade', 'taskinst', 'taskrm',
               'hold', 'clean', 'aptitude', 'aptitude-r',
-              'pending', 'dpkgc', 'yumi'),
+              'pending', 'dpkgc', 'yumi'],
             'aptitude'
           ),
-        )
-      ),
-      'packages' => array(
+        ]
+      ],
+      'packages' => [
         'name'  => _('Packages'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new PackagesAttribute (
             '', _('Packages in this class'),
             'FAIpackage', TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -454,7 +454,7 @@ class faiPackage extends faiSimplePluginClass
     session::set('packageSelect_Release', $this->FAIdebianRelease);
   }
 
-  function updateRelease()
+  function updateRelease ()
   {
     /* Assemble release name */
     $tmp = preg_replace('/'.preg_quote(get_ou('faiBaseRDN'), '/').'.*$/i', '', $this->base);
@@ -470,7 +470,7 @@ class faiPackage extends faiSimplePluginClass
     }
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
@@ -484,10 +484,10 @@ class faiPackage extends faiSimplePluginClass
     return $errors;
   }
 
-  function getServerInfos()
+  function getServerInfos ()
   {
     $servs    = serviceRepository::getServers();
-    $ret      = array();
+    $ret      = [];
     foreach ($servs as $serv) {
       if (isset($ret[$serv['FAI_RELEASE']])) {
         $ret[$serv['FAI_RELEASE']] = array_merge($ret[$serv['FAI_RELEASE']], $serv['SECTIONS']);
diff --git a/fai/admin/fai/class_faiPackageConfiguration.inc b/fai/admin/fai/class_faiPackageConfiguration.inc
index b711f5ebd5..2ad5410df2 100644
--- a/fai/admin/fai/class_faiPackageConfiguration.inc
+++ b/fai/admin/fai/class_faiPackageConfiguration.inc
@@ -27,19 +27,19 @@ class faiPackageConfiguration extends simplePlugin
   protected $debconfAttributesTypes;
   protected $generatedDebconfAttributes;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('FAI package configuration'),
       'plDescription' => _('Configure debconf options of a package'),
-      'plObjectType'  => array('faiPackageConfiguration' => array(
+      'plObjectType'  => ['faiPackageConfiguration' => [
         'name'        => _('FAI package configuration'),
         'aclCategory' => 'fai',
         'icon'        => 'geticon.php?context=applications&icon=fai&size=16',
-      )),
+      ]],
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
   /*! \brief  Configure a FAI package entry.
@@ -48,13 +48,13 @@ class faiPackageConfiguration extends simplePlugin
       @param  String  The release name (e.g. edge)
       @param  Array   The current package configuration.
    */
-  function __construct($dn, $packageName, $release, $values)
+  function __construct ($dn, $packageName, $release, $values)
   {
     $this->packageName  = $packageName;
 
     /* Read pkg debconf info from supportDaemon */
     $q = new supportDaemon();
-    $ret = $q->FAI_get_packages($release, array('package','template'), array($this->packageName), 0, 1, TRUE);
+    $ret = $q->FAI_get_packages($release, ['package','template'], [$this->packageName], 0, 1, TRUE);
     if ($q->is_error()) {
       msg_dialog::display(_('Infrastructure service'), msgPool::siError($q->get_error()), ERROR_DIALOG);
     }
@@ -73,23 +73,23 @@ class faiPackageConfiguration extends simplePlugin
     }
   }
 
-  protected function loadAttributesFromTemplate($tpl)
+  protected function loadAttributesFromTemplate ($tpl)
   {
-    $attributesInfo = array(
-      'main' => array(
+    $attributesInfo = [
+      'main' => [
         'name'  => sprintf(_('Debconf information for package "%s"'), $this->packageName),
-        'attrs' => array()
-      ),
-    );
+        'attrs' => []
+      ],
+    ];
 
     $lines                  = explode("\n", $tpl);
-    $infos                  = array();
+    $infos                  = [];
     $langcode               = session::global_get('lang').'.UTF-8';
     $in_description         = FALSE;
     $got_local_description  = FALSE;
 
-    $this->debconfAttributesTypes     = array();
-    $this->generatedDebconfAttributes = array();
+    $this->debconfAttributesTypes     = [];
+    $this->generatedDebconfAttributes = [];
 
     foreach ($lines as $line) {
       /* Reset description flag */
@@ -102,7 +102,7 @@ class faiPackageConfiguration extends simplePlugin
         if (!empty($infos)) {
           $this->insertDebconfAttribute($attributesInfo, $infos);
         }
-        $infos = array();
+        $infos = [];
         $infos['Name']     = trim(preg_replace('/^Template: /', '', $line));
         $infos['Default']  = '';
 
@@ -178,7 +178,7 @@ class faiPackageConfiguration extends simplePlugin
     return $attributesInfo;
   }
 
-  protected function insertDebconfAttribute(&$attributesInfo, $infos)
+  protected function insertDebconfAttribute (&$attributesInfo, $infos)
   {
     switch ($infos['Type']) {
       case 'boolean':
@@ -252,7 +252,7 @@ class faiPackageConfiguration extends simplePlugin
     $this->debconfAttributesTypes[$infos['Name']] = $infos['Type'];
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $acl    = $this->aclGetPermissions('FAIpartitions');
@@ -264,15 +264,15 @@ class faiPackageConfiguration extends simplePlugin
       '</p>';
   }
 
-  function save()
+  function save ()
   {
-    $tmp = array();
+    $tmp = [];
     foreach ($this->attributesAccess as $name => $attribute) {
-      $tmp[$this->packageName][$name] = array(
+      $tmp[$this->packageName][$name] = [
         'Name'  => $name,
         'Value' => $attribute->computeLdapValue(),
         'Type'  => $this->debconfAttributesTypes[$name],
-      );
+      ];
     }
 
     return $tmp;
diff --git a/fai/admin/fai/class_faiPartition.inc b/fai/admin/fai/class_faiPartition.inc
index 7dcd000851..b2dd475710 100644
--- a/fai/admin/fai/class_faiPartition.inc
+++ b/fai/admin/fai/class_faiPartition.inc
@@ -25,12 +25,12 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
   {
     parent::__construct (
       $description, $ldapName,
-      array(
+      [
         new SelectAttribute(
           '', _('Type of sizing - fixed, dynamic or all remaining space'),
           'FAIpartitionSizeType', TRUE,
-          array('fixed', 'dynamic', 'remaining'), '',
-          array(_('Fixed'), _('Dynamic'), _('Remaining space'))
+          ['fixed', 'dynamic', 'remaining'], '',
+          [_('Fixed'), _('Dynamic'), _('Remaining space')]
         ),
         new IntAttribute(
           '', '',
@@ -40,8 +40,8 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
         new SelectAttribute(
           '', '',
           'FAIpartitionSizeStart_unit', TRUE,
-          array('KB','MB','GB','TB','PB','%'), 'MB',
-          array(_('KB'),_('MB'),_('GB'),_('TB'),_('PB'),'%')
+          ['KB','MB','GB','TB','PB','%'], 'MB',
+          [_('KB'),_('MB'),_('GB'),_('TB'),_('PB'),'%']
         ),
         new IntAttribute(
           '-', '',
@@ -51,10 +51,10 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
         new SelectAttribute(
           '', '',
           'FAIpartitionSizeStop_unit', TRUE,
-          array('KB','MB','GB','TB','PB','%'), 'MB',
-          array(_('KB'),_('MB'),_('GB'),_('TB'),_('PB'),'%')
+          ['KB','MB','GB','TB','PB','%'], 'MB',
+          [_('KB'),_('MB'),_('GB'),_('TB'),_('PB'),'%']
         )
-      ),
+      ],
       '',
       '',
       $acl, $label
@@ -64,33 +64,33 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
     $this->updateAttributes();
   }
 
-  function readValues($value)
+  function readValues ($value)
   {
     if (preg_match('/^([0-9]{1,})(KB|MB|GB|TB|PB|%)$/', $value, $m)) {
       // Fixed
-      return array(
+      return [
         'fixed',
         $m[1],$m[2],
         0,'',
-      );
+      ];
     } elseif (preg_match('/^([0-9]{1,})(KB|MB|GB|TB|PB|%)-([0-9]{1,})(KB|MB|GB|TB|PB|%)$/', $value)) {
       // Dynamic range
-      return array(
+      return [
         'dynamic',
         $m[1],$m[2],
         $m[3],$m[4],
-      );
+      ];
     } elseif (preg_match('/^0?\-$/', $value)) {
       // Dynamic range
-      return array(
+      return [
         'remaining',
         0,'',
         0,'',
-      );
+      ];
     }
   }
 
-  protected function updateAttributes()
+  protected function updateAttributes ()
   {
     switch ($this->attributes[0]->getValue()) {
       case 'remaining':
@@ -130,14 +130,14 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
     }
     unset($attribute);
     if ($this->attributes[0]->getValue() == 'dynamic') {
-      $mp = array(
+      $mp = [
         '%'  => 1,
         'KB' => pow(1024, 0),
         'MB' => pow(1024, 1),
         'GB' => pow(1024, 2),
         'TB' => pow(1024, 3),
         'PB' => pow(1024, 4)
-      );
+      ];
       $res1 = $this->attributes[1]->getValue() * $mp[$this->attributes[2]->getValue()];
       $res2 = $this->attributes[3]->getValue() * $mp[$this->attributes[4]->getValue()];
       if ($res1 > $res2) {
@@ -146,7 +146,7 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
     }
   }
 
-  function applyPostValue()
+  function applyPostValue ()
   {
     parent::applyPostValue();
     $this->updateAttributes();
@@ -164,7 +164,7 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
     $this->updateAttributes();
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     if ($values[0] == 'remaining') {
       return '0-';
@@ -187,7 +187,7 @@ class FaiMountPointAttribute extends StringAttribute
     );
   }
 
-  function setPostValue($value)
+  function setPostValue ($value)
   {
     if ($value == '') {
       $value = '-';
@@ -198,43 +198,43 @@ class FaiMountPointAttribute extends StringAttribute
 
 class FaiRaidDevices extends OrderedArrayAttribute
 {
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
     $value = parent::getAttributeArrayValue($key, $value);
-    return array(
+    return [
       $value[0],
       ($value[1] ? 'spare' : ''),
       ($value[2] ? 'missing' : '')
-    );
+    ];
   }
 }
 
 class faiPartition extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Partition entry'),
       'plDescription'   => _('FAI partition entry'),
-      'plCategory'      => array('fai'),
+      'plCategory'      => ['fai'],
       /* No ACL, we use the one for FAIpartitions */
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Partition'),
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('FAIdiskType'),
           new HiddenAttribute ('FAIpartitionNr', FALSE, 'undefined'),
           new SelectAttribute (
             _('Type'), _('Partition type'),
             'FAIpartitionType', TRUE,
-            array('primary', 'logical'), '',
-            array(_('Primary'), _('Logical'))
+            ['primary', 'logical'], '',
+            [_('Primary'), _('Logical')]
           ),
           new StringAttribute (
             _('Name'), _('Partition name'),
@@ -250,17 +250,17 @@ class faiPartition extends simplePlugin
             _('Size'), _('Size of this partition'),
             'FAIpartitionSize', FALSE
           ),
-        )
-      ),
-      'flags' => array(
+        ]
+      ],
+      'flags' => [
         'name'  => _('Flags'),
-        'attrs' => array(
+        'attrs' => [
           new CommaListAttribute(
             'raidDevices',
             new FaiRaidDevices(
               new CompositeAttribute(
                 '', 'raidDevices_composite',
-                array(
+                [
                   new SelectAttribute(
                     '', _('Combined physical partitions in this RAID'),
                     'raidDevices_select', FALSE
@@ -277,14 +277,14 @@ class faiPartition extends simplePlugin
                     FALSE, '',
                     ':missing', ''
                   )
-                ),
+                ],
                 '/^([^:]+)(:spare|)(:missing|)$/',
                 '%s%s%s',
                 '',
                 ''
               ),
               FALSE,
-              array(),
+              [],
               TRUE
             )
           ),
@@ -307,29 +307,29 @@ class faiPartition extends simplePlugin
           new SelectAttribute (
             _('Preserve'), _('Does the partition need to be preserved'),
             'preserve', FALSE,
-            array('','always','reinstall'), '',
-            array(_('Never'),_('Always'),_('Reinstall'))
+            ['','always','reinstall'], '',
+            [_('Never'),_('Always'),_('Reinstall')]
           ),
-        )
-      ),
-      'fs' => array(
+        ]
+      ],
+      'fs' => [
         'name'  => _('Filesystem'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Filesystem'), _('The filesystem this partition should be formatted with'),
             'FAIfsType', TRUE,
-            array('swap','vfat','ext2','ext3','ext4','reiserfs','xfs','btrfs','-'), 'ext4',
-            array(_('swap'),_('fat32'),_('ext2'),_('ext3'),_('ext4'),_('reiser fs'),_('xfs'),_('btrfs'),_('LVM/RAID'))
+            ['swap','vfat','ext2','ext3','ext4','reiserfs','xfs','btrfs','-'], 'ext4',
+            [_('swap'),_('fat32'),_('ext2'),_('ext3'),_('ext4'),_('reiser fs'),_('xfs'),_('btrfs'),_('LVM/RAID')]
           ),
           new FaiMountPointAttribute (
             _('Mount point'), _('Mount point for this partition'),
             'FAImountPoint', TRUE
           ),
-        )
-      ),
-      'options' => array(
+        ]
+      ],
+      'options' => [
         'name'  => _('Options'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Mount options'), _('Filesystem mount options'),
             'FAImountOptions', FALSE,
@@ -343,17 +343,17 @@ class faiPartition extends simplePlugin
             _('Tune options'), _('Filesystem tune options'),
             'FAIfsTuneOptions', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  function __construct($object, $parent, $type)
+  function __construct ($object, $parent, $type)
   {
     parent::__construct(NULL, NULL, $parent);
 
     $this->attributesAccess['FAIfsType']->setManagedAttributes(
-      array('disable' => array ('swap' => array ('FAImountPoint')))
+      ['disable' => ['swap' => ['FAImountPoint']]]
     );
 
     $this->FAIdiskType  = $type;
@@ -362,7 +362,7 @@ class faiPartition extends simplePlugin
       /* Check if we should be able to add primary partitions */
       $disablePrimary = FALSE;
       if (!$object || ($object['FAIpartitionType'] == 'logical')) {
-        $types = array('logical' => array(), 'primary' => array());
+        $types = ['logical' => [], 'primary' => []];
         foreach ($this->parent->partitions as $part) {
           $types[$part['FAIpartitionType']][$part['FAIpartitionNr']] = 1;
         }
@@ -373,28 +373,28 @@ class faiPartition extends simplePlugin
         }
       }
       if ($disablePrimary) {
-        $types = array('logical' => _('Logical'));
+        $types = ['logical' => _('Logical')];
       } else {
-        $types  = array(
+        $types  = [
           'primary' => _('Primary'),
           'logical' => _('Logical')
-        );
+        ];
       }
     } elseif ($this->FAIdiskType == 'raid') {
-      $types  = array(
+      $types  = [
         'raid0' => _('RAID 0'),
         'raid1' => _('RAID 1'),
         'raid5' => _('RAID 5'),
         'raid6' => _('RAID 6')
-      );
+      ];
     } elseif ($this->FAIdiskType == 'cryptsetup') {
-      $types  = array(
+      $types  = [
         'luks'  => _('LUKS'),
         'swap'  => _('Swap'),
         'tmp'   => _('tmp'),
-      );
+      ];
     } else {
-      $types = array();
+      $types = [];
     }
     $this->attributesAccess['FAIpartitionType']->setChoices(array_keys($types), array_values($types));
     if (empty($types)) {
@@ -462,7 +462,7 @@ class faiPartition extends simplePlugin
     }
   }
 
-  protected function loadAttributes()
+  protected function loadAttributes ()
   {
     foreach ($this->attributesAccess as &$attribute) {
       $attribute->setAcl('FAIpartitions');
@@ -471,7 +471,7 @@ class faiPartition extends simplePlugin
     parent::loadAttributes();
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $acl    = $this->aclGetPermissions('FAIpartitions');
@@ -489,7 +489,7 @@ class faiPartition extends simplePlugin
     }
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     if ($this->FAIfsType == 'swap') {
@@ -497,7 +497,7 @@ class faiPartition extends simplePlugin
     }
   }
 
-  function check()
+  function check ()
   {
     $messages = parent::check();
 
@@ -513,9 +513,9 @@ class faiPartition extends simplePlugin
     return $messages;
   }
 
-  function save()
+  function save ()
   {
-    $ret = array();
+    $ret = [];
     foreach ($this->attributes as $attr) {
       $ret[$attr] = $this->$attr;
     }
@@ -538,9 +538,9 @@ class faiPartition extends simplePlugin
   /* Returns a list of all partitions that are useable
    *  for raid arrays.
    */
-  function getPartitionList()
+  function getPartitionList ()
   {
-    $may = $used = array();
+    $may = $used = [];
     foreach ($this->parent->parent->disks as $disk) {
       // Skip ourselves
       if ($disk['cn'] == $this->parent->cn) {
@@ -568,7 +568,7 @@ class faiPartition extends simplePlugin
     }
 
     // Check which of the available disks are unused.
-    $ret = array();
+    $ret = [];
     foreach ($may as $val) {
       if (!in_array($val, $used)) {
         $ret[$val] = $val;
diff --git a/fai/admin/fai/class_faiPartitionTable.inc b/fai/admin/fai/class_faiPartitionTable.inc
index e9608974e4..326580cd53 100644
--- a/fai/admin/fai/class_faiPartitionTable.inc
+++ b/fai/admin/fai/class_faiPartitionTable.inc
@@ -28,7 +28,7 @@ class DiskEntryDialog extends GenericDialog
 
   protected $initialDialogValue = NULL;
 
-  function __construct($simplePlugin, $attribute, $disk = array(), $diskType = 'disk')
+  function __construct ($simplePlugin, $attribute, $disk = [], $diskType = 'disk')
   {
     $this->attribute = $attribute;
     if (isset($disk['FAIdiskType'])) {
@@ -78,7 +78,7 @@ class DiskEntryDialog extends GenericDialog
 class PartitionTableAttribute extends DialogOrderedArrayAttribute
 {
   protected $dialogClass = 'DiskEntryDialog';
-  protected $partitionAttributes  = array(
+  protected $partitionAttributes  = [
     'cn','description',
     'FAIpartitionNr',     'FAIpartitionSize',
     'FAIpartitionType',   'FAIpartitionFlags',
@@ -86,14 +86,14 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
     'FAIfsType',
     'FAIfsCreateOptions', 'FAIfsTuneOptions',
     'FAIlvmDevice'
-  );
+  ];
 
   protected $diskFilter = '(&(objectClass=FAIclass)(objectClass=FAIpartitionDisk))';
   protected $partFilter = '(&(objectClass=FAIclass)(objectClass=FAIpartitionEntry))';
 
   public $disks;
 
-  function __construct ($label, $description, $ldapName, $values = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
     $this->disks = &$this->value;
@@ -105,14 +105,14 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
     $buttons = $this->renderInputField(
       'submit',
       'add'.$id.'_dialog',
-      array('value' => _('Add disk'))
+      ['value' => _('Add disk')]
     );
 
     if (!isset($this->value['raid'])) {
       $buttons .= $this->renderInputField(
         'submit',
         'add'.$id.'_dialog_raid',
-        array('value' => _('Add RAID'))
+        ['value' => _('Add RAID')]
       );
     }
 
@@ -120,7 +120,7 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
       $buttons .= $this->renderInputField(
         'submit',
         'add'.$id.'_dialog_lvm',
-        array('value' => _('Add LVM'))
+        ['value' => _('Add LVM')]
       );
     }
 
@@ -128,7 +128,7 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
       $buttons .= $this->renderInputField(
         'submit',
         'add'.$id.'_dialog_cryptsetup',
-        array('value' => _('Add cryptsetup'))
+        ['value' => _('Add cryptsetup')]
       );
     }
 
@@ -142,13 +142,13 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
       parent::loadPostValue();
       parent::applyPostValue();
       if (isset($_POST['add'.$id.'_dialog'])) {
-        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, array(), 'disk'));
+        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, [], 'disk'));
       } elseif (isset($_POST['add'.$id.'_dialog_raid'])) {
-        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, array(), 'raid'));
+        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, [], 'raid'));
       } elseif (isset($_POST['add'.$id.'_dialog_lvm'])) {
-        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, array(), 'lvm'));
+        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, [], 'lvm'));
       } elseif (isset($_POST['add'.$id.'_dialog_cryptsetup'])) {
-        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, array(), 'cryptsetup'));
+        $this->plugin->openDialog(new $this->dialogClass($this->plugin, $this, [], 'cryptsetup'));
       }
     }
   }
@@ -160,14 +160,14 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
       /* Fetch disks */
       $ldap = $config->get_ldap_link();
       $ldap->cd($attrs['dn']);
-      $ldap->search($this->diskFilter, array('*'), 'one');
-      $this->value = array();
+      $ldap->search($this->diskFilter, ['*'], 'one');
+      $this->value = [];
       while ($subattrs = $ldap->fetch()) {
-        $diskInfos = array(
+        $diskInfos = [
           'description' => '',
           'FAIdiskType' => 'disk'
-        );
-        foreach (array('cn', 'description','FAIdiskType') as $attr) {
+        ];
+        foreach (['cn', 'description','FAIdiskType'] as $attr) {
           if (isset($subattrs[$attr][0])) {
             $diskInfos[$attr] = $subattrs[$attr][0];
           }
@@ -177,7 +177,7 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
         }
 
         // Get disk options, without 'count' index.
-        $diskInfos['FAIdiskOption'] = array();
+        $diskInfos['FAIdiskOption'] = [];
         if (isset($subattrs['FAIdiskOption'])) {
           for ($i = 0; $i < $subattrs['FAIdiskOption']['count']; $i++) {
             $diskInfos['FAIdiskOption'][] = $subattrs['FAIdiskOption'][$i];
@@ -194,17 +194,17 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
 
         $diskInfos['dn']                              = $subattrs['dn'];
         $this->value[$diskInfos['cn']]                = $diskInfos;
-        $this->value[$diskInfos['cn']]['partitions']  = array();
+        $this->value[$diskInfos['cn']]['partitions']  = [];
       }
       /* Fetch partitions */
       foreach ($this->value as $name => $disk) {
         $ldap->cd($disk['dn']);
-        $ldap->search($this->partFilter, array('*'), 'one');
+        $ldap->search($this->partFilter, ['*'], 'one');
         while ($obj = $ldap->fetch()) {
-          $partitionInfos = array(
+          $partitionInfos = [
             'description'       => '',
             'FAIpartitionSize'  => '',
-          );
+          ];
           foreach ($this->partitionAttributes as $attr) {
             if (isset($obj[$attr][0])) {
               $partitionInfos[$attr] = $obj[$attr][0];
@@ -228,8 +228,8 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
   {
     /* First delete all old nodes */
     $ldap->cd($this->plugin->dn);
-    $ldap->search($this->diskFilter, array('dn'), 'one');
-    $delete = array();
+    $ldap->search($this->diskFilter, ['dn'], 'one');
+    $delete = [];
     while ($attrs = $ldap->fetch()) {
       $delete[] = $attrs['dn'];
     }
@@ -242,14 +242,14 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
     /* Then add our values */
     foreach ($this->value as $val) {
       $attrs = $val;
-      $attrs['objectClass'] = array('top','FAIClass','FAIpartitionDisk');
+      $attrs['objectClass'] = ['top','FAIClass','FAIpartitionDisk'];
       unset($attrs['partitions']);
       $disk_dn = $this->compute_disk_dn($val);
       $this->ldap_add($ldap, $disk_dn, $attrs);
       /* disk added, now add partition */
       foreach ($val['partitions'] as $part) {
         $attrs = $part;
-        $attrs['objectClass'] = array('top','FAIClass','FAIpartitionEntry');
+        $attrs['objectClass'] = ['top','FAIClass','FAIpartitionEntry'];
         $dn = $this->compute_part_dn($part, $disk_dn);
         $this->ldap_add($ldap, $dn, $attrs);
       }
@@ -281,14 +281,14 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
-    return array(
+    return [
       $value['FAIdiskType'],
       $value['cn'],
       $value['description'],
       count($value['partitions']),
-    );
+    ];
   }
 
   function diskConfigured ($disk)
@@ -303,33 +303,33 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
 
 class faiPartitionTable extends faiSimplePluginClass
 {
-  var $objectclasses    = array('top','FAIclass','FAIpartitionTable');
+  var $objectclasses    = ['top','FAIclass','FAIpartitionTable'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Partition table'),
       'plDescription' => _('FAI partition table'),
-      'plObjectType'  => array(
-        'faiPartitionTable' => array(
+      'plObjectType'  => [
+        'faiPartitionTable' => [
           'name'        => _('FAI partition table'),
           'filter'      => 'objectClass=FAIpartitionTable',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiPartitionTableRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-partitiontable&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Partition table class name'),
             'cn', TRUE
@@ -338,21 +338,21 @@ class faiPartitionTable extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'table' => array(
+        ]
+      ],
+      'table' => [
         'name'  => _('Discs'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new HiddenAttribute (
             'FAIpartitionMethod', FALSE, 'setup-storage'
           ),
           new PartitionTableAttribute (
             '', _('Partitions in this class'), 'FAIpartitions'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -362,7 +362,7 @@ class faiPartitionTable extends faiSimplePluginClass
     $this->attributesAccess['cn']->setUnique(TRUE);
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
@@ -376,9 +376,9 @@ class faiPartitionTable extends faiSimplePluginClass
     return $errors;
   }
 
-  function getUsedDiskNames()
+  function getUsedDiskNames ()
   {
-    $ret = array();
+    $ret = [];
     foreach ($this->FAIpartitions as $disk) {
       $ret[] = $disk['cn'];
     }
diff --git a/fai/admin/fai/class_faiProfile.inc b/fai/admin/fai/class_faiProfile.inc
index d870789b1e..89bb05c86b 100644
--- a/fai/admin/fai/class_faiProfile.inc
+++ b/fai/admin/fai/class_faiProfile.inc
@@ -22,32 +22,32 @@ class faiProfile extends faiSimplePluginClass
 {
   var $mainTab = TRUE;
 
-  var $objectclasses    = array('top','FAIclass','FAIprofile');
+  var $objectclasses    = ['top','FAIclass','FAIprofile'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Profile'),
       'plDescription' => _('FAI profile'),
-      'plObjectType'  => array(
-        'faiProfile' => array(
+      'plObjectType'  => [
+        'faiProfile' => [
           'name'        => _('FAI Profile'),
           'filter'      => 'objectClass=FAIprofile',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiProfileRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-profile&size=16'
-        )
-      ),
+        ]
+      ],
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Partition table class name'),
             'cn', TRUE
@@ -66,9 +66,9 @@ class faiProfile extends faiSimplePluginClass
             ),
             ' '
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -78,8 +78,8 @@ class faiProfile extends faiSimplePluginClass
     $this->attributesAccess['cn']->setUnique(TRUE);
 
     /* Build filter */
-    $types    = array('faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate');
-    $choices  = array();
+    $types    = ['faiVariable', 'faiHook', 'faiScript', 'faiPackage', 'faiPartitionTable', 'faiTemplate'];
+    $choices  = [];
     foreach ($types as $type) {
       $choices = array_unique(array_merge($choices, objects::ls($type, NULL, $this->base)));
     }
diff --git a/fai/admin/fai/class_faiScript.inc b/fai/admin/fai/class_faiScript.inc
index 0668adcc9c..06db57d873 100644
--- a/fai/admin/fai/class_faiScript.inc
+++ b/fai/admin/fai/class_faiScript.inc
@@ -22,33 +22,33 @@ class faiScript extends faiSimplePluginClass
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('top','FAIclass','FAIscript');
+  var $objectclasses = ['top','FAIclass','FAIscript'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Script'),
       'plDescription' => _('FAI script'),
-      'plObjectType'  => array(
-        'faiScript' => array(
+      'plObjectType'  => [
+        'faiScript' => [
           'name'        => _('FAI script'),
           'filter'      => 'objectClass=FAIscript',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiScriptRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-script&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Variables class name'),
             'cn', TRUE
@@ -57,16 +57,16 @@ class faiScript extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'vars' => array(
+        ]
+      ],
+      'vars' => [
         'name'  => _('Scripts'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SubNodesAttribute (
             '', _('Variables in this class'),
-            'scripts', array('FAIscriptEntry','FAIclass','top'),
-            array(
+            'scripts', ['FAIscriptEntry','FAIclass','top'],
+            [
               new StringAttribute (
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
@@ -85,14 +85,14 @@ class faiScript extends faiSimplePluginClass
                 'FAIscript', TRUE,
                 '.sh'
               ),
-            ),
+            ],
             FALSE, /* no order */
-            array(),
+            [],
             TRUE /* edit enabled */
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -103,7 +103,7 @@ class faiScript extends faiSimplePluginClass
     $this->attributesAccess['scripts']->setLinearRendering(FALSE);
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
diff --git a/fai/admin/fai/class_faiSimplePluginClass.inc b/fai/admin/fai/class_faiSimplePluginClass.inc
index 388f0fb5a1..4822b5c14b 100644
--- a/fai/admin/fai/class_faiSimplePluginClass.inc
+++ b/fai/admin/fai/class_faiSimplePluginClass.inc
@@ -36,7 +36,7 @@ class faiSimplePluginClass extends simplePlugin
   }
 
   /* Check supplied data */
-  function check()
+  function check ()
   {
     global $config;
     /* Call common method to give check the hook */
@@ -55,7 +55,7 @@ class faiSimplePluginClass extends simplePlugin
     return $message;
   }
 
-  function compute_dn()
+  function compute_dn ()
   {
     return 'cn='.ldap_escape($this->cn, '', LDAP_ESCAPE_DN).','.get_ou(get_class($this).'RDN').$this->base;
   }
diff --git a/fai/admin/fai/class_faiTemplate.inc b/fai/admin/fai/class_faiTemplate.inc
index f065665684..24bd4e3db0 100644
--- a/fai/admin/fai/class_faiTemplate.inc
+++ b/fai/admin/fai/class_faiTemplate.inc
@@ -28,14 +28,14 @@ class TemplateFileDialog extends GenericSimplePluginDialog
 class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
 {
   protected $dialogClass = 'TemplateFileDialog';
-  protected $templateAttributes = array(
+  protected $templateAttributes = [
     'cn','description',
     'FAItemplatePath','FAItemplateFile','FAIowner','FAImode'
-  );
+  ];
 
   protected $templateFilter = '(&(objectClass=FAIclass)(objectClass=FAItemplateEntry))';
 
-  function __construct ($label, $description, $ldapName, $values = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
   }
@@ -46,13 +46,13 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
     if (isset($attrs['dn'])) {
       $ldap = $config->get_ldap_link();
       $ldap->cd($attrs['dn']);
-      $ldap->search($this->templateFilter, array('*'), 'one');
-      $this->value = array();
+      $ldap->search($this->templateFilter, ['*'], 'one');
+      $this->value = [];
       while ($subattrs = $ldap->fetch()) {
         $attrsWrapper = new stdClass();
         $attrsWrapper->attrs = $subattrs;
         $dialog = new faiTemplateEntry($subattrs['dn'], $attrsWrapper);
-        $value = array();
+        $value = [];
         foreach ($this->templateAttributes as $attribute) {
           $value[$attribute] = $dialog->$attribute;
         }
@@ -73,8 +73,8 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
   {
     /* First delete all old nodes */
     $ldap->cd($this->plugin->dn);
-    $ldap->search($this->templateFilter, array('dn'), 'one');
-    $delete = array();
+    $ldap->search($this->templateFilter, ['dn'], 'one');
+    $delete = [];
     while ($attrs = $ldap->fetch()) {
       $delete[] = $attrs['dn'];
     }
@@ -84,7 +84,7 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
     /* Then add our values */
     foreach ($this->value as $val) {
       $attrs = $val;
-      $attrs['objectClass'] = array('top','FAIClass','FAItemplateEntry');
+      $attrs['objectClass'] = ['top','FAIClass','FAItemplateEntry'];
       $sub_dn = $this->compute_sub_dn($val);
       $this->ldap_add($ldap, $sub_dn, $attrs);
     }
@@ -110,13 +110,13 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
     }
   }
 
-  protected function getAttributeArrayValue($key, $value)
+  protected function getAttributeArrayValue ($key, $value)
   {
-    return array(
+    return [
       $value['cn'],
       $value['description'],
       humanReadableSize(strlen($value['FAItemplateFile'])),
-    );
+    ];
   }
 
   function check ()
@@ -125,7 +125,7 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
     if (!empty($error)) {
       return $error;
     } else {
-      $used_cn = array();
+      $used_cn = [];
       foreach ($this->value as $value) {
         if (isset($used_cn[$value['cn']])) {
           return sprintf(_('There are several files with the same path: %s'), $value['cn']);
@@ -138,33 +138,33 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
 
 class faiTemplate extends faiSimplePluginClass
 {
-  var $objectclasses    = array('top','FAIclass','FAItemplate');
+  var $objectclasses    = ['top','FAIclass','FAItemplate'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Template'),
       'plDescription' => _('FAI template'),
-      'plObjectType'  => array(
-        'faiTemplate' => array(
+      'plObjectType'  => [
+        'faiTemplate' => [
           'name'        => _('FAI template'),
           'filter'      => 'objectClass=FAItemplate',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiTemplateRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-template&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Template class name'),
             'cn', TRUE
@@ -173,21 +173,21 @@ class faiTemplate extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'table' => array(
+        ]
+      ],
+      'table' => [
         'name'  => _('Template files'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new FAITemplateFilesAttribute (
             '', _('Template files in this class'), 'templateFiles'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
diff --git a/fai/admin/fai/class_faiTemplateEntry.inc b/fai/admin/fai/class_faiTemplateEntry.inc
index 1daeb9cf10..ce7f0cd068 100644
--- a/fai/admin/fai/class_faiTemplateEntry.inc
+++ b/fai/admin/fai/class_faiTemplateEntry.inc
@@ -23,7 +23,7 @@ class AccessRightsAttribute extends CompositeAttribute
 {
   function __construct ($label, $description, $ldapName, $acl = "")
   {
-    $attributes = array(
+    $attributes = [
       'u4' => new BooleanAttribute('', '', 'ur', FALSE, TRUE),
       'u2' => new BooleanAttribute('', '', 'uw', FALSE, TRUE),
       'u1' => new BooleanAttribute('', '', 'ue', FALSE),
@@ -36,12 +36,12 @@ class AccessRightsAttribute extends CompositeAttribute
       'o2' => new BooleanAttribute('', '', 'ow', FALSE),
       'o1' => new BooleanAttribute('', '', 'oe', FALSE),
       's1' => new BooleanAttribute('', '', 'os', FALSE),
-    );
+    ];
     parent::__construct ($description, $ldapName, $attributes, FALSE, FALSE, $acl, $label);
     $this->setLinearRendering(TRUE);
   }
 
-  function renderFormInput()
+  function renderFormInput ()
   {
     foreach ($this->attributes as &$attribute) {
       $attribute->setDisabled($this->disabled);
@@ -90,11 +90,11 @@ class AccessRightsAttribute extends CompositeAttribute
     return $display;
   }
 
-  function readValues($value)
+  function readValues ($value)
   {
     $tmode  = "$value ";
-    $m      = array();
-    foreach (array('s', 'u', 'g', 'o') as $type) {
+    $m      = [];
+    foreach (['s', 'u', 'g', 'o'] as $type) {
       $current  = substr($tmode, 0, 1);
       $tmode    = preg_replace('/^./', '', $tmode);
       $nr       = 1;
@@ -103,17 +103,17 @@ class AccessRightsAttribute extends CompositeAttribute
         $nr += $nr;
       }
     }
-    $values = array();
+    $values = [];
     foreach (array_keys($this->attributes) as $name) {
       $values[] = $m[$name];
     }
     return $values;
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     $tmode  = '';
-    foreach (array('s', 'u', 'g', 'o') as $type) {
+    foreach (['s', 'u', 'g', 'o'] as $type) {
       $nr   = 1;
       $dest = 0;
       while ($nr < 5) {
@@ -130,14 +130,14 @@ class AccessRightsAttribute extends CompositeAttribute
 
 class faiTemplateEntry extends simplePlugin
 {
-  var $objectclasses  = array('top', 'FAIclass', 'FAItemplateEntry');
+  var $objectclasses  = ['top', 'FAIclass', 'FAItemplateEntry'];
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new PathAttribute (
             _('File path'), _('Complete absolute template file path and name'),
             'cn', TRUE
@@ -149,19 +149,19 @@ class faiTemplateEntry extends simplePlugin
           new HiddenAttribute (
             'FAItemplatePath', TRUE
           ),
-        )
-      ),
-      'template' => array(
+        ]
+      ],
+      'template' => [
         'name'  => _('Template attributes'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new FileTextAreaAttribute (
             _('Template file content'), _('Content of the template file'),
             'FAItemplateFile', TRUE
           ),
           new CompositeAttribute (
             _('Owner and group of the file'), 'FAIowner',
-            array(
+            [
               new StringAttribute (
                 _('Owner'), _('File owner'),
                 'owner', TRUE,
@@ -172,7 +172,7 @@ class faiTemplateEntry extends simplePlugin
                 'group', TRUE,
                 'root'
               ),
-            ),
+            ],
             '/^([^.]+)\.([^.]+)$/',
             '%s.%s'
           ),
@@ -180,12 +180,12 @@ class faiTemplateEntry extends simplePlugin
             _('Access'), _('Access rights'),
             'FAImode'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  function save_object()
+  function save_object ()
   {
     if (isset($_FILES[$this->attributesAccess['FAItemplateFile']->getHtmlId()]['name'])) {
       $name = $_FILES[$this->attributesAccess['FAItemplateFile']->getHtmlId()]['name'];
diff --git a/fai/admin/fai/class_faiVariable.inc b/fai/admin/fai/class_faiVariable.inc
index c984c0743e..2f7f5fc580 100644
--- a/fai/admin/fai/class_faiVariable.inc
+++ b/fai/admin/fai/class_faiVariable.inc
@@ -20,33 +20,33 @@
 
 class faiVariable extends faiSimplePluginClass
 {
-  var $objectclasses = array('top','FAIclass','FAIvariable');
+  var $objectclasses = ['top','FAIclass','FAIvariable'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Variable'),
       'plDescription' => _('FAI variable'),
-      'plObjectType'  => array(
-        'faiVariable' => array(
+      'plObjectType'  => [
+        'faiVariable' => [
           'name'        => _('FAI variable'),
           'filter'      => 'objectClass=FAIvariable',
           'aclCategory' => 'fai',
           'ou'          => get_ou('faiVariableRDN'),
           'icon'        => 'geticon.php?context=applications&icon=fai-variable&size=16'
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Class name'), _('Variables class name'),
             'cn', TRUE
@@ -55,16 +55,16 @@ class faiVariable extends faiSimplePluginClass
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
-        )
-      ),
-      'vars' => array(
+        ]
+      ],
+      'vars' => [
         'name'  => _('Variables'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SubNodesAttribute (
             '', _('Variables in this class'),
-            'variables', array('FAIvariableEntry','FAIclass','top'),
-            array(
+            'variables', ['FAIvariableEntry','FAIclass','top'],
+            [
               new StringAttribute (
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
@@ -77,14 +77,14 @@ class faiVariable extends faiSimplePluginClass
                 _('Content'), _('The content of the variable'),
                 'FAIvariableContent', TRUE
               ),
-            ),
+            ],
             FALSE, /* no order */
-            array(),
+            [],
             TRUE /* edit enabled */
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -95,7 +95,7 @@ class faiVariable extends faiSimplePluginClass
     $this->attributesAccess['variables']->setLinearRendering(FALSE);
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
diff --git a/fai/admin/fai/packageSelect/class_filterFAIPackages.inc b/fai/admin/fai/packageSelect/class_filterFAIPackages.inc
index f144105884..00cb8fddcd 100644
--- a/fai/admin/fai/packageSelect/class_filterFAIPackages.inc
+++ b/fai/admin/fai/packageSelect/class_filterFAIPackages.inc
@@ -22,19 +22,19 @@
 class filterFAIPackages extends filterLDAPBlacklist
 {
 
-  static function query($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = '')
+  static function query ($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = '')
   {
-    $customs = array();
+    $customs = [];
     foreach ($parent->customs as $custom) {
       if ($parent->elementValues[$custom] == 'true') {
         $customs[] = $custom;
       }
     }
     $filter     = preg_replace('/\*/', '', $filter);
-    $pkgs       = array();
+    $pkgs       = [];
     $q          = new supportDaemon();
-    $filter     = array("$filter");
-    $attrs      = array('distribution', 'package', 'version', 'section', 'timestamp');
+    $filter     = ["$filter"];
+    $attrs      = ['distribution', 'package', 'version', 'section', 'timestamp'];
     $release    = session::get('packageSelect_Release');
     $ret        = $q->FAI_get_packages($release, $attrs, $filter, 0, 200);
     if ($q->is_error()) {
@@ -44,20 +44,20 @@ class filterFAIPackages extends filterLDAPBlacklist
         $ret2 = $q->FAI_get_packages($customs[$i], $attrs, $filter, 0, 200 - count($ret));
         if ($q->is_error()) {
           msg_dialog::display(_('Infrastructure service'), msgPool::siError($q->get_error()), ERROR_DIALOG);
-          return array();
+          return [];
         }
         $ret = array_merge($ret, $ret2);
       }
       foreach ($ret as $attr) {
         $attr['objectClass'] = 'FAKE_OC__FaiPackage';
 
-        $item = array();
+        $item = [];
         $item['dn']     = 'dn='.$attr['PACKAGE'].','.$attr['DISTRIBUTION'].','.$base;
         $item['count']  = 0;
         foreach ($attr as $key => $value) {
           $item['count']++;
           $item[] = $key;
-          $item[$key] = array('count' => 1, $value);
+          $item[$key] = ['count' => 1, $value];
         }
         $pkgs[] = $item;
       }
@@ -66,14 +66,14 @@ class filterFAIPackages extends filterLDAPBlacklist
     return static::filterByBlacklist($pkgs);
   }
 
-  function save()
+  function save ()
   {
     $act = $this->detectPostActions();
     $headpage = $this->getHeadpage();
     if (!isset($act['targets'])) {
-      return array();
+      return [];
     }
-    $ret = array();
+    $ret = [];
     foreach ($act['targets'] as $dn) {
       $ret[] = $headpage->getEntry($dn);
     }
diff --git a/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc b/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc
index ceb6042af3..8faed45e23 100644
--- a/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc
+++ b/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc
@@ -20,9 +20,9 @@
 
 class filterFAIcustoms extends filter
 {
-  var $customs = array();
+  var $customs = [];
 
-  function __construct($filename)
+  function __construct ($filename)
   {
     $release = session::get('packageSelect_Release');
     $this->customs = serviceRepository::getCustomReleases($release);
@@ -30,28 +30,28 @@ class filterFAIcustoms extends filter
     parent::__construct($filename);
   }
 
-  function load($filename)
+  function load ($filename)
   {
     $res = parent::load($filename);
 
     foreach ($this->customs as $custom) {
-      $this->elements[$custom] = array(
+      $this->elements[$custom] = [
         'type'    => 'checkbox',
         'tag'     => $custom,
         'default' => 'false',
-        'set'     => array(),
-        'unset'   => array()
-      );
+        'set'     => [],
+        'unset'   => []
+      ];
       $this->elementValues[$custom] = '';
     }
     return $res;
   }
 
-  function render()
+  function render ()
   {
     $smarty = get_smarty();
 
-    $customs = array();
+    $customs = [];
     foreach ($this->customs as $custom) {
       $customs[$custom] = $this->getCheckbox($this->elements[$custom]);
     }
diff --git a/fai/admin/fai/packageSelect/class_packageSelect.inc b/fai/admin/fai/packageSelect/class_packageSelect.inc
index 52cfc235f5..879f39da07 100644
--- a/fai/admin/fai/packageSelect/class_packageSelect.inc
+++ b/fai/admin/fai/packageSelect/class_packageSelect.inc
@@ -21,14 +21,14 @@
 
 class packageSelect extends simpleSelectManagement
 {
-  protected $objectTypes  = array();
+  protected $objectTypes  = [];
   protected $autoFilter   = FALSE;
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = FALSE;
 
-  function __construct()
+  function __construct ()
   {
     $this->filterXMLPath  = get_template_path('selectPackage-filter.xml', TRUE, dirname(__FILE__));
     $this->listXMLPath    = get_template_path('selectPackage-list.xml',   TRUE, dirname(__FILE__));
@@ -41,14 +41,14 @@ class packageSelect extends simpleSelectManagement
     parent::__construct();
   }
 
-  function save()
+  function save ()
   {
     $act = $this->detectPostActions();
     $headpage = $this->getHeadpage();
     if (!isset($act['targets'])) {
-      return array();
+      return [];
     }
-    $ret = array();
+    $ret = [];
     foreach ($act['targets'] as $dn) {
       $ret[] = $headpage->getEntry($dn);
     }
diff --git a/fai/admin/systems/class_faiLogView.inc b/fai/admin/systems/class_faiLogView.inc
index 4df55caebc..ce3a788799 100644
--- a/fai/admin/systems/class_faiLogView.inc
+++ b/fai/admin/systems/class_faiLogView.inc
@@ -21,22 +21,22 @@
 
 class AvailableLogsAttribute extends Attribute
 {
-  var $logs     = array();
+  var $logs     = [];
 
   function __construct ($description, $ldapName, $acl = "")
   {
-    $value = array(
+    $value = [
       'file'      => '',
       'time'      => '',
       'sort_by'   => 'time',
       // TRUE means up
       'sort_up'  => TRUE
-    );
+    ];
     parent::__construct ('', $description, $ldapName, FALSE, $value, $acl);
     $this->setInLdap(FALSE);
   }
 
-  private function js_link($label, $vars)
+  private function js_link ($label, $vars)
   {
     $id   = $this->getHtmlId();
     $js = '';
@@ -67,13 +67,13 @@ class AvailableLogsAttribute extends Attribute
     }
 
     /* Create list header */
-    $div->SetHeaders(array(
-      $this->js_link(_('File')." $img1", array('sort_by' => 'file')),
-      $this->js_link(_('Date')." $img2", array('sort_by' => 'time'))
-    ));
+    $div->SetHeaders([
+      $this->js_link(_('File')." $img1", ['sort_by' => 'file']),
+      $this->js_link(_('Date')." $img2", ['sort_by' => 'time'])
+    ]);
 
     /* Create sortable array */
-    $to_add   = array();
+    $to_add   = [];
     $sort_by  = $this->value['sort_by'];
     foreach ($this->logs as $time => $data) {
       $rtime = $data['REAL_DATE'];
@@ -83,13 +83,13 @@ class AvailableLogsAttribute extends Attribute
           $highlight = 'background-color:#CCCCCC';
         }
 
-        $use_link = $this->js_link('%str%', array('time' => $time, 'file' => $file, 'mac' => $mac));
-        $to_add[$$sort_by.$file.$time] = array(
-          array('html' => preg_replace('/%str%/', $file, $use_link),
-                'attach' => ''),
-          array('html' => preg_replace('/%str%/', date('d.m.Y H:i:s', $rtime), $use_link),
-                'attach' => ''),
-        );
+        $use_link = $this->js_link('%str%', ['time' => $time, 'file' => $file, 'mac' => $mac]);
+        $to_add[$$sort_by.$file.$time] = [
+          ['html' => preg_replace('/%str%/', $file, $use_link),
+                'attach' => ''],
+          ['html' => preg_replace('/%str%/', date('d.m.Y H:i:s', $rtime), $use_link),
+                'attach' => ''],
+        ];
       }
     }
 
@@ -109,7 +109,7 @@ class AvailableLogsAttribute extends Attribute
     $smarty = get_smarty();
     $smarty->assign("div_$id", $div->DrawList());
     $display = '';
-    foreach (array('sort_by','time','file','mac') as $var) {
+    foreach (['sort_by','time','file','mac'] as $var) {
       $display .= '<input type="hidden" value="" name="'.$id.'_'.$var.'" id="'.$id.'_'.$var.'"/>'."\n";
     }
     return $this->renderAcl($display).'{$div_'.$id.'}'."\n";
@@ -120,12 +120,12 @@ class AvailableLogsAttribute extends Attribute
     if ($this->isVisible()) {
       $id   = $this->getHtmlId();
       $this->postValue = $this->value;
-      foreach (array('time','file') as $attr) {
+      foreach (['time','file'] as $attr) {
         if (isset($_POST[$id.'_'.$attr])) {
           $this->postValue[$attr] = $_POST[$id.'_'.$attr];
         }
       }
-      if (isset($_POST[$id.'_sort_by']) && in_array($_POST[$id.'_sort_by'], array('file','time'))) {
+      if (isset($_POST[$id.'_sort_by']) && in_array($_POST[$id.'_sort_by'], ['file','time'])) {
         if ($_POST[$id.'_sort_by'] == $this->postValue['sort_by']) {
           $this->postValue['sort_up'] = !$this->postValue['sort_up'];
         }
@@ -144,39 +144,39 @@ class faiLogView extends simplePlugin
 
   static function getAttributesInfo ()
   {
-    return array(
-      'available' => array(
+    return [
+      'available' => [
         'name'  => _('Available logs'),
-        'attrs' => array(
+        'attrs' => [
           new AvailableLogsAttribute(
             _('Available logs'), 'available_logs'
           ),
-        )
-      ),
-      'selected' => array(
+        ]
+      ],
+      'selected' => [
         'name'  => _('Selected log'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new DisplayAttribute(
             '', _('Content of the selected log'),
             'display_log'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('FAI Logs'),
       'plDescription' => _('FAI Logs Viewer'),
       'plPriority'    => 31,
-      'plObjectType'  => array('workstation', 'server', 'ogroup-dynamic'),
+      'plObjectType'  => ['workstation', 'server', 'ogroup-dynamic'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -210,14 +210,14 @@ class faiLogView extends simplePlugin
     $this->ignore_account = FALSE;
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     /* Will not work when called from parent constructor (or when $attrs is not us) */
     return (count($this->attributesAccess['available_logs']->logs) > 0);
   }
 
 
-  function execute()
+  function execute ()
   {
     if ($this->available_logs['file'] == '') {
       $this->attributesInfo['selected']['name'] = _('Selected file');
@@ -236,7 +236,7 @@ class faiLogView extends simplePlugin
   }
 
 
-  private function get_log($mac, $date, $file)
+  private function get_log ($mac, $date, $file)
   {
     $res = $this->o_queue->get_log_file($mac, $date, $file);
     if ($this->o_queue->is_error()) {
diff --git a/fai/admin/systems/class_faiStartup.inc b/fai/admin/systems/class_faiStartup.inc
index 93adccfd73..2a4953a3af 100644
--- a/fai/admin/systems/class_faiStartup.inc
+++ b/fai/admin/systems/class_faiStartup.inc
@@ -51,42 +51,42 @@ class faiStartup extends simplePlugin
   var $displayHeader = TRUE;
 
   /* attribute list for save action */
-  var $objectclasses  = array("FAIobject");
+  var $objectclasses  = ["FAIobject"];
 
-  var $inheritance    = array("gosaGroupOfNames" => "member");
+  var $inheritance    = ["gosaGroupOfNames" => "member"];
   var $sdaemon_available;
 
-  var $cache = array();
+  var $cache = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('FAI'),
       'plDescription'   => _('Full automated installation'),
       'plSelfModify'    => FALSE,
       'plPriority'      => 9,
-      'plObjectType'    => array('workstation', 'server', 'ogroup-dynamic'),
-      'plForeignKeys'  => array(
-        'FAIclass'   => array(
-          array('faiProfile', 'cn', '(FAIclass=%oldvalue% :*)'),
-        ),
-      ),
+      'plObjectType'    => ['workstation', 'server', 'ogroup-dynamic'],
+      'plForeignKeys'  => [
+        'FAIclass'   => [
+          ['faiProfile', 'cn', '(FAIclass=%oldvalue% :*)'],
+        ],
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('FAI settings'),
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('FAIstate'),
           new CompositeAttribute (
             _('FAI profil and release to be applied to this computer'),
             'FAIclass',
-            array(
+            [
               'release' => new FAIreleaseAttribute (
                 _('Release'), _('FAI debian release to be installed on this computer'),
                 'FAIrelease', TRUE
@@ -95,7 +95,7 @@ class faiStartup extends simplePlugin
                 _('Profil'), _('FAI profil to be applied to this computer'),
                 'FAIprofile', TRUE
               ),
-            ),
+            ],
             '/^(?P<profil>.+) :(?P<release>.+)$/',
             '%2$s :%1$s'
           ),
@@ -103,9 +103,9 @@ class faiStartup extends simplePlugin
             _('Repository'), _('FAI Debian repository to be used for installation'),
             'FAIdebianMirror', TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -130,7 +130,7 @@ class faiStartup extends simplePlugin
     }
   }
 
-  function foreignKeyUpdate($field, $oldvalue, $newvalue, $source)
+  function foreignKeyUpdate ($field, $oldvalue, $newvalue, $source)
   {
     if ($field == 'FAIclass') {
       if ($this->attributesAccess['FAIclass']->attributes['profil']->getValue() == $oldvalue) {
@@ -144,19 +144,19 @@ class faiStartup extends simplePlugin
   /* Updates release and profiles list
    *  if not already done ($this->cache).
    */
-  function update_fai_cache()
+  function update_fai_cache ()
   {
     /* Get the list of available servers and their releases */
     if (!isset($this->cache['SERVERS'])) {
       $tmp = serviceRepository::getServers();
-      $this->cache['SERVERS'] = array();
+      $this->cache['SERVERS'] = [];
       foreach ($tmp as $entry) {
         if ($entry['INSTALL'] != 'install') {
             continue;
         }
         $rel = $entry['FAI_RELEASE'];
         if (!isset($this->cache['SERVERS'][$rel])) {
-          $this->cache['SERVERS'][$rel] = array();
+          $this->cache['SERVERS'][$rel] = [];
         }
         $this->cache['SERVERS'][$rel][] = $entry['URL'];
         uksort($this->cache['SERVERS'][$rel], 'strnatcasecmp');
@@ -164,7 +164,7 @@ class faiStartup extends simplePlugin
     }
 
     if (!isset($this->cache['PROFILES'])) {
-      $this->cache['PROFILES'] = array();
+      $this->cache['PROFILES'] = [];
       foreach (array_keys($this->cache['SERVERS']) as $release) {
         /* Get the list of available profiles for each release */
         $tmp = objects::ls('faiProfile', 'cn', NULL, "(ou:dn:=$release)");
diff --git a/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc b/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
index 01cdf803a4..7f5e8a1d40 100644
--- a/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
+++ b/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
@@ -20,25 +20,25 @@
 
 class argonautFAIMonitor extends simpleService
 {
-  var $objectclasses  = array('argonautFAIMonitorConfig');
+  var $objectclasses  = ['argonautFAIMonitorConfig'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Argonaut FAI monitor'),
       'plDescription'   => _('Argonaut FAI monitor settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=fai&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array (
-    'config' => array (
+    return  [
+    'config' => [
         'name'  => _('Argonaut FAI monitor settings'),
-        'attrs' => array (
+        'attrs' => [
           new IntAttribute (
             _('Port'), _('The port argonaut-fai-monitor should listen on. Default is 4711.'),
             'argonautFAIMonitorPort', FALSE,
@@ -59,9 +59,9 @@ class argonautFAIMonitor extends simpleService
             'argonautFAIMonitorLogDir', TRUE,
             '/var/log/argonaut'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/fai/admin/systems/services/repository/class_serviceRepository.inc b/fai/admin/systems/services/repository/class_serviceRepository.inc
index b994c955f5..e8657fe16f 100644
--- a/fai/admin/systems/services/repository/class_serviceRepository.inc
+++ b/fai/admin/systems/services/repository/class_serviceRepository.inc
@@ -21,12 +21,12 @@
 
 class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
 {
-  function __construct($description, $ldapName, $acl = "", $label = "Composite attribute")
+  function __construct ($description, $ldapName, $acl = "", $label = "Composite attribute")
   {
     parent::__construct(
       $description,
       $ldapName,
-      array(
+      [
         new StringAttribute(
           _('URL'), _('Repository url'),
           'mirrorUrl', TRUE
@@ -34,7 +34,7 @@ class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
         new SelectAttribute(
           _('Parent server'), _('Parent repository server'),
           'mirrorParent', FALSE,
-          array(), ''
+          [], ''
         ),
         new StringAttribute(
           _('Release'), _('Release used on this repository'),
@@ -51,7 +51,7 @@ class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
         new SelectAttribute(
           _('Mirror mode'), _('Is this mirror an installation repository? Is its release a custom one?'),
           'mirrorMode', TRUE,
-          array('install','update','custom')
+          ['install','update','custom']
         ),
         new BooleanAttribute(
           _('Local mirror'), _('Is this mirror a local or a network mirror?'),
@@ -71,27 +71,27 @@ class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
         new SelectAttribute(
           _('Distribution'), _('Which distribution is this repository for'),
           'distribution', TRUE,
-          array('debian','centos')
+          ['debian','centos']
         ),
         new StringAttribute(
           _('Path pattern'), _('How this repository is organized (only for RPM repositories)'),
           'pathMask', FALSE,
           '%RELEASE%/%SECTION%/%ARCH%/'
         ),
-      ),
+      ],
       $acl,
       $label
     );
     $this->attributes[7]->setSubmitForm(TRUE);
   }
 
-  function setParent(&$plugin)
+  function setParent (&$plugin)
   {
     $this->updateFields();
     parent::setParent($plugin);
   }
 
-  function updateFields()
+  function updateFields ()
   {
     $dn = NULL;
     if (is_object($this->plugin)) {
@@ -106,16 +106,16 @@ class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
         },
         serviceRepository::getReleaseList($this->attributes[7]->getValue())
       );
-      $modeChoices = array_merge(array('install', 'update'), $releaseList);
+      $modeChoices = array_merge(['install', 'update'], $releaseList);
       $this->attributes[8]->setVisible(FALSE);
     } else {
-      $modeChoices = array('install', 'update');
+      $modeChoices = ['install', 'update'];
       $this->attributes[8]->setVisible(TRUE);
     }
     $this->attributes[4]->setChoices($modeChoices);
   }
 
-  function applyPostValue()
+  function applyPostValue ()
   {
     parent::applyPostValue();
     $this->updateFields();
@@ -132,7 +132,7 @@ class FAIRepositoryAttribute extends PipeSeparatedCompositeAttribute
     parent::setValue($values);
   }
 
-  function readValues($value)
+  function readValues ($value)
   {
     $values = parent::readValues($value);
     if (!isset($values[8])) {
@@ -153,27 +153,27 @@ class serviceRepository extends simpleService
 {
   protected static $showActions = FALSE;
 
-  var $objectclasses  = array('FAIrepositoryServer');
+  var $objectclasses  = ['FAIrepositoryServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Package repository'),
       'plDescription' => _('Package repository information'),
       'plIcon'        => 'geticon.php?context=mimetypes&icon=package-x-generic&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'template'  => get_template_path('fai_repository.tpl', TRUE, dirname(__FILE__)),
         'name'      => _('Repositories'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new OrderedArrayAttribute(
             new FAIRepositoryAttribute(
               _('Repositories this server hosts'),
@@ -181,13 +181,13 @@ class serviceRepository extends simpleService
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit button
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -197,7 +197,7 @@ class serviceRepository extends simpleService
     $this->attributesAccess['FAIrepository']->setLinearRendering(FALSE);
   }
 
-  static function isOfDistribution($attrs, $distribution)
+  static function isOfDistribution ($attrs, $distribution)
   {
     if (!isset($attrs['FAIrepository'])) {
       return FALSE;
@@ -205,7 +205,7 @@ class serviceRepository extends simpleService
     return preg_match('/'.preg_quote($distribution, '/').'$/', $attrs['FAIrepository'][0]);
   }
 
-  function ldap_save()
+  function ldap_save ()
   {
     $errors = parent::ldap_save();
 
@@ -214,7 +214,7 @@ class serviceRepository extends simpleService
     }
 
     $repos  = $this->attributesAccess['FAIrepository']->getArrayValues();
-    $done   = array();
+    $done   = [];
     foreach ($repos as $repo) {
       $release = $repo[2];
       if (($repo[4] == 'install') && (!isset($done[$release]))) {
@@ -233,7 +233,7 @@ class serviceRepository extends simpleService
     // Check if FAI branch is here
     $fai  = "ou=$distribution,".get_ou('faiBaseRDN').$config->current['BASE'];
     $ldap = $config->get_ldap_link();
-    $ldap->cat($fai, array('dn'));
+    $ldap->cat($fai, ['dn']);
     if (!$ldap->count()) {
       $ldap->cd($config->current['BASE']);
       $ldap->create_missing_trees($fai);
@@ -245,13 +245,13 @@ class serviceRepository extends simpleService
 
     // Check if FAI release branch is here
     $dn = "ou=$release,$fai";
-    $ldap->cat($dn, array('dn'));
+    $ldap->cat($dn, ['dn']);
     if (!$ldap->count()) {
       $ldap->cd($dn);
-      $ldap->add(array('objectClass' => array('organizationalUnit','FAIbranch'), 'ou' => $release));
+      $ldap->add(['objectClass' => ['organizationalUnit','FAIbranch'], 'ou' => $release]);
       if ($ldap->success()) {
         // Add classes OUs
-        foreach (array('Script', 'Hook', 'Template', 'Variable', 'Profile', 'Package', 'Partition') as $type) {
+        foreach (['Script', 'Hook', 'Template', 'Variable', 'Profile', 'Package', 'Partition'] as $type) {
           $ldap->cd($dn);
           $ldap->create_missing_trees(get_ou('fai'.$type.'RDN').$dn);
           if (!$ldap->success()) {
@@ -269,15 +269,15 @@ class serviceRepository extends simpleService
    *
    * \return array All configured repository servers
   */
-  static function getServers()
+  static function getServers ()
   {
     global $config;
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(FAIrepository=*)(objectClass=FAIrepositoryServer))', array('FAIrepository'));
+    $ldap->search('(&(FAIrepository=*)(objectClass=FAIrepositoryServer))', ['FAIrepository']);
 
-    $repos = array();
+    $repos = [];
     while ($entry = $ldap->fetch()) {
       if (isset($entry['FAIrepository'])) {
         // Add an entry for each Repository configured for server
@@ -287,10 +287,10 @@ class serviceRepository extends simpleService
           $infos['URL']           = $tmp[0];
           $infos['PARENT_SERVER'] = $tmp[1];
           $infos['FAI_RELEASE']   = $tmp[2];
-          $infos['SECTIONS']      = (empty($tmp[3]) ? array() : explode(',', $tmp[3]));
+          $infos['SECTIONS']      = (empty($tmp[3]) ? [] : explode(',', $tmp[3]));
           $infos['INSTALL']       = $tmp[4];
           $infos['LOCAL']         = $tmp[5];
-          $infos['ARCHS']         = (empty($tmp[6]) ? array() : explode(',', $tmp[6]));
+          $infos['ARCHS']         = (empty($tmp[6]) ? [] : explode(',', $tmp[6]));
           $infos['DIST']          = (isset($tmp[7]) ? $tmp[7] : 'debian');
           $repos[] = $infos;
         }
@@ -306,9 +306,9 @@ class serviceRepository extends simpleService
    *
    * \return array All configured customs releases based on the given release
   */
-  static function getCustomReleases($release)
+  static function getCustomReleases ($release)
   {
-    $list     = array();
+    $list     = [];
     $servers  = static::getServers();
 
     foreach ($servers as $server) {
@@ -320,15 +320,15 @@ class serviceRepository extends simpleService
     return array_values($list);
   }
 
-  static function getParentServers($distribution, $dn = NULL)
+  static function getParentServers ($distribution, $dn = NULL)
   {
     global $config;
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(objectClass=FAIrepositoryServer)(FAIrepository=*|'.$distribution.'|*))', array('dn','cn'));
+    $ldap->search('(&(objectClass=FAIrepositoryServer)(FAIrepository=*|'.$distribution.'|*))', ['dn','cn']);
 
-    $ret = array();
+    $ret = [];
     while ($attr = $ldap->fetch()) {
       if ($attr['dn'] == $dn) {
         continue;
@@ -346,9 +346,9 @@ class serviceRepository extends simpleService
 
     $ldap = $config->get_ldap_link();
     $ldap->cd('ou='.$distribution.','.get_ou('faiBaseRDN').$config->current['BASE']);
-    $ldap->search('(objectClass=FAIbranch)', array('ou'), 'one');
+    $ldap->search('(objectClass=FAIbranch)', ['ou'], 'one');
 
-    $list = array();
+    $list = [];
     while ($release = $ldap->fetch()) {
       $list[] = $release['ou'][0];
     }
diff --git a/fai/config/fai/class_faiConfig.inc b/fai/config/fai/class_faiConfig.inc
index a33f1c149f..e2421e8693 100644
--- a/fai/config/fai/class_faiConfig.inc
+++ b/fai/config/fai/class_faiConfig.inc
@@ -20,35 +20,35 @@
 
 class faiConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdFaiPluginConf');
+  var $objectclasses  = ['fdFaiPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('FAI configuration'),
       'plDescription'   => _('FusionDirectory fai plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plObjectType'    => array('configuration'),
+      'plObjectType'    => ['configuration'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    $attrs = array(
-      'main' => array(
+    $attrs = [
+      'main' => [
         'name'  => _('FAI'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Fai base RDN'), _('Branch in which fai branches will be stored'),
             'fdFaiBaseRDN', TRUE,
             'ou=fai,ou=configs,ou=systems'
           ),
-        )
-      ),
-    );
-    $rdns = array('Script', 'Hook', 'Template', 'Variable', 'Profile', 'Package', 'PartitionTable');
+        ]
+      ],
+    ];
+    $rdns = ['Script', 'Hook', 'Template', 'Variable', 'Profile', 'Package', 'PartitionTable'];
     foreach ($rdns as $rdn) {
       if ($rdn == 'PartitionTable') {
         $default = 'ou=disk';
diff --git a/freeradius/admin/freeradius/class_freeradiusGroup.inc b/freeradius/admin/freeradius/class_freeradiusGroup.inc
index 671039d253..6ac2977e53 100644
--- a/freeradius/admin/freeradius/class_freeradiusGroup.inc
+++ b/freeradius/admin/freeradius/class_freeradiusGroup.inc
@@ -23,21 +23,21 @@
 class freeradiusGroup extends simplePlugin {
 
   var $displayHeader = TRUE;
-  var $objectclasses = array('radiusprofile');
+  var $objectclasses = ['radiusprofile'];
 
   /*!
    * \brief Plugin information
    */
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'       => _('Freeradius'),
       'plDescription'     => _('This Plugin is for Radius accounting based in FreeRadius'),
       'plIcon'            => 'geticon.php?context=applications&icon=freeradius&size=48',
       'plSmallIcon'       => 'geticon.php?context=applications&icon=freeradius&size=16',
-      'plObjectType'      => array('group'),
+      'plObjectType'      => ['group'],
       'plProvidedAcls'    => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -45,11 +45,11 @@ class freeradiusGroup extends simplePlugin {
    */
   static function getAttributesInfo ()
   {
-    return array(
+    return [
     // Attributes are grouped by section
-    'section1' => array(
+    'section1' => [
         'name'  => _('Support 802.1x'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Tunnel medium type'),
             _('Name of the tunnel medium type'),
@@ -71,9 +71,9 @@ class freeradiusGroup extends simplePlugin {
             FALSE,
             ''
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 
diff --git a/freeradius/personal/freeradius/class_freeradiusAccount.inc b/freeradius/personal/freeradius/class_freeradiusAccount.inc
index 3c4fb8e49e..80a959ee04 100644
--- a/freeradius/personal/freeradius/class_freeradiusAccount.inc
+++ b/freeradius/personal/freeradius/class_freeradiusAccount.inc
@@ -24,24 +24,24 @@
 class freeradiusAccount extends simplePlugin {
 
   var $displayHeader = TRUE;
-  var $objectclasses = array('radiusprofile');
+  var $objectclasses = ['radiusprofile'];
 
   /*!
    * \brief Plugin information
    */
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Freeradius'),
       'plDescription' => _('This Plugin is for Radius accounting based in FreeRadius'),
       'plIcon'        => 'geticon.php?context=applications&icon=freeradius&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=freeradius&size=16',
       'plSelfModify'  => TRUE,
       'plPriority'    => 11,
-      'plObjectType'  => array('user'),
+      'plObjectType'  => ['user'],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -49,11 +49,11 @@ class freeradiusAccount extends simplePlugin {
    */
   static function getAttributesInfo ()
   {
-    return array(
+    return [
     // Attributes are grouped by section
-    'section1' => array(
+    'section1' => [
         'name'  => _('Support 802.1x'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Tunnel medium type'), _('Name of the tunnel medium type'),
             'radiusTunnelMediumType', TRUE,
@@ -74,25 +74,25 @@ class freeradiusAccount extends simplePlugin {
               'radiusExpiration', FALSE,
               'd M Y', ''
           ),
-        )
-      ),
-      'section2' => array(
+        ]
+      ],
+      'section2' => [
         'name'  => _('Groups'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
               new SelectAttribute (
               _('Groups'),
               _('FreeRadius Group'),
               'radiusGroupName',
               FALSE,
-              array("")
+              [""]
             )
           ),
-        ),
-      ),
-      'section3' => array(
+        ],
+      ],
+      'section3' => [
         'name'  => _('User preferences'),
-          'attrs' => array(
+          'attrs' => [
             new StringAttribute(
               _('Protocol'), _('Protocol'),
               'radiusFramedProtocol', FALSE,
@@ -146,9 +146,9 @@ class freeradiusAccount extends simplePlugin {
               FALSE,
               2
             )
-          )
-        )
-    );
+          ]
+        ]
+    ];
   }
 
   /*!
@@ -161,8 +161,8 @@ class freeradiusAccount extends simplePlugin {
     parent::__construct($dn, $object, $parent, $mainTab);
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=radiusprofile)', array('cn'));
-    $groups = array();
+    $ldap->search('(objectClass=radiusprofile)', ['cn']);
+    $groups = [];
     while ($attrs = $ldap->fetch()) {
       $groups[] = $attrs['cn'][0];
     }
diff --git a/fusioninventory/admin/inventory/class_inventoryManagement.inc b/fusioninventory/admin/inventory/class_inventoryManagement.inc
index b7b6731cc6..a207e3f90e 100644
--- a/fusioninventory/admin/inventory/class_inventoryManagement.inc
+++ b/fusioninventory/admin/inventory/class_inventoryManagement.inc
@@ -25,27 +25,27 @@ class inventoryManagement extends simpleManagement
   protected $baseMode               = FALSE;
   protected $skipCpHandler          = TRUE;
   protected $autoActions            = FALSE;
-  protected $autoFilterAttributes   = array('dn', 'cn', 'macAddress');
+  protected $autoFilterAttributes   = ['dn', 'cn', 'macAddress'];
 
-  protected $objectTypes = array('inventory');
+  protected $objectTypes = ['inventory'];
 
   public static $skipSnapshots = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Inventory objects'),
       'plDescription' => _('Browse inventory objects'),
       'plIcon'        => 'geticon.php?context=applications&icon=fusioninventory&size=48',
       'plSection'     => 'reporting',
       'plPriority'    => 5,
-      'plManages'     => array('inventory'),
+      'plManages'     => ['inventory'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
-  function __construct()
+  function __construct ()
   {
     $this->listXMLPath  = get_template_path('inventory-list.xml', TRUE, dirname(__FILE__));
     parent::__construct();
@@ -57,17 +57,17 @@ class inventoryManagement extends simpleManagement
     $this->headpage->registerElementFilter('filterOS', 'inventoryManagement::filterOS');
   }
 
-  static function filterOS()
+  static function filterOS ()
   {
     $pid    = func_get_arg(0);
     $row    = func_get_arg(1);
     $dn     = func_get_arg(2);
-    $trans  = array();
+    $trans  = [];
 
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd($dn);
-    $ldap->search('(objectClass=fdInventoryOPERATINGSYSTEM)', array('fdInventoryNAME','fdInventoryFQDN'), 'one');
+    $ldap->search('(objectClass=fdInventoryOPERATINGSYSTEM)', ['fdInventoryNAME','fdInventoryFQDN'], 'one');
     while ($attrs = $ldap->fetch()) {
       $link = $attrs['fdInventoryNAME'][0];
       if (isset($attrs['fdInventoryFQDN'][0])) {
diff --git a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
index 5c589549d6..2e6ccbec1f 100644
--- a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
+++ b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
@@ -20,12 +20,12 @@
 
 class fiInventory extends simplePlugin
 {
-  var $objectclasses  = array();
+  var $objectclasses  = [];
   var $displayHeader  = FALSE;
 
   protected $filter = '';
 
-  static $sections = array (
+  static $sections = [
     'antivirus'       => 'software',
     'batteries'       => 'hardware',
     'controllers'     => 'hardware',
@@ -60,18 +60,18 @@ class fiInventory extends simplePlugin
     'physicalvolumes' => 'hardware',
     'volumegroups'    => 'software',
     'licenseinfos'    => 'software',
-  );
+  ];
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Inventory'),
       'plDescription' => _('Inventory Viewer'),
       'plPriority'    => 90,
-      'plObjectType'  => array(
+      'plObjectType'  => [
         'workstation', 'server',
-        'inventory' => array(
+        'inventory' => [
           'description' => _('Inventory object'),
           'filter'      => 'objectClass=fdInventoryContent',
           'mainAttr'    => 'cn',
@@ -79,50 +79,50 @@ class fiInventory extends simplePlugin
           'name'        => _('Inventory object'),
           'ou'          => get_ou('inventoryRDN'),
           'tabClass'    => 'simpleTabs_noSpecial',
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'match' => array(
+    return [
+      'match' => [
         'name'      => _('Matching system'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new DisplayAttribute(_('System'), _('System entry matching this inventory'), 'matching'),
           new HiddenArrayAttribute('macAddress'),
           new HiddenArrayAttribute('ipHostNumber'),
-        ),
-      ),
-      'hardware' => array(
+        ],
+      ],
+      'hardware' => [
         'name'      => _('Hardware'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(new FakeAttribute('hardware_infos')),
+        'class'     => ['fullwidth'],
+        'attrs'     => [new FakeAttribute('hardware_infos')],
         'template'  => get_template_path('inventory.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'software' => array(
+      ],
+      'software' => [
         'name'      => _('Software'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(new FakeAttribute('software_infos')),
+        'class'     => ['fullwidth'],
+        'attrs'     => [new FakeAttribute('software_infos')],
         'template'  => get_template_path('inventory.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'users' => array(
+      ],
+      'users' => [
         'name'      => _('Users'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(new FakeAttribute('users_infos')),
+        'class'     => ['fullwidth'],
+        'attrs'     => [new FakeAttribute('users_infos')],
         'template'  => get_template_path('inventory.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'process' => array(
+      ],
+      'process' => [
         'name'      => _('Processes'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(new FakeAttribute('process_infos')),
+        'class'     => ['fullwidth'],
+        'attrs'     => [new FakeAttribute('process_infos')],
         'template'  => get_template_path('inventory.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -131,7 +131,7 @@ class fiInventory extends simplePlugin
     $attributesInfo = static::getAttributesInfo();
     if (preg_match('/'.preg_quote(get_ou('inventoryRDN').$config->current['BASE'], '/').'$/', $dn)) {
       $this->mainTab        = TRUE;
-      $this->objectclasses  = array('fdInventoryContent');
+      $this->objectclasses  = ['fdInventoryContent'];
       $attributesInfo['hardware']['attrs'][] = new HiddenAttribute('cn');
       $attributesInfo['match']['attrs'][0]->setAllowHTML(TRUE);
     } else {
@@ -146,7 +146,7 @@ class fiInventory extends simplePlugin
     $this->users_infos    = NULL;
   }
 
-  function execute()
+  function execute ()
   {
     if ($this->hardware_infos === NULL) {
       $infos = $this->get_inventory_infos();
@@ -163,17 +163,17 @@ class fiInventory extends simplePlugin
     return parent::execute();
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 
-  function get_inventory_infos()
+  function get_inventory_infos ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
@@ -186,11 +186,11 @@ class fiInventory extends simplePlugin
       unset($ipHostNumber['count']);
     } else {
       if (!isset($this->parent)) {
-        return array();
+        return [];
       }
       $macAddress   = $this->parent->getBaseObject()->macAddress;
       if (!is_array($macAddress) && ($macAddress != '')) {
-        $macAddress = array($macAddress);
+        $macAddress = [$macAddress];
       }
       $ipHostNumber = $this->parent->getBaseObject()->ipHostNumber;
     }
@@ -200,7 +200,7 @@ class fiInventory extends simplePlugin
     } else {
       $macfilter = NULL;
       if (($matching == 'mac') || ($matching == 'both')) {
-        return array();
+        return [];
       }
     }
     if (!empty($ipHostNumber)) {
@@ -208,7 +208,7 @@ class fiInventory extends simplePlugin
     } else {
       $ipfilter = NULL;
       if (($matching == 'ip') || ($matching == 'both') || ($macfilter === NULL)) {
-        return array();
+        return [];
       }
     }
     switch ($matching) {
@@ -233,14 +233,14 @@ class fiInventory extends simplePlugin
       if ($attrs = $ldap->fetch()) {
         $dn = $attrs['dn'];
       } else {
-        return array();
+        return [];
       }
     }
     $ldap->cd($dn);
-    $ldap->search('(objectClass=*)', array('*'), 'one');
-    $infos = array();
+    $ldap->search('(objectClass=*)', ['*'], 'one');
+    $infos = [];
     while ($attrs = $ldap->fetch()) {
-      $object = array();
+      $object = [];
       $cn     = FALSE;
       $class  = strtolower(preg_replace('/^fdInventory/', '', $attrs['objectClass'][0]));
       for ($i = 0; $i < $attrs['count']; $i++) {
@@ -271,7 +271,7 @@ class fiInventory extends simplePlugin
       }
 
       if (!isset($infos[static::$sections[$class]][$class])) {
-        $infos[static::$sections[$class]][$class] = array('keys' => array(), 'objects' => array());
+        $infos[static::$sections[$class]][$class] = ['keys' => [], 'objects' => []];
       }
       $infos[static::$sections[$class]][$class]['keys'] =
         array_unique(array_merge(
@@ -284,10 +284,10 @@ class fiInventory extends simplePlugin
     return $infos;
   }
 
-  function updateMatching()
+  function updateMatching ()
   {
     global $config;
-    $systemTypes = array('server','workstation','terminal','printer','component','phone','mobilePhone');
+    $systemTypes = ['server','workstation','terminal','printer','component','phone','mobilePhone'];
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search($this->filter);
@@ -315,7 +315,7 @@ class fiInventory extends simplePlugin
     if ($fallbackDn !== NULL) {
       $this->matching = $attrs['dn'];
     } else {
-      $templates = array();
+      $templates = [];
       foreach ($systemTypes as $type) {
         $tmp = objects::getTemplates($type);
         foreach ($tmp as $tdn => $tlabel) {
@@ -324,7 +324,7 @@ class fiInventory extends simplePlugin
       }
       $this->attributesAccess['matching'] = new CompositeAttribute(
         _('Create a system based on this inventory'), 'matching',
-        array(
+        [
           new SelectAttribute(
             '', 'template',
             'matching_template', TRUE,
@@ -341,7 +341,7 @@ class fiInventory extends simplePlugin
             'matching_button', _('Create'),
             'createSystem'
           )
-        ),
+        ],
         FALSE, FALSE,
         '', _('No matching system')
       );
@@ -353,18 +353,18 @@ class fiInventory extends simplePlugin
     }
   }
 
-  function createSystem()
+  function createSystem ()
   {
     list ($type, $dn) = explode(':', $_POST['matching_template'], 2);
     $infos = objects::infos($type);
 
-    $values = array(
-      $infos['mainTab'] => array(
+    $values = [
+      $infos['mainTab'] => [
         'cn'            => $this->hardware_infos['hardware']['objects']['hardware0']['NAME'],
         'ipHostNumber'  => $this->ipHostNumber,
         'macAddress'    => $_POST['matching_macaddress'],
-      )
-    );
+      ]
+    ];
 
     $template = new template($type, $dn);
     $template->reset();
diff --git a/fusioninventory/admin/systems/fusioninventory/class_fiInventoryAgent.inc b/fusioninventory/admin/systems/fusioninventory/class_fiInventoryAgent.inc
index 20c422aeb1..560f14a1eb 100644
--- a/fusioninventory/admin/systems/fusioninventory/class_fiInventoryAgent.inc
+++ b/fusioninventory/admin/systems/fusioninventory/class_fiInventoryAgent.inc
@@ -20,15 +20,15 @@
 
 class fiInventoryAgent extends simplePlugin
 {
-  var $objectclasses  = array('fusionInventoryAgent');
+  var $objectclasses  = ['fusionInventoryAgent'];
   var $displayHeader  = TRUE;
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Configuration'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Server'), _('Server which FI will send inventory infos'),
             'fiAgentServer', FALSE
@@ -43,11 +43,11 @@ class fiInventoryAgent extends simplePlugin
             'fiAgentWait', FALSE,
             0, FALSE
           ),
-        ),
-      ),
-      'http' => array(
+        ],
+      ],
+      'http' => [
         'name'  => _('Web Interface'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute(
             _('Disable web interface'), _('Do not use web interface'),
             'fiAgentNoHttpd', FALSE
@@ -65,22 +65,22 @@ class fiInventoryAgent extends simplePlugin
             _('Trust'), _('IPs allowed to launch inventory task through web interface'),
             'fiAgentHttpdTrust', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('FusionInventory'),
       'plDescription' => _('FusionInventory agent configuration'),
       'plPriority'    => 90,
-      'plObjectType'  => array('workstation', 'server'),
+      'plObjectType'  => ['workstation', 'server'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/fusioninventory/config/fusioninventory/class_fiConfig.inc b/fusioninventory/config/fusioninventory/class_fiConfig.inc
index 053a8eb09a..0c36bd16a7 100644
--- a/fusioninventory/config/fusioninventory/class_fiConfig.inc
+++ b/fusioninventory/config/fusioninventory/class_fiConfig.inc
@@ -20,26 +20,26 @@
 
 class fiConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdInventoryPluginConf");
+  var $objectclasses  = ["fdInventoryPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("FusionInventory configuration"),
       "plDescription"   => _("FusionDirectory FusionInventory plugin configuration"),
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('FusionInventory'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Inventory RDN'), _('Branch in which inventory objects will be stored'),
             'fdInventoryRDN', TRUE,
@@ -48,12 +48,12 @@ class fiConfig extends simplePlugin
           new SelectAttribute (
             _('Inventory matching'), _('Criteria to link an inventory result to a system'),
             'fdInventoryMatching', TRUE,
-            array('mac','ip','both','either'), 'mac',
-            array(_('Mac address'), _('IP address'), _('Both'), _('IP or Mac address'))
+            ['mac','ip','both','either'], 'mac',
+            [_('Mac address'), _('IP address'), _('Both'), _('IP or Mac address')]
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/fusioninventory/html/collect.php b/fusioninventory/html/collect.php
index b156189499..15d0bf8f67 100644
--- a/fusioninventory/html/collect.php
+++ b/fusioninventory/html/collect.php
@@ -8,7 +8,7 @@ require_once('variables.inc');
 
 $http_raw_post_data = file_get_contents('php://input');
 
-function returnError($errorText)
+function returnError ($errorText)
 {
   $protocol = (isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0');
   header($protocol.' 500 '.$errorText);
@@ -71,11 +71,11 @@ if (preg_match('/QUERY>PROLOG<\/QUERY/', $xml)) {
   $data = $data['REQUEST']['CONTENT'];
   $cpus = $data['CPUS'];
   if (!is_numeric(key($cpus))) {
-    $cpus = array($cpus);
+    $cpus = [$cpus];
   }
   $os = $data['OPERATINGSYSTEM'];
   if (!is_numeric(key($os))) {
-    $os = array($os);
+    $os = [$os];
   }
 
   /* Check if CONFIG_FILE is accessible */
@@ -83,8 +83,8 @@ if (preg_match('/QUERY>PROLOG<\/QUERY/', $xml)) {
     returnError(sprintf(_('FusionDirectory configuration %s/%s is not readable. Aborted.'), CONFIG_DIR, CONFIG_FILE));
   }
 
-  $macs = array();
-  $ips  = array();
+  $macs = [];
+  $ips  = [];
   foreach ($data['NETWORKS'] as $network) {
     if (isset($network['MACADDR']) && ($network['MACADDR'] != '00:00:00:00:00:00')) {
       $macs[] = $network['MACADDR'];
@@ -127,13 +127,13 @@ if (preg_match('/QUERY>PROLOG<\/QUERY/', $xml)) {
   /* Create root node */
   $ldap->cd($dn);
   $ldap->add(
-    array(
+    [
       'cn'                        => $_SERVER['REMOTE_ADDR'],
-      'objectClass'               => array('fdInventoryContent'),
+      'objectClass'               => ['fdInventoryContent'],
       'macAddress'                => $macs,
       'ipHostNumber'              => $ips,
       'fdInventoryVERSIONCLIENT'  => $data['VERSIONCLIENT'],
-    )
+    ]
   );
   if (!$ldap->success()) {
     returnError('LDAP: '.$ldap->get_error());
@@ -143,14 +143,14 @@ if (preg_match('/QUERY>PROLOG<\/QUERY/', $xml)) {
 
   foreach ($data as $key => $objects) {
     if (!is_numeric(key($objects))) {
-      $objects = array($objects);
+      $objects = [$objects];
     }
     foreach ($objects as $i => $object) {
       $cn         = strtolower($key).$i;
-      $ldap_attrs = array(
+      $ldap_attrs = [
         'cn' => $cn,
         'objectClass' => 'fdInventory'.preg_replace('/_/', '', $key),
-      );
+      ];
       foreach ($object as $attr => $value) {
         if (!(is_array($value) && empty($value))) {
           $ldap_attrs['fdInventory'.preg_replace('/_/', '', $attr)] = $value;
diff --git a/gpg/addons/gpg/class_pgpServerInfo.inc b/gpg/addons/gpg/class_pgpServerInfo.inc
index fdb8850c0b..1fbbcfdde0 100644
--- a/gpg/addons/gpg/class_pgpServerInfo.inc
+++ b/gpg/addons/gpg/class_pgpServerInfo.inc
@@ -22,39 +22,39 @@ class pgpServerInfo extends simplePlugin
 {
   var $mainTab = TRUE;
   /* This plugin only writes its objectClass */
-  var $objectclasses = array('pgpServerInfo');
+  var $objectclasses = ['pgpServerInfo'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('GPG server info'),
       'plDescription' => _('GPG server info'),
       'plSection'     => 'conf',
       'plPriority'    => 5,
       'plIcon'        => 'geticon.php?context=applications&icon=gpg&size=48',
-      'plObjectType'    => array(
-        'pgpServerInfo' => array(
+      'plObjectType'    => [
+        'pgpServerInfo' => [
           'name'        => _('GPG server info'),
           'filter'      => 'objectClass=pgpServerInfo',
           'icon'        => 'geticon.php?context=applications&icon=gpg&size=16',
           'aclCategory' => 'configuration',
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
     global $config;
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('GPG server info'),
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('cn', TRUE, 'pgpServerInfo'),
           new StringAttribute (
             _('Software'), _('Which software this GPG key server is running'),
@@ -69,19 +69,19 @@ class pgpServerInfo extends simplePlugin
           new CompositeAttribute (
             _('Branch in which keys are stored'),
             'pgpBaseKeySpaceDN',
-            array(
+            [
               new StringAttribute(
                 _('Keys RDN'), _('Branch under base in which keys are stored'),
                 'BaseKeyBranchDN', TRUE,
                 'ou=PGP Keys,'
               )
-            ),
+            ],
             '/^(.*)'.$config->current['BASE'].'$/',
             '%s'.$config->current['BASE']
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   protected function ldap_save ()
diff --git a/gpg/personal/gpg/class_gpgAccount.inc b/gpg/personal/gpg/class_gpgAccount.inc
index 9866202a75..9cf40d7798 100644
--- a/gpg/personal/gpg/class_gpgAccount.inc
+++ b/gpg/personal/gpg/class_gpgAccount.inc
@@ -21,37 +21,37 @@
 class gpgAccount extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('fdGpgAccount');
+  var $objectclasses = ['fdGpgAccount'];
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('GPG keys'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new PgpKeyAttribute(
             '', _('GPG keys of this user'),
             'fdUserKeyDN', TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('GPG'),
       'plDescription'   => _('Edit user\'s GPG IDs'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=applications&icon=gpg&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=gpg&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
index a9269839c2..bea94731a6 100644
--- a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
+++ b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
@@ -20,7 +20,7 @@
 
 class pgpKeySelect extends simpleSelectManagement
 {
-  protected $objectTypes  = array();
+  protected $objectTypes  = [];
   protected $autoFilter   = FALSE;
 
   protected $departmentBrowser      = FALSE;
@@ -28,7 +28,7 @@ class pgpKeySelect extends simpleSelectManagement
   protected $baseMode               = FALSE;
   protected $multiSelect            = TRUE;
 
-  function __construct()
+  function __construct ()
   {
     $this->listXMLPath = get_template_path('pgpKeySelect-list.xml', TRUE, dirname(__FILE__));
 
@@ -52,18 +52,18 @@ class pgpKeySelect extends simpleSelectManagement
     $ldap = $config->get_ldap_link();
     $ldap->cat('cn=pgpServerInfo,'.$config->current['BASE']);
     if ($pgpServerInfo = $ldap->fetch()) {
-      $this->storagePoints = array(
+      $this->storagePoints = [
         preg_replace(
           '/'.$config->current['BASE'].'$/', '',
           $pgpServerInfo['pgpBaseKeySpaceDN'][0]
         )
-      );
+      ];
     } else {
       msg_dialog::display(_('Configuration error'), _('You need to configure GPG base dn through the addons section first'));
     }
     $this->filter->setObjectStorage($this->storagePoints);
     $this->filter->category = 'user';
-    $attributes = array('pgpKeyID', 'pgpUserID', 'pgpKeyCreateTime', 'pgpKeyExpireTime', 'pgpKeyType', 'pgpKeySize');
+    $attributes = ['pgpKeyID', 'pgpUserID', 'pgpKeyCreateTime', 'pgpKeyExpireTime', 'pgpKeyType', 'pgpKeySize'];
     $this->filter->query[0]['backend']      = 'LDAPBlacklist';
     $this->filter->query[0]['filter']       = '$NAME';
     $this->filter->query[0]['attribute']    = $attributes;
@@ -72,7 +72,7 @@ class pgpKeySelect extends simpleSelectManagement
     $this->filter->elements['NAME']['autocomplete']['attribute']  = $attributes;
   }
 
-  static function filterSingleValue($value, $func)
+  static function filterSingleValue ($value, $func)
   {
     if (is_array($value)) {
       $value = reset($value);
@@ -84,17 +84,17 @@ class pgpKeySelect extends simpleSelectManagement
     return ($return === '' ? '&nbsp;' : $return);
   }
 
-  static function filterPgpDate($value = array())
+  static function filterPgpDate ($value = [])
   {
     return static::filterSingleValue($value, 'pgpDate');
   }
 
-  static function filterPgpSize($value = array())
+  static function filterPgpSize ($value = [])
   {
     return static::filterSingleValue($value, 'pgpSize');
   }
 
-  static function filterPgpRevoked($value = array())
+  static function filterPgpRevoked ($value = [])
   {
     if (empty($value)) {
       return 'No';
@@ -102,7 +102,7 @@ class pgpKeySelect extends simpleSelectManagement
     return static::pgpRevoked($value[0]);
   }
 
-  static function pgpDate($date)
+  static function pgpDate ($date)
   {
     if (empty($date)) {
       return $date;
@@ -110,13 +110,13 @@ class pgpKeySelect extends simpleSelectManagement
     return DateTime::createFromFormat('Ymd', substr($date, 0, 8))->format('d.m.Y');
   }
 
-  static function pgpSize($size)
+  static function pgpSize ($size)
   {
     // Remove useless 0 at the beginning
     return strval(intval($size));
   }
 
-  static function pgpRevoked($value)
+  static function pgpRevoked ($value)
   {
     // Remove useless 0 at the beginning
     return ($value == 0 ? 'No' : 'Yes');
@@ -134,10 +134,10 @@ class PgpKeyAttribute extends GenericDialogAttribute
   protected $height           = 200;
   protected $displayed_values;
 
-  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = array(), $acl = '')
+  function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = '')
   {
     parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
-    $this->displayed_values = array(
+    $this->displayed_values = [
       'pgpKeyID'          => _('Key ID'),
       'pgpUserID'         => _('User ID'),
       'pgpKeyCreateTime'  => _('Creation time'),
@@ -146,7 +146,7 @@ class PgpKeyAttribute extends GenericDialogAttribute
       'pgpKeySize'        => _('Size'),
       'pgpRevoked'        => _('Revoked'),
       'pgpDisabled'       => _('Disabled')
-    );
+    ];
   }
 
   function addValue ($dn, $entry)
@@ -201,7 +201,7 @@ class PgpKeyAttribute extends GenericDialogAttribute
     // Updates and get display values
     $displays = $this->getDisplayValues();
     foreach ($displays as $key => $display_item) {
-      $fields = array();
+      $fields = [];
       foreach (array_keys($this->displayed_values) as $field) {
         if (isset($display_item[$field][0]) && !empty($display_item[$field][0])) {
           $display = $display_item[$field][0];
@@ -217,17 +217,17 @@ class PgpKeyAttribute extends GenericDialogAttribute
           } elseif ($field == 'pgpDisabled') {
             $display = pgpKeySelect::pgpRevoked($display);
           }
-          $fields[] = array('string' => $display);
+          $fields[] = ['string' => $display];
         } else {
           $display = '';
           if (($field == 'pgpRevoked') || ($field == 'pgpDisabled')) {
             $display = pgpKeySelect::pgpRevoked($display);
           }
-          $fields[] = array('string' => $display);
+          $fields[] = ['string' => $display];
         }
       }
       $img = '<input type="image" src="geticon.php?context=actions&icon=edit-delete&size=16" name="'.$id.'_del_'.$key.'" class="center"/>&nbsp;';
-      $fields[] = array('html' => $img, 'attach' => 'style="border-right:0px;width:20px;"');
+      $fields[] = ['html' => $img, 'attach' => 'style="border-right:0px;width:20px;"'];
       $div->AddEntry($fields);
     }
     $smarty = get_smarty();
@@ -235,10 +235,10 @@ class PgpKeyAttribute extends GenericDialogAttribute
     return '{$div_'.$id.'}'."\n";
   }
 
-  public function htmlIds()
+  public function htmlIds ()
   {
     $id = $this->getHtmlId();
-    $ids = array('add'.$id.'_dialog');
+    $ids = ['add'.$id.'_dialog'];
     $nb_values = count($this->value);
     for ($i = 0; $i < $nb_values; ++$i) {
       $ids[] = $id.'_del_'.$i;
diff --git a/ipmi/admin/systems/ipmi/class_ipmiClient.inc b/ipmi/admin/systems/ipmi/class_ipmiClient.inc
index 0c417b194c..97f2de8b61 100644
--- a/ipmi/admin/systems/ipmi/class_ipmiClient.inc
+++ b/ipmi/admin/systems/ipmi/class_ipmiClient.inc
@@ -20,30 +20,30 @@
 
 class ipmiClient extends simplePlugin
 {
-  var $objectclasses  = array('ipmiClient');
+  var $objectclasses  = ['ipmiClient'];
   var $displayHeader  = TRUE;
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('IPMI client'),
       'plDescription'   => _('Edit IPMI client settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=ipmi&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=ipmi&size=16',
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('workstation','server'),
-      'plObjectType'    => array('workstation','server'),
+      'plCategory'      => ['workstation','server'],
+      'plObjectType'    => ['workstation','server'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('IPMI client settings'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('IP'), _('IP of the IPMI interface'),
             'fdIpmiIP', TRUE
@@ -57,9 +57,9 @@ class ipmiClient extends simplePlugin
             _('User password'), _('IPMI user password'),
             'fdIpmiPassword', TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 
diff --git a/ldapdump/addons/ldapdump/class_ldapDump.inc b/ldapdump/addons/ldapdump/class_ldapDump.inc
index 4874fb0ac9..0779596f8b 100644
--- a/ldapdump/addons/ldapdump/class_ldapDump.inc
+++ b/ldapdump/addons/ldapdump/class_ldapDump.inc
@@ -20,30 +20,30 @@
 
 class ldapDump extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('LDAP'),
       'plDescription' => _('LDAP Dump'),
-      'plObjectType'  => array('special'),
+      'plObjectType'  => ['special'],
       'plPriority'    => 99,
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'      => _('LDAP Dump'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new FakeAttribute('dump')
-        ),
+        ],
         'template'  => get_template_path('ldapdump.tpl', TRUE, dirname(__FILE__))
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -53,18 +53,18 @@ class ldapDump extends simplePlugin
     $this->dump = NULL;
   }
 
-  function execute()
+  function execute ()
   {
     global $config;
     if ($this->dump === NULL) {
       $ui = get_userinfo();
       if (preg_match('/r/', $ui->get_complete_category_acls($this->acl_base, $this->parent->acl_category))) {
         $ldap = $config->get_ldap_link();
-        $ldap->cat($this->dn, array('*','createTimestamp','modifyTimestamp'));
+        $ldap->cat($this->dn, ['*','createTimestamp','modifyTimestamp']);
         if ($attrs = $ldap->fetch()) {
-          $this->dump = array($this->dumpLdapNode($attrs, $config->current['BASE']));
+          $this->dump = [$this->dumpLdapNode($attrs, $config->current['BASE'])];
         } else {
-          $this->dump = array();
+          $this->dump = [];
         }
       } else {
         $this->dump = FALSE;
@@ -75,24 +75,24 @@ class ldapDump extends simplePlugin
     return parent::execute();
   }
 
-  function dumpLdapNode($attrs, $parent_dn = '')
+  function dumpLdapNode ($attrs, $parent_dn = '')
   {
     global $config;
-    $node = array(
+    $node = [
       'dn'        => $attrs['dn'],
       'name'      => preg_replace('/,'.preg_quote($parent_dn).'$/', '', $attrs['dn']),
-      'attrs'     => array(),
-      'subnodes'  => array(),
-    );
+      'attrs'     => [],
+      'subnodes'  => [],
+    ];
     for ($i = 0; $i < $attrs['count']; $i++) {
       $key                  = $attrs[$i];
-      if (in_array($key, array('createTimestamp', 'modifyTimestamp'))) {
+      if (in_array($key, ['createTimestamp', 'modifyTimestamp'])) {
         continue;
       }
       $node['attrs'][$key]  = $attrs[$key];
       unset($node['attrs'][$key]['count']);
     }
-    $timestamps = array();
+    $timestamps = [];
     if (isset($attrs['createTimestamp'][0])) {
       $date = LdapGeneralizedTime::fromString($attrs['createTimestamp'][0]);
       $date->setTimezone(timezone::getDefaultTimeZone());
@@ -107,7 +107,7 @@ class ldapDump extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($attrs['dn']);
-    $ldap->search('(objectClass=*)', array('*','createTimestamp','modifyTimestamp'), 'one');
+    $ldap->search('(objectClass=*)', ['*','createTimestamp','modifyTimestamp'], 'one');
     while ($attrs = $ldap->fetch()) {
       $node['subnodes'][$attrs['dn']] = $this->dumpLdapNode($attrs, $node['dn']);
     }
@@ -115,18 +115,18 @@ class ldapDump extends simplePlugin
     return $node;
   }
 
-  function check()
+  function check ()
   {
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 }
 
diff --git a/ldapmanager/addons/ldapmanager/class_csvimport.inc b/ldapmanager/addons/ldapmanager/class_csvimport.inc
index 782f37b34a..a834ccc953 100644
--- a/ldapmanager/addons/ldapmanager/class_csvimport.inc
+++ b/ldapmanager/addons/ldapmanager/class_csvimport.inc
@@ -23,35 +23,35 @@ class csvimport extends simplePlugin
   protected $template_object;
   protected $cachedChoices;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('CSV import'),
       'plDescription' => _('Import of csv data into the ldap tree'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('ldapmanager'),
+      'plObjectType'  => ['ldapmanager'],
       'plPriority'    => 3,
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'import' => array(
+    return [
+      'import' => [
         'name'  => _('Import CSV'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Object type'), _('Type of objects you wish to import'),
             'type', TRUE,
-            array(), '', NULL,
+            [], '', NULL,
             'import_file'
           ),
           new SelectAttribute (
             _('Template'), _('Select a template to apply to imported entries'),
             'template_dn', TRUE,
-            array(), '', NULL,
+            [], '', NULL,
             'import_file'
           ),
           new FileAttribute (
@@ -61,7 +61,7 @@ class csvimport extends simplePlugin
           new SelectAttribute (
             _('Separator'), _('Character used as separator in the CSV file'),
             'separator', TRUE,
-            array(',', ';'), '', NULL,
+            [',', ';'], '', NULL,
             'import_file'
           ),
           new HiddenAttribute (
@@ -82,15 +82,15 @@ class csvimport extends simplePlugin
             NULL, '',
             'import_file'
           )
-        )
-      ),
-      'fields' => array(
+        ]
+      ],
+      'fields' => [
         'name'  => _('Template filling'),
-        'attrs' => array(
+        'attrs' => [
           new CompositeAttribute (
             _('Select fields associations'),
             'fields',
-            array(),
+            [],
             '', '',
             'import_file',
             ''
@@ -102,9 +102,9 @@ class csvimport extends simplePlugin
             NULL, '',
             'import_file'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -119,18 +119,18 @@ class csvimport extends simplePlugin
     $this->attributesAccess['import_submit_fields']->setDisabled(TRUE);
   }
 
-  function typeChanged()
+  function typeChanged ()
   {
     $templates = objects::getTemplates($this->type);
     $this->attributesAccess['template_dn']->setChoices(array_keys($templates), array_values($templates));
   }
 
-  function handle_import_submit()
+  function handle_import_submit ()
   {
     $this->csv_data = $this->parse_csv($this->import_file);
 
     /* Remove fields from previous import, if any */
-    $this->attributesAccess['fields']->setAttributes(array());
+    $this->attributesAccess['fields']->setAttributes([]);
 
     $messages = $this->check();
     if (!empty($messages)) {
@@ -141,7 +141,7 @@ class csvimport extends simplePlugin
     $this->template_object = new template($this->type, $this->template_dn);
 
     /* Add nonrequired field filling feature */
-    $fields = array();
+    $fields = [];
     if (isset($this->csv_data[0])) {
       foreach ($this->csv_data[0] as $key => $field_value) {
         $fields[$key] = $key.' - '.$field_value;
@@ -149,8 +149,8 @@ class csvimport extends simplePlugin
     }
     $fields = array_merge($fields, $this->fixed_values);
     $tpl_attributes = $this->template_object->serialize();
-    $attributesObjects = array();
-    $this->cachedChoices = array();
+    $attributesObjects = [];
+    $this->cachedChoices = [];
     reset($fields);
     foreach ($tpl_attributes as $class => $class_infos) {
       foreach ($class_infos['attrs'] as $attr => $attr_infos) {
@@ -163,7 +163,7 @@ class csvimport extends simplePlugin
     $this->attributesAccess['import_submit_fields']->setDisabled(FALSE);
   }
 
-  private function build_attribute(&$fields, $class, $class_infos, $attr, $attr_infos)
+  private function build_attribute (&$fields, $class, $class_infos, $attr, $attr_infos)
   {
     $choices  = $fields;
     $value    = NULL;
@@ -180,12 +180,12 @@ class csvimport extends simplePlugin
       next($fields);
     }
     if (isset($attr_infos['attributes'])) {
-      $subattrs = array();
+      $subattrs = [];
       foreach ($attr_infos['attributes'] as $subattr => $subattr_infos) {
         if ($subattr_infos['visible']) {
           $subattribute = $this->build_attribute($fields, $class, $class_infos, $subattr, $subattr_infos);
         } else {
-          $this->cachedChoices['template_'.$class.':'.$subattr] = array($attr_infos['value']);
+          $this->cachedChoices['template_'.$class.':'.$subattr] = [$attr_infos['value']];
           $subattribute = new HiddenAttribute('template_'.$class.':'.$subattr, FALSE, count($fields));
         }
         $subattrs[] = $subattribute;
@@ -222,11 +222,11 @@ class csvimport extends simplePlugin
     }
   }
 
-  function handle_import_submit_fields()
+  function handle_import_submit_fields ()
   {
     $success = 0;
     foreach ($this->csv_data as $rownumber => $row) {
-      $values = array();
+      $values = [];
       foreach ($this->attributesAccess['fields']->attributes as $attribute) {
         preg_match('/^template_([^:]+):(.*)$/', $attribute->getLdapName(), $m);
         $values[$m[1]][$m[2]] = $this->compute_attribute_value($attribute, $row);
@@ -237,7 +237,7 @@ class csvimport extends simplePlugin
         $tabObject = $this->template_object->apply();
         $msgs = $tabObject->save();
       } elseif (!is_array($msgs)) {
-        $msgs = array($msgs);
+        $msgs = [$msgs];
       }
       if (count($msgs)) {
         $msg = '<ul><li>'.implode('</li><li>', $msgs).'</li></ul>';
@@ -252,10 +252,10 @@ class csvimport extends simplePlugin
     }
   }
 
-  private function compute_attribute_value($attribute, array $row, $i = NULL)
+  private function compute_attribute_value ($attribute, array $row, $i = NULL)
   {
     if ($attribute instanceof CompositeAttribute) {
-      $value = array();
+      $value = [];
       foreach ($attribute->attributes as $key => $subattribute) {
         $value[$key] = $this->compute_attribute_value($subattribute, $row);
       }
@@ -265,7 +265,7 @@ class csvimport extends simplePlugin
       $i = $attribute->getValue();
     }
     if (is_array($i)) {
-      $value = array();
+      $value = [];
       foreach ($i as $j) {
         $v = explode($this->valueSeparator, $this->compute_attribute_value($attribute, $row, $j));
         $value = array_merge($value, $v);
@@ -282,13 +282,13 @@ class csvimport extends simplePlugin
     }
   }
 
-  function parse_csv($str)
+  function parse_csv ($str)
   {
     $lines  = preg_split("/\n/", $str);
 
     $anz    = 0;
     $rest   = 0;
-    $data   = array();
+    $data   = [];
 
     /* check column count */
     if (is_array($lines)) {
@@ -312,7 +312,7 @@ class csvimport extends simplePlugin
       /* Generate array with output info  */
       if (is_array($lines)) {
         foreach ($lines as $line) {
-          $line_data = array();
+          $line_data = [];
           $rest = 0;
           $cnt  = 0;
 
@@ -348,14 +348,14 @@ class csvimport extends simplePlugin
     return $data;
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/ldapmanager/addons/ldapmanager/class_ldapmanager.inc b/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
index c97da9ed7f..fd1f5d86b2 100644
--- a/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
+++ b/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
@@ -39,31 +39,31 @@ class BaseSelectorOrDnAttribute extends BaseSelectorAttribute
 class ldapmanager extends simplePlugin
 {
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('LDIF'),
       'plDescription' => _('Export/Import the ldap tree to/from LDIF format'),
-      'plObjectType'  => array('ldapmanager' => array(
+      'plObjectType'  => ['ldapmanager' => [
         'name'      => _('LDAP Manager'),
         'tabClass'  => 'ldiftabs',
         'mainAttr'  => FALSE
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'export' => array(
+    return [
+      'export' => [
         'name'  => _('Export'),
-        'attrs' => array(
+        'attrs' => [
           new CompositeAttribute (
             _('DN of a single entry to export as ldif'),
             'single_export',
-            array(
+            [
               new StringAttribute (
                 '', '',
                 'single_dn', FALSE
@@ -73,7 +73,7 @@ class ldapmanager extends simplePlugin
                 'single_submit',
                 _('Export')
               )
-            ),
+            ],
             '', '%s%s', '',
             _('Export single entry')
           ),
@@ -86,22 +86,22 @@ class ldapmanager extends simplePlugin
           new CompositeAttribute (
             _('Download a complete snapshot of the running LDAP directory for this base as ldif'),
             'complete_export',
-            array(
+            [
               new BaseSelectorOrDnAttribute ('', '', ''),
               new ButtonAttribute (
                 '', '',
                 'complete_submit',
                 _('Export')
               )
-            ),
+            ],
             '', '%s%s', '',
             _('Export complete LDIF for')
           )
-        )
-      ),
-      'import' => array(
+        ]
+      ],
+      'import' => [
         'name'  => _('Import LDIF'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Overwrite existing entries'), _('Remove fields that are not in the LDIF from the LDAP entries if they were existing.'),
             'overwrite', FALSE,
@@ -110,7 +110,7 @@ class ldapmanager extends simplePlugin
           new CompositeAttribute (
             _('Import an LDIF file into your LDAP. Remember that FusionDirectory will not check your LDIFs for FusionDirectory conformance.'),
             'import',
-            array(
+            [
               new FileTextAreaAttribute (
                 '', '',
                 'import_ldif_file', FALSE
@@ -120,13 +120,13 @@ class ldapmanager extends simplePlugin
                 'import_ldif_submit',
                 _('Import')
               )
-            ),
+            ],
             '', '%s%s', '',
             _('Import LDIF file')
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -143,7 +143,7 @@ class ldapmanager extends simplePlugin
     $this->attributesAccess['export_filter']->setInLdap(FALSE);
   }
 
-  function handle_single_submit()
+  function handle_single_submit ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
@@ -158,13 +158,13 @@ class ldapmanager extends simplePlugin
     $this->save_export($dn, $acl, 'base', 'entryExport.ldif');
   }
 
-  function handle_complete_submit()
+  function handle_complete_submit ()
   {
     $acl    = $this->attributesAccess['complete_export']->getAcl();
     $this->save_export($this->complete_export, $acl, 'sub', 'fullExport.ldif');
   }
 
-  function save_export($dn, $acl, $scope, $name)
+  function save_export ($dn, $acl, $scope, $name)
   {
     global $config;
     // An LDIF export was asked
@@ -188,7 +188,7 @@ class ldapmanager extends simplePlugin
     }
   }
 
-  function handle_import_ldif_submit()
+  function handle_import_ldif_submit ()
   {
     global $config;
     if (empty($this->import)) {
@@ -204,17 +204,17 @@ class ldapmanager extends simplePlugin
     }
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 
-  function get_allowed_bases()
+  function get_allowed_bases ()
   {
     global $config;
     return $config->idepartments;
diff --git a/ldapmanager/addons/ldapmanager/tabs_ldif.inc b/ldapmanager/addons/ldapmanager/tabs_ldif.inc
index 4af8d9ccff..d98089514f 100644
--- a/ldapmanager/addons/ldapmanager/tabs_ldif.inc
+++ b/ldapmanager/addons/ldapmanager/tabs_ldif.inc
@@ -21,22 +21,22 @@
 
 class ldiftabs extends simpleTabs_noSpecial
 {
-  function save()
+  function save ()
   {
   }
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('LDAP import/export'),
       'plDescription' => _('Allows the import or export of the ldap tree'),
       'plIcon'        => 'geticon.php?context=applications&icon=ldapmanager&size=48',
       'plSection'     => 'conf',
       'plPriority'    => 10,
-      'plCategory'    => array('ldapmanager' => array('objectClass' => 'none', 'description' => _('Ldap manager'))),
+      'plCategory'    => ['ldapmanager' => ['objectClass' => 'none', 'description' => _('Ldap manager')]],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/mail/admin/groups/mail/class_mailGroup.inc b/mail/admin/groups/mail/class_mailGroup.inc
index 4db7c98466..329532fd07 100644
--- a/mail/admin/groups/mail/class_mailGroup.inc
+++ b/mail/admin/groups/mail/class_mailGroup.inc
@@ -31,34 +31,34 @@ class GroupMailsAttribute extends MailsAttribute
 
   function getFilterBlackList ()
   {
-    return array('mail' => $this->getForbiddenValues());
+    return ['mail' => $this->getForbiddenValues()];
   }
 }
 
 class mailGroup extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array('fdGroupMail');
+  var $objectclasses  = ['fdGroupMail'];
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Mail'),
       'plDescription'   => _('Group mail options'),
       'plIcon'          => 'geticon.php?context=applications&icon=internet-mail&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=internet-mail&size=16',
       'plPriority'      => 10,
-      'plObjectType'    => array('group', 'ogroup-user'),
+      'plObjectType'    => ['group', 'ogroup-user'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Information'),
-        'attrs' => array(
+        'attrs' => [
           new MailAttribute (
             _('Primary address'), _('The primary mail address'),
             'mail', TRUE
@@ -66,7 +66,7 @@ class mailGroup extends simplePlugin
           new SelectAttribute (
             _('Server'), _('Email server'),
             'gosaMailServer', TRUE,
-            array('')
+            ['']
           ),
           new SetAttribute (
             new StringAttribute (
@@ -83,9 +83,9 @@ class mailGroup extends simplePlugin
             'fdGroupMailLocalOnly', FALSE,
             FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -98,7 +98,7 @@ class mailGroup extends simplePlugin
   }
 
   /* We need $mailAccount->cn to return the cn for mailMethod */
-  public function __get($name)
+  public function __get ($name)
   {
     if (($name == 'cn') && isset($this->parent)) {
       return $this->parent->getBaseObject()->$name;
@@ -108,7 +108,7 @@ class mailGroup extends simplePlugin
     }
   }
 
-  public function __isset($name)
+  public function __isset ($name)
   {
     if (($name == 'cn') && isset($this->parent)) {
       return isset($this->parent->getBaseObject()->$name);
@@ -118,7 +118,7 @@ class mailGroup extends simplePlugin
     }
   }
 
-  public function mailServerChanged()
+  public function mailServerChanged ()
   {
     /* Intialize the used mailMethod */
     if ($this->gosaMailServer == '') {
@@ -152,7 +152,7 @@ class mailGroup extends simplePlugin
     } else {
       $this->attributesAccess['gosaMailForwardingAddress']->setDisabled(TRUE);
       $this->attributesAccess['gosaMailForwardingAddress']->setVisible(FALSE);
-      $this->attributesAccess['gosaMailForwardingAddress']->setValue(array());
+      $this->attributesAccess['gosaMailForwardingAddress']->setValue([]);
     }
   }
 
@@ -167,13 +167,13 @@ class mailGroup extends simplePlugin
     return $messages;
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* mail method might have something to save (like password change from main tab for instance) */
     return TRUE;
   }
 
-  public function ldap_save()
+  public function ldap_save ()
   {
     if (!empty($this->attrs)) {
       $errors = parent::ldap_save();
@@ -182,7 +182,7 @@ class mailGroup extends simplePlugin
       }
     }
 
-    $errors = array();
+    $errors = [];
 
     /* Only do IMAP actions if we are not a template */
     if (!$this->is_template) {
@@ -207,7 +207,7 @@ class mailGroup extends simplePlugin
     return $errors;
   }
 
-  function post_remove()
+  function post_remove ()
   {
     /* Let the mailMethod remove this mailbox */
     if (!$this->is_template) {
diff --git a/mail/admin/systems/services/imap/class_serviceIMAP.inc b/mail/admin/systems/services/imap/class_serviceIMAP.inc
index 2fac18bb45..3ecef08c64 100644
--- a/mail/admin/systems/services/imap/class_serviceIMAP.inc
+++ b/mail/admin/systems/services/imap/class_serviceIMAP.inc
@@ -32,7 +32,7 @@ class simpleMailMethodService extends simpleService
     return parent::prepare_save();
   }
 
-  protected function post_save()
+  protected function post_save ()
   {
     parent::post_save();
     mailMethod::resetMailServersCache();
@@ -48,18 +48,18 @@ class simpleMailMethodService extends simpleService
 class serviceIMAP extends simpleMailMethodService
 {
   /* This plugin only writes its objectClass */
-  var $objectclasses = array('fdImapServer');
+  var $objectclasses = ['fdImapServer'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('IMAP/POP3 generic service'),
       'plDescription' => _('IMAP/POP3').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=imap&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -67,10 +67,10 @@ class serviceIMAP extends simpleMailMethodService
    */
   static function getAttributesInfo ()
   {
-    return array();
+    return [];
   }
 
-  function execute()
+  function execute ()
   {
     return '<b>This server runs an IMAP or POP3 server</b>'.parent::execute();
   }
diff --git a/mail/config/mail/class_mailPluginConfig.inc b/mail/config/mail/class_mailPluginConfig.inc
index 0ad357df7a..c4fe9eb800 100644
--- a/mail/config/mail/class_mailPluginConfig.inc
+++ b/mail/config/mail/class_mailPluginConfig.inc
@@ -20,31 +20,31 @@
 
 class mailPluginConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdMailPluginConf");
+  var $objectclasses  = ["fdMailPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("Mail"),
       "plDescription"   => _("Mail plugin configuration"),
       "plPriority"      => 3,
-      "plObjectType"    => array("configuration"),
+      "plObjectType"    => ["configuration"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'mail' => array(
+    return [
+      'mail' => [
         'name'  => _('Mail settings'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Account identification attribute'),
             _('Which attribute will be used to create accounts.'),
             'fdMailAttribute', TRUE,
-            array('mail', 'uid')
+            ['mail', 'uid']
           ),
           new StringAttribute (
             _('User account template'),
@@ -84,9 +84,9 @@ class mailPluginConfig extends simplePlugin
             _('Prefix to add for mail shared folders.'),
             'fdMailSharedPrefix'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/mail/personal/mail/class_mail-methods.inc b/mail/personal/mail/class_mail-methods.inc
index 6f00cc55ec..60ab75f186 100644
--- a/mail/personal/mail/class_mail-methods.inc
+++ b/mail/personal/mail/class_mail-methods.inc
@@ -63,9 +63,9 @@ class mailMethod
   protected $mailSharedPrefix = '';
 
   /* The attribute mapping for this class  Source --> Destination */
-  protected $attributes         = array();
-  protected $userObjectClasses  = array();
-  protected $shareObjectClasses = array();
+  protected $attributes         = [];
+  protected $userObjectClasses  = [];
+  protected $shareObjectClasses = [];
 
   /* Features */
   protected $enableQuota            = TRUE;
@@ -88,9 +88,9 @@ class mailMethod
   protected $error              = '';
   protected $parent             = NULL;
 
-  protected $default_acls = array('__anyone__' => 'p', '__member__' => 'lrswp');
+  protected $default_acls = ['__anyone__' => 'p', '__member__' => 'lrswp'];
 
-  protected $acl_map = array(
+  protected $acl_map = [
     'lrsw'      => 'read',
     'lrswp'     => 'post',
     'p'         => 'external post',
@@ -99,15 +99,15 @@ class mailMethod
     'lrswipcd'  => 'write',
     'lrswipcda' => 'admin',
     ' '         => 'none'
-  );
+  ];
 
-  protected $acl_mapping = array();
+  protected $acl_mapping = [];
 
   /*! \brief  Constructs the mail class
       @param  Object  Plugin  The initator
       @param  String          Open "user" or "group" account.
    */
-  function __construct($parent, $type = 'user')
+  function __construct ($parent, $type = 'user')
   {
     $this->parent = $parent;
 
@@ -115,7 +115,7 @@ class mailMethod
       trigger_error('mailMethod with invalid parent object initialized.');
     }
 
-    if (!in_array($this->type, array('user','group'))) {
+    if (!in_array($this->type, ['user','group'])) {
       trigger_error('Unknown mail class type used "'.$type.'".');
     } else {
       $this->type = $type;
@@ -125,7 +125,7 @@ class mailMethod
 
   /*! \brief  Intialize attributes and config settings.
    */
-  protected function init()
+  protected function init ()
   {
     global $config;
     /* Get config value for cyrusUseSlashes */
@@ -140,7 +140,7 @@ class mailMethod
        is overridden in the configuration file */
     if ($config->get_cfg_value('mailAttribute', '') != '') {
       $new_uattrib = strtolower($config->get_cfg_value('mailAttribute'));
-      if (in_array($new_uattrib, array('mail','uid'))) {
+      if (in_array($new_uattrib, ['mail','uid'])) {
         $this->uattrib = $new_uattrib;
       } else {
         @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$new_uattrib."</b>",
@@ -179,7 +179,7 @@ class mailMethod
     $this->initial_account_id = $this->account_id;
   }
 
-  public function fixAttributesOnLoad()
+  public function fixAttributesOnLoad ()
   {
     foreach ($this->attributes as $source => $dest) {
       if (isset($this->parent->attrs[$source])) {
@@ -194,7 +194,7 @@ class mailMethod
     }
   }
 
-  public function fixAttributesOnRemove()
+  public function fixAttributesOnRemove ()
   {
     /* Remove objectClasses */
     if ($this->type == 'user') {
@@ -203,15 +203,15 @@ class mailMethod
     } else {
       $this->parent->attrs['objectClass'] =
         array_remove_entries_ics($this->shareObjectClasses, $this->parent->attrs['objectClass']);
-      $this->parent->attrs['gosaSharedFolderTarget'] = array();
+      $this->parent->attrs['gosaSharedFolderTarget'] = [];
     }
     foreach ($this->attributes as $source => $dest) {
-      $this->attrs[$dest]   = array();
-      $this->attrs[$source] = array();
+      $this->attrs[$dest]   = [];
+      $this->attrs[$source] = [];
     }
   }
 
-  public function fixAttributesOnStore()
+  public function fixAttributesOnStore ()
   {
     foreach ($this->attributes as $source => $dest) {
       if (isset($this->parent->attrs[$dest])) {
@@ -244,10 +244,10 @@ class mailMethod
               Not necessary for the base class.
       @return Boolean True if this method is connected else false.
    */
-  public function connect()
+  public function connect ()
   {
     $this->reset_error();
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class($this), '<b>MAIL: Connect method</b>');
+    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class ($this), '<b>MAIL: Connect method</b>');
     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->parent->gosaMailServer, '<b>MAIL: Current server</b>');
 
     $this->connected = TRUE;
@@ -257,7 +257,7 @@ class mailMethod
   /*! \brief  Returns the connection status of this method.
       @return Boolean True if this method is connected else false.
    */
-  public function is_connected()
+  public function is_connected ()
   {
     return $this->connected;
   }
@@ -265,27 +265,27 @@ class mailMethod
   /*! \brief  Disconnect this method. Close services like imap connection.
               Not necessary for the base class.
    */
-  public function disconnect()
+  public function disconnect ()
   {
     $this->reset_error();
     if ($this->is_connected()) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class($this), '<b>MAIL: Disconnect method</b>');
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class ($this), '<b>MAIL: Disconnect method</b>');
       $this->connected = FALSE;
     }
   }
 
   /*! \brief Checks data consistency
   */
-  public function check()
+  public function check ()
   {
-    return array();
+    return [];
   }
 
   /*! \brief  Returns true the current object represents a valid account
               (Some methods may check imap accounts here.)
       @return Boolean TRUE if this is a valid account else FALSE
   */
-  public function account_exists()
+  public function account_exists ()
   {
     $this->reset_error();
     return TRUE;
@@ -294,17 +294,17 @@ class mailMethod
   /*! \brief  Returns the last error occurred
       @return String  The last error message.
    */
-  public function get_error()
+  public function get_error ()
   {
     return $this->error;
   }
 
-  public function isModifyableMail()
+  public function isModifyableMail ()
   {
     return $this->modifyableMail;
   }
 
-  public function isModifyableServer()
+  public function isModifyableServer ()
   {
     return $this->modifyableServer;
   }
@@ -312,19 +312,19 @@ class mailMethod
   /*! \brief  Returns TRUE if the action caused an error.
       @return Boolean TRUE on error else FALSE
    */
-  public function is_error()
+  public function is_error ()
   {
     return ($this->error != '');
   }
 
   /*! \brief  Resets the error message.
    */
-  public function reset_error()
+  public function reset_error ()
   {
     $this->error = '';
   }
 
-  public function get_account_id()
+  public function get_account_id ()
   {
     $this->build_account_id();
     return $this->account_id;
@@ -332,7 +332,7 @@ class mailMethod
 
   /*! \brief  Create a new account id, like 'user/name@domain.com'.
    */
-  protected function build_account_id()
+  protected function build_account_id ()
   {
     /* Build account identicator */
     if ($this->type == "user") {
@@ -364,7 +364,7 @@ class mailMethod
 
     /* Create account_id
      */
-    $from   = array("/%cn%/i","/%uid%/i","/%prefix%/i","/%uattrib%/i","/%domain%/i","/%mailpart%/i","/%mail%/i");
+    $from   = ["/%cn%/i","/%uid%/i","/%prefix%/i","/%uattrib%/i","/%domain%/i","/%mailpart%/i","/%mail%/i"];
     $uid    = '';
     $cn     = '';
     $attrib = '';
@@ -379,7 +379,7 @@ class mailMethod
     if (isset($this->parent->$uattrib)) {
       $attrib = $this->parent->$uattrib;
     }
-    $to     = array($cn,$uid,$prefix,$attrib,$domain,$mailpart,$mail);
+    $to     = [$cn,$uid,$prefix,$attrib,$domain,$mailpart,$mail];
     $acc_id = trim(strtolower(preg_replace($from, $to, $acc_string)));
 
     /* Check for not replaced pattern.
@@ -408,7 +408,7 @@ class mailMethod
               This function is mainly used to read and write folder permissions.
       @return String A valid folder id
    */
-  public function create_folder_id($folder)
+  public function create_folder_id ($folder)
   {
     if (!empty($folder)) {
       $folder = trim(preg_replace("/^INBOX[\.\/]*/i", "", $folder));
@@ -446,8 +446,8 @@ class mailMethod
     }
 
     /* Create account_id */
-    $from   = array("/%cn%/i","/%uid%/i","/%prefix%/i","/%uattrib%/i","/%domain%/i","/%mailpart%/i","/%mail%/i");
-    $to     = array($this->parent->cn,$this->parent->uid,$prefix,$this->parent->$uattrib, $domain, $mailpart,$mail);
+    $from   = ["/%cn%/i","/%uid%/i","/%prefix%/i","/%uattrib%/i","/%domain%/i","/%mailpart%/i","/%mail%/i"];
+    $to     = [$this->parent->cn,$this->parent->uid,$prefix,$this->parent->$uattrib, $domain, $mailpart,$mail];
     $acc_id = trim(strtolower(preg_replace($from, $to, $acc_string)));
 
     /* Check for not replaced pattern */
@@ -473,7 +473,7 @@ class mailMethod
 
   /*! \brief Saves sieve settings
    */
-  public function saveSieveSettings()
+  public function saveSieveSettings ()
   {
     $this->reset_error();
     return TRUE;
@@ -481,7 +481,7 @@ class mailMethod
 
   /*! \brief  Creates or Updates the mailAccount represented by this class.
    */
-  public function updateMailbox()
+  public function updateMailbox ()
   {
     $this->reset_error();
     return TRUE;
@@ -490,7 +490,7 @@ class mailMethod
   /*! \brief  Removes the mailbox represented by this class,
                and update shared folder ACLs .
    */
-  public function deleteMailbox()
+  public function deleteMailbox ()
   {
     $this->reset_error();
     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
@@ -502,7 +502,7 @@ class mailMethod
   /*! \brief  Returns the used mail attribute (mail,uid)
       @param  String  One out of 'mail','uid'
    */
-  public function getUAttrib()
+  public function getUAttrib ()
   {
     return $this->uattrib;
   }
@@ -510,7 +510,7 @@ class mailMethod
   /*! \brief  Returns the used mail attribute (mail,uid)
       @param  String  One out of 'mail','uid'
    */
-  public function getUAttribValue()
+  public function getUAttribValue ()
   {
     $uattrib = $this->getUAttrib();
     return $this->parent->$uattrib;
@@ -519,7 +519,7 @@ class mailMethod
   /*! \brief  Returns whether the quota settings are enabled or not
       @return Boolean TRUE if enabled else FALSE
    */
-  public function quotaEnabled()
+  public function quotaEnabled ()
   {
     return $this->enableQuota;
   }
@@ -527,7 +527,7 @@ class mailMethod
   /*! \brief  Returns the used quota
       @return Integer Quota used.
    */
-  public function getQuotaUsage()
+  public function getQuotaUsage ()
   {
     return -1;
   }
@@ -535,14 +535,14 @@ class mailMethod
   /*! \brief  Returns the quota restrictions.
       @return Integer Quota restrictions.
    */
-  public function getQuota($quotaValue)
+  public function getQuota ($quotaValue)
   {
     return $quotaValue;
   }
 
   /*! \brief  Sets the mail quota
    */
-  public function setQuota($number)
+  public function setQuota ($number)
   {
     if (!is_numeric($number)) {
       $number = (int) $number;
@@ -557,15 +557,15 @@ class mailMethod
   /*! \brief  Returns the list of configured mailbox folders
       @return Array The mailbox folders.
    */
-  public function getMailboxList()
+  public function getMailboxList ()
   {
-    return array("INBOX");
+    return ["INBOX"];
   }
 
   /*! \brief  Returns whether the vacation is enabled
       @return Boolean TRUE, FALSE
    */
-  public function vacationEnabled()
+  public function vacationEnabled ()
   {
     return $this->enableVacation;
   }
@@ -573,7 +573,7 @@ class mailMethod
   /*! \brief  Returns whether the vacation range is selectable or not
       @return Boolean TRUE, FALSE
    */
-  public function vacationRangeEnabled()
+  public function vacationRangeEnabled ()
   {
     return ($this->vacationEnabled() && $this->enableVacationRange);
   }
@@ -581,7 +581,7 @@ class mailMethod
   /*! \brief  Returns whether forwarding to group non-members is possible
       @return Boolean TRUE, FALSE
    */
-  public function groupForwardingEnabled()
+  public function groupForwardingEnabled ()
   {
     return $this->enableGroupForwarding;
   }
@@ -589,7 +589,7 @@ class mailMethod
   /*! \brief  Returns whether forcing to only send/recieve local mail is possible
       @return Boolean TRUE, FALSE
    */
-  public function localOnlyEnabled()
+  public function localOnlyEnabled ()
   {
     return $this->enableLocalOnly;
   }
@@ -597,14 +597,14 @@ class mailMethod
   /*! \brief  Returns whether forwarding without storing the mail is possible
       @return Boolean TRUE, FALSE
    */
-  public function forwardOnlyEnabled()
+  public function forwardOnlyEnabled ()
   {
     return $this->enableForwardOnly;
   }
 
   /*! \brief  Checks dependencies to other FusionDirectory plugins.
    */
-  public function accountCreateable(&$reason = "")
+  public function accountCreateable (&$reason = "")
   {
     return TRUE;
   }
@@ -612,7 +612,7 @@ class mailMethod
   /*! \brief  Checks whether this account is removeable or not.
               There may be some dependencies left, eg. kolab.
    */
-  public function accountRemoveable(&$reason = "")
+  public function accountRemoveable (&$reason = "")
   {
     return TRUE;
   }
@@ -621,13 +621,13 @@ class mailMethod
   /*! \brief  Returns all mail servers configured in FusionDirectory
       @return Array  All useable mail servers
   */
-  static public function getMailServers()
+  static public function getMailServers ()
   {
     if (session::global_is_set('mailServers')) {
       return session::global_get('mailServers');
     }
     $methods = mailMethod::get_methods();
-    $servers = array();
+    $servers = [];
     foreach ($methods as $class) {
       $servers = array_merge($servers, $class::get_server_list());
     }
@@ -635,7 +635,7 @@ class mailMethod
     return $servers;
   }
 
-  static public function resetMailServersCache()
+  static public function resetMailServersCache ()
   {
     session::global_un_set('mailServers');
   }
@@ -643,10 +643,10 @@ class mailMethod
   /*! \brief  Returns the available mailMethods
       @return Array   A list of all avaialable mailMethods_
    */
-  static public function get_methods()
+  static public function get_methods ()
   {
     global $class_mapping;
-    $available = array('mailMethod' => 'mailMethod');
+    $available = ['mailMethod' => 'mailMethod'];
     foreach ($class_mapping as $class => $path) {
       if (preg_match('/^mailMethod.+/', $class)) {
         $available[$class] = $class;
@@ -655,7 +655,7 @@ class mailMethod
     return $available;
   }
 
-  static public function getServerMethod($server)
+  static public function getServerMethod ($server)
   {
     $methods = mailMethod::get_methods();
     foreach ($methods as $class) {
@@ -668,12 +668,12 @@ class mailMethod
     return 'mailMethod';
   }
 
-  static public function serverMatch($server)
+  static public function serverMatch ($server)
   {
     return isset(static::get_server_list()[$server]);
   }
 
-  static public function getInstance($class, $parent, $type = NULL)
+  static public function getInstance ($class, $parent, $type = NULL)
   {
     if ($parent instanceof mailAccount) {
       $type = 'user';
@@ -687,7 +687,7 @@ class mailMethod
 
   /*! \brief  Returns configured acls
    */
-  public function  getFolderACLs($folder_acls)
+  public function  getFolderACLs ($folder_acls)
   {
     /* Merge given ACL with acl mapping
        This ensures that no ACL will accidentally overwritten by fusiondirectory.
@@ -703,7 +703,7 @@ class mailMethod
 
   /*! \brief  Write ACLs back to imap or what ever
    */
-  public function  setFolderACLs($array)
+  public function  setFolderACLs ($array)
   {
     return TRUE;
   }
@@ -711,7 +711,7 @@ class mailMethod
   /*! \brief  Returns a list of all possible acls.
       @return Array   ACLs.
   */
-  public function getAclTypes()
+  public function getAclTypes ()
   {
     return $this->acl_mapping;
   }
@@ -719,7 +719,7 @@ class mailMethod
   /*! \brief  Returns the configured mailMethod
       @return String  the configured mail method or ""
    */
-  static public function get_current_method()
+  static public function get_current_method ()
   {
     global $class_mapping, $config;
     $method = $config->get_cfg_value("mailmethod");
@@ -732,7 +732,7 @@ class mailMethod
     return "";
   }
 
-  static function quota_to_image($use, $quota)
+  static function quota_to_image ($use, $quota)
   {
     if ($use == -1) {
       return "&nbsp;&nbsp;"._("Unknown");
@@ -744,16 +744,16 @@ class mailMethod
     }
   }
 
-  static public function get_server_list()
+  static public function get_server_list ()
   {
     global $config;
-    $serverList = array();
+    $serverList = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=fdImapServer)', array('cn'));
+    $ldap->search('(objectClass=fdImapServer)', ['cn']);
     while ($attrs = $ldap->fetch()) {
-      $serverList[$attrs['cn'][0]] = array(
+      $serverList[$attrs['cn'][0]] = [
         'server_dn'     => $attrs['dn'],
         'connect'       => '',
         'admin'         => '',
@@ -761,7 +761,7 @@ class mailMethod
         'sieve_server'  => '',
         'sieve_option'  => '',
         'sieve_port'    => ''
-      );
+      ];
     }
 
     return $serverList;
@@ -770,7 +770,7 @@ class mailMethod
   /*! \brief  Returns the default sharedFolder ACLs for this method.
       @return Array Returns an array containg acls for __member__ and __anyone__
    */
-  public function getDefaultACLs()
+  public function getDefaultACLs ()
   {
     $tmp = $this->default_acls;
     if (!isset($tmp['__member__'])) {
@@ -782,9 +782,9 @@ class mailMethod
     return $tmp;
   }
 
-  public function additionalInformations()
+  public function additionalInformations ()
   {
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/mail/personal/mail/class_mailAccount.inc b/mail/personal/mail/class_mailAccount.inc
index 68b43fac30..6f8ac1ad6f 100644
--- a/mail/personal/mail/class_mailAccount.inc
+++ b/mail/personal/mail/class_mailAccount.inc
@@ -36,7 +36,7 @@ class MailQuotaAttribute extends IntAttribute
 {
   private $quotaUsage;
 
-  function setMailMethod($mailMethod)
+  function setMailMethod ($mailMethod)
   {
     /* Read quota */
     $this->value = $mailMethod->getQuota($this->value);
@@ -47,15 +47,15 @@ class MailQuotaAttribute extends IntAttribute
     }
   }
 
-  function renderAttribute(&$attributes, $readOnly)
+  function renderAttribute (&$attributes, $readOnly)
   {
     parent::renderAttribute($attributes, $readOnly);
-    $attributes[$this->getLdapName().'_usage'] = array(
+    $attributes[$this->getLdapName().'_usage'] = [
       'htmlid'      => $this->getHtmlId().'_usage',
       'label'       => '{literal}'._('Quota usage').'{/literal}',
       'description' => _('Part of the quota which is used'),
       'input'       => mailMethod::quota_to_image($this->quotaUsage, $this->value),
-    );
+    ];
   }
 }
 
@@ -63,27 +63,27 @@ class MailQuotaAttribute extends IntAttribute
 class mailAccount extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array('gosaMailAccount');
+  var $objectclasses  = ['gosaMailAccount'];
 
-  private $mainSectionAttrs = array();
+  private $mainSectionAttrs = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Mail'),
       'plDescription'   => _('Mail settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=internet-mail&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=internet-mail&size=16',
       'plSelfModify'    => TRUE,
       'plPriority'      => 4,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo()),
-      'plForeignKeys'  => array(
-        'gosaMailServer' => array(
-          array('serverGeneric', 'cn'),
-        )
-      )
-    );
+      'plForeignKeys'  => [
+        'gosaMailServer' => [
+          ['serverGeneric', 'cn'],
+        ]
+      ]
+    ];
   }
 
   /*!
@@ -91,10 +91,10 @@ class mailAccount extends simplePlugin
   */
   static function getAttributesInfo ()
   {
-    return array (
-      'main' => array (
+    return  [
+      'main' => [
         'name'  => _('Mail account'),
-        'attrs' => array (
+        'attrs' => [
           new MailAttribute (
             _('Primary address'), _('Primary mail address'),
             'mail', TRUE
@@ -102,18 +102,18 @@ class mailAccount extends simplePlugin
           new SelectAttribute (
             _('Server'), _('Specify the mail server where the user will be hosted on'),
             'gosaMailServer', FALSE,
-            array()
+            []
           ),
           new MailQuotaAttribute (
             _('Quota size'), _('Define quota size in MiB'),
             'gosaMailQuota', FALSE,
             0, FALSE
           )
-        )
-      ),
-      'other_addresses' => array(
+        ]
+      ],
+      'other_addresses' => [
         'name'  => _('Other addresses and redirections'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute (
             new MailAttribute (
               _('Alternative addresses'), _('List of alternative mail addresses'),
@@ -124,11 +124,11 @@ class mailAccount extends simplePlugin
             _('Forward messages to'), _('Addresses to which messages should be forwarded'),
             'gosaMailForwardingAddress'
           )
-        )
-      ),
-      'options1' => array(
+        ]
+      ],
+      'options1' => [
         'name' => _('Vacation message'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Activate vacation message'),
             _('Select to automatically response with the vacation message defined below'),
@@ -149,16 +149,16 @@ class mailAccount extends simplePlugin
             _('Vacation message'), 'The message you wish be sent during your absence',
             'gosaVacationMessage'
           ),
-        )
-      ),
-      'advanced' => array (
+        ]
+      ],
+      'advanced' => [
          'name' => _('Advanced mail options'),
-         'attrs' => array (
-          new FlagsAttribute ('gosaMailDeliveryMode', array(
+         'attrs' => [
+          new FlagsAttribute ('gosaMailDeliveryMode', [
             'flag_ownmailbox',
             'flag_vacation',
             'flag_localonly'
-          )),
+          ]),
           new BooleanAttribute (
             _('User is only allowed to send and receive local mails'),
             _('Select if user can only send and receive inside his own domain'),
@@ -171,9 +171,9 @@ class mailAccount extends simplePlugin
             'flag_ownmailbox', FALSE, FALSE, '',
             'I', ''
           ),
-        )
-      )
-    );
+         ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -197,7 +197,7 @@ class mailAccount extends simplePlugin
     }
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     if (parent::is_this_account($attrs)) {
       return TRUE;
@@ -207,11 +207,11 @@ class mailAccount extends simplePlugin
   }
 
   /* We need $mailAccount->uid to return the uid for mailMethod */
-  public function __get($name)
+  public function __get ($name)
   {
-    if (in_array($name, array('cn','uid')) && isset($this->parent)) {
+    if (in_array($name, ['cn','uid']) && isset($this->parent)) {
       return $this->parent->getBaseObject()->$name;
-    } elseif (in_array($name, array('uidNumber','gidNumber')) && isset($this->parent)) {
+    } elseif (in_array($name, ['uidNumber','gidNumber']) && isset($this->parent)) {
       return $this->parent->by_object['posixAccount']->$name;
     } else {
       /* Calling default behaviour */
@@ -219,11 +219,11 @@ class mailAccount extends simplePlugin
     }
   }
 
-  public function __isset($name)
+  public function __isset ($name)
   {
-    if (in_array($name, array('cn','uid')) && isset($this->parent)) {
+    if (in_array($name, ['cn','uid']) && isset($this->parent)) {
       return isset($this->parent->getBaseObject()->$name);
-    } elseif (in_array($name, array('uidNumber','gidNumber')) && isset($this->parent)) {
+    } elseif (in_array($name, ['uidNumber','gidNumber']) && isset($this->parent)) {
       return isset($this->parent->by_object['posixAccount']->$name);
     } else {
       /* Calling default behaviour */
@@ -240,7 +240,7 @@ class mailAccount extends simplePlugin
     parent::foreignKeyUpdate ($field, $oldvalue, $newvalue, $source);
   }
 
-  public function mailServerChanged()
+  public function mailServerChanged ()
   {
     /* Intialize the used mailMethod */
     if ($this->gosaMailServer == '') {
@@ -315,13 +315,13 @@ class mailAccount extends simplePlugin
       $this->attributesAccess['gosaVacationStop']->setDisabled(FALSE);
       $this->attributesAccess['gosaVacationStart']->setDisabled(FALSE);
       $this->attributesAccess['flag_vacation']->setManagedAttributes (
-        array (
-          'erase' => array (
-            FALSE => array (
+         [
+          'erase' => [
+            FALSE => [
               'gosaVacationStart','gosaVacationStop','gosaVacationMessage'
-            )
-          )
-        )
+            ]
+          ]
+         ]
       );
     } else {
       $this->attributesAccess['gosaVacationStart']->setDisabled(TRUE);
@@ -331,13 +331,13 @@ class mailAccount extends simplePlugin
       $this->attributesAccess['gosaVacationStop']->setVisible(FALSE);
       $this->attributesAccess['gosaVacationStop']->setValue('');
       $this->attributesAccess['flag_vacation']->setManagedAttributes (
-        array (
-          'erase' => array (
-            FALSE => array (
+         [
+          'erase' => [
+            FALSE => [
               'gosaVacationMessage'
-            )
-          )
-        )
+            ]
+          ]
+         ]
       );
     }
   }
@@ -353,13 +353,13 @@ class mailAccount extends simplePlugin
     return $messages;
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* mail method might have something to save (like password change from main tab for instance) */
     return TRUE;
   }
 
-  public function ldap_save()
+  public function ldap_save ()
   {
     if (!empty($this->attrs)) {
       $errors = parent::ldap_save();
@@ -368,7 +368,7 @@ class mailAccount extends simplePlugin
       }
     }
 
-    $errors = array();
+    $errors = [];
 
     /* Only do IMAP actions if we are not a template */
     if (!$this->is_template) {
@@ -415,7 +415,7 @@ class mailAccount extends simplePlugin
     return $errors;
   }
 
-  function post_remove()
+  function post_remove ()
   {
     /* Let the mailMethod remove this mailbox */
     if (!$this->is_template) {
diff --git a/mail/personal/mail/class_sieve.inc b/mail/personal/mail/class_sieve.inc
index 119925c598..2eb01ec7bf 100644
--- a/mail/personal/mail/class_sieve.inc
+++ b/mail/personal/mail/class_sieve.inc
@@ -90,7 +90,7 @@ class sieve
   //also add a connection type, like PLAIN, MD5, etc...
 
 
-  function get_response()
+  function get_response ()
   {
     if($this->loggedin == false or feof($this->fp)){
       $this->error = EC_NOT_LOGGED_IN;
@@ -156,7 +156,7 @@ class sieve
     } /* end elseif */
     elseif($this->token[0][0] == "{"){
 
-      /* Unable wild assumption:  that the only function that gets here is the get_script(), doesn't really matter though */
+      /* Unable wild assumption:  that the only function that gets here is the get_script (), doesn't really matter though */
 
       /* the first line is the len field {xx}, which we don't care about at this point */
       $this->line = fgets($this->fp,1024);
@@ -171,7 +171,7 @@ class sieve
     } /* end elseif */
     elseif($this->token[0][0] == "\""){
 
-      /* I'm going under the _assumption_ that the only function that will get here is the listscripts().
+      /* I'm going under the _assumption_ that the only function that will get here is the listscripts ().
          I could very well be mistaken here, if I am, this part needs some rework */
 
       $this->found_script=false;
@@ -200,7 +200,7 @@ class sieve
     } /* end else */
   } /* end get_response() */
 
-  function __construct($host, $port, $user, $pass, $auth="",$options ="", $auth_types="PLAIN DIGEST-MD5")
+  function __construct ($host, $port, $user, $pass, $auth="",$options ="", $auth_types="PLAIN DIGEST-MD5")
   {
     $this->host=$host;
     $this->port=$port;
@@ -227,7 +227,7 @@ class sieve
         "<b>SIEVE: Host: $host:$port. Options: $options - Auth Types: $auth_types </b>");
   }
 
-  function parse_for_quotes($string)
+  function parse_for_quotes ($string)
   {
     /* This function tokenizes a line of input by quote marks and returns them as an array */
 
@@ -255,7 +255,7 @@ class sieve
       return false;
   } /* end function */
 
-  function status($string)
+  function status ($string)
   {
     //this should probably be replaced by a smarter parser.
 
@@ -282,7 +282,7 @@ class sieve
     } /* end switch */
   } /* end status() */
 
-  function sieve_login()
+  function sieve_login ()
   {
 
     $this->fp=@fsockopen($this->host,$this->port,$err_id,$err_str);
@@ -413,7 +413,7 @@ class sieve
 
   }
 
-  function sieve_logout()
+  function sieve_logout ()
   {
     if($this->loggedin==false)
       return false;
@@ -428,7 +428,7 @@ class sieve
     return true;
   }
 
-  function sieve_sendscript($scriptname, $script)
+  function sieve_sendscript ($scriptname, $script)
   {
     if($this->loggedin==false)
       return false;
@@ -442,7 +442,7 @@ class sieve
           "<b>SIEVE: Script '".$scriptname."' successfully send!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
           "<b>SIEVE: Script couldn't be send!</b>");
       return(FALSE);
     }
@@ -450,7 +450,7 @@ class sieve
 
   //it appears the timsieved does not honor the NUMBER type.  see lex.c in timsieved src.
   //don't expect this function to work yet.  I might have messed something up here, too.
-  function sieve_havespace($scriptname, $scriptsize)
+  function sieve_havespace ($scriptname, $scriptsize)
   {
     if($this->loggedin==false)
       return false;
@@ -459,7 +459,7 @@ class sieve
 
   }
 
-  function sieve_setactivescript($scriptname)
+  function sieve_setactivescript ($scriptname)
   {
     if($this->loggedin==false)
       return false;
@@ -471,13 +471,13 @@ class sieve
           "<b>SIEVE: Set active script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
           "<b>SIEVE: Set active script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
   }
 
-  function sieve_getscript($scriptname)
+  function sieve_getscript ($scriptname)
   {
     unset($this->script);
     if($this->loggedin==false)
@@ -490,14 +490,14 @@ class sieve
           "<b>SIEVE: Get script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
           "<b>SIEVE: Get script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
   }
 
 
-  function sieve_deletescript($scriptname)
+  function sieve_deletescript ($scriptname)
   {
     if($this->loggedin==false)
       return false;
@@ -509,19 +509,19 @@ class sieve
           "<b>SIEVE: Delete script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
           "<b>SIEVE: Delete  script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
   }
 
 
-  function sieve_listscripts()
+  function sieve_listscripts ()
   {
     fputs($this->fp, "LISTSCRIPTS\r\n");
     sieve::get_response();    //should always return true, even if there are no scripts...
     if(isset($this->found_script) and $this->found_script){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode($this->response,", "),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode ($this->response,", "),
           "<b>SIEVE: List scripts was successful!</b>");
       return true;
     }else{
@@ -533,7 +533,7 @@ class sieve
     }
   }
 
-  function sieve_alive()
+  function sieve_alive ()
   {
     if(!isset($this->fp) or $this->fp==0){
       $this->error = EC_NOT_LOGGED_IN;
@@ -548,7 +548,7 @@ class sieve
   }
 
 
-  function authenticate()
+  function authenticate ()
   {
 
     /* Check if a TLS bases connection is required
@@ -557,7 +557,7 @@ class sieve
 
       /* Check if PHP supports TLS encryption for sockets
        */
-      if(function_exists("stream_socket_enable_crypto")){
+      if(function_exists ("stream_socket_enable_crypto")){
 
         /* Initiate TLS and get response
          */
@@ -607,7 +607,7 @@ class sieve
 
         if(sieve::status($this->line) == F_NO){
           $this->error_raw = $this->line;
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
               "<b>SIEVE: Authentication for '".$this->user."-".$this->auth_in_use."' failed.</b>");
 
           return false;
diff --git a/mail/personal/mail/mailAddressSelect/class_mailAddressSelect.inc b/mail/personal/mail/mailAddressSelect/class_mailAddressSelect.inc
index 8fbed142c1..a2cf8e5c7f 100644
--- a/mail/personal/mail/mailAddressSelect/class_mailAddressSelect.inc
+++ b/mail/personal/mail/mailAddressSelect/class_mailAddressSelect.inc
@@ -20,8 +20,8 @@
 
 class mailAddressSelect extends simpleSelectManagement
 {
-  protected $objectTypes          = array('user', 'group');
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'mail');
+  protected $objectTypes          = ['user', 'group'];
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'mail'];
 
   function configureFilter ()
   {
diff --git a/mixedgroups/admin/ogroups/mixedgroups/class_mixedGroup.inc b/mixedgroups/admin/ogroups/mixedgroups/class_mixedGroup.inc
index 5f660d278d..1676ca9433 100644
--- a/mixedgroups/admin/ogroups/mixedgroups/class_mixedGroup.inc
+++ b/mixedgroups/admin/ogroups/mixedgroups/class_mixedGroup.inc
@@ -20,28 +20,28 @@
 
 class mixedGroup extends simplePlugin
 {
-  var $objectclasses  = array('posixGroup');
-  protected $locks    = array();
+  var $objectclasses  = ['posixGroup'];
+  protected $locks    = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Posix group'),
       'plDescription' => _('Posix group settings'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('ogroup-user'),
+      'plObjectType'  => ['ogroup-user'],
       'plPriority'    => 1,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute(
             _('Force GID'), _('Force GID value for this group'),
             'force_id', FALSE
@@ -53,28 +53,28 @@ class mixedGroup extends simplePlugin
           ),
           new HiddenAttribute(
             'memberUid', FALSE,
-            array()
+            []
           )
-        )
-      ),
-      'system_trust' => array(
+        ]
+      ],
+      'system_trust' => [
         'name'  => _('System trust'),
         'icon'  => 'geticon.php?context=status&icon=locked&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Trust mode'), _('Type of authorization for those hosts'),
             'trustMode', FALSE,
-            array('', 'fullaccess', 'byhost'),
+            ['', 'fullaccess', 'byhost'],
             '',
-            array(_('disabled'), _('full access'), _('allow access to these hosts'))
+            [_('disabled'), _('full access'), _('allow access to these hosts')]
           ),
           new SystemsAttribute(
             '', _('Only allow this group to connect to this list of hosts'),
             'host', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -83,12 +83,12 @@ class mixedGroup extends simplePlugin
 
     $this->attributesAccess['trustMode']->setInLdap(FALSE);
     $this->attributesAccess['trustMode']->setManagedAttributes(
-      array(
-        'multiplevalues' => array('notbyhost' => array('','fullaccess')),
-        'erase' => array(
-          'notbyhost' => array('host')
-        )
-      )
+      [
+        'multiplevalues' => ['notbyhost' => ['','fullaccess']],
+        'erase' => [
+          'notbyhost' => ['host']
+        ]
+      ]
     );
     if ((count($this->host) == 1) && ($this->host[0] == '*')) {
       $this->trustMode = 'fullaccess';
@@ -99,17 +99,17 @@ class mixedGroup extends simplePlugin
     $this->attributesAccess['gidNumber']->setUnique(TRUE);
     $this->attributesAccess['force_id']->setInLdap(FALSE);
     $this->attributesAccess['force_id']->setManagedAttributes(
-      array(
-        'disable' => array (
-          FALSE => array (
+      [
+        'disable' => [
+          FALSE => [
             'gidNumber',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 
-  function check()
+  function check ()
   {
     global $config;
     $message = parent::check();
@@ -124,7 +124,7 @@ class mixedGroup extends simplePlugin
     return $message;
   }
 
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     parent::resetCopyInfos();
 
@@ -133,14 +133,14 @@ class mixedGroup extends simplePlugin
     $this->gidNumber = "";
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     $members    = $this->parent->getBaseObject()->member;
-    $memberUid  = array();
+    $memberUid  = [];
     foreach ($members as $dn) {
-      $ldap->cat($dn, array('uid'));
+      $ldap->cat($dn, ['uid']);
       $attrs = $ldap->fetch();
       $memberUid[] = $attrs['uid'][0];
     }
@@ -162,7 +162,7 @@ class mixedGroup extends simplePlugin
     }
 
     if ($this->trustMode == 'fullaccess') {
-      $this->attrs['host'] = array('*');
+      $this->attrs['host'] = ['*'];
     }
 
     /* Trust accounts */
@@ -175,24 +175,24 @@ class mixedGroup extends simplePlugin
     return $errors;
   }
 
-  function save()
+  function save ()
   {
     $errors = parent::save();
 
     foreach ($this->locks as $lock) {
       del_lock($lock);
     }
-    $this->locks = array();
+    $this->locks = [];
 
     return $errors;
   }
 
-  function addUser($dn, $uid)
+  function addUser ($dn, $uid)
   {
-    $this->attributesAccess['memberUid']->addValue($dn, array('uid' => array($uid), 'cn' => array($uid)));
+    $this->attributesAccess['memberUid']->addValue($dn, ['uid' => [$uid], 'cn' => [$uid]]);
   }
 
-  function removeUser($uid)
+  function removeUser ($uid)
   {
     $this->attributesAccess['memberUid']->searchAndRemove($uid);
   }
diff --git a/nagios/config/nagios/class_nagiosConfig.inc b/nagios/config/nagios/class_nagiosConfig.inc
index 44bcc65990..1667db3b16 100644
--- a/nagios/config/nagios/class_nagiosConfig.inc
+++ b/nagios/config/nagios/class_nagiosConfig.inc
@@ -20,35 +20,35 @@
 
 class nagiosConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdNagiosPluginConf');
+  var $objectclasses  = ['fdNagiosPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Nagios configuration'),
       'plDescription'   => _('FusionDirectory nagios plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Nagios'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Lconf prefix'), _('Prefix used for lconf LDAP fields'),
             'fdLconfPrefix', TRUE,
             'lconf'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/nagios/personal/nagios/class_nagiosAccount.inc b/nagios/personal/nagios/class_nagiosAccount.inc
index be94fb82c2..bd9ff3a2d4 100644
--- a/nagios/personal/nagios/class_nagiosAccount.inc
+++ b/nagios/personal/nagios/class_nagiosAccount.inc
@@ -30,23 +30,23 @@
 
 class nagiosAccount extends simplePlugin
 {
-  var $objectclasses  = array('lconfContact');
+  var $objectclasses  = ['lconfContact'];
 
   var $displayHeader  = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Nagios'),
       'plDescription' => _('Nagios account settings'),
       'plIcon'        => 'geticon.php?context=applications&icon=nagios&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=nagios&size=16',
       'plSelfModify'  => TRUE,
       'plPriority'    => 7,
-      'plObjectType'  => array('user'),
+      'plObjectType'  => ['user'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -55,10 +55,10 @@ class nagiosAccount extends simplePlugin
   static function getAttributesInfo ()
   {
     $prefix = static::get_prefix();
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Nagios Account'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Alias'), _('Name of the nagios alias'),
             $prefix.'Alias', TRUE
@@ -70,22 +70,22 @@ class nagiosAccount extends simplePlugin
           new SelectAttribute (
             _('Host notification period'), _('Host notification period'),
             $prefix.'ContactHostNotificationPeriod', FALSE,
-            array('24x7','24x5','8x5')
+            ['24x7','24x5','8x5']
           ),
           new SelectAttribute (
             _('Service notification period'), _('Service notification period'),
             $prefix.'ContactServiceNotificationPeriod', FALSE,
-            array('24x7','24x5','8x5')
+            ['24x7','24x5','8x5']
           ),
           new SelectAttribute (
             _('Service notification options'), _('Service notification options'),
             $prefix.'ContactServiceNotificationOptions', FALSE,
-            array('w,u,c,r,f','w,u,c,r','w,u,c','c,w','n')
+            ['w,u,c,r,f','w,u,c,r','w,u,c','c,w','n']
           ),
           new SelectAttribute (
             _('Host notification options'), _('Host notification options'),
             $prefix.'ContactHostNotificationOptions', FALSE,
-            array('d,u,r,f','d,u,r','d,u','n')
+            ['d,u,r,f','d,u,r','d,u','n']
           ),
           new StringAttribute(
             _('Pager'), _($prefix.' Pager'),
@@ -99,12 +99,12 @@ class nagiosAccount extends simplePlugin
             _('Host notification commands'), _('Host notification commands'),
             $prefix.'ContactHostNotificationCommands', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  static function get_prefix()
+  static function get_prefix ()
   {
     global $config;
     return $config->get_cfg_value('lconfPrefix', 'lconf');
@@ -113,7 +113,7 @@ class nagiosAccount extends simplePlugin
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
     $prefix = static::get_prefix();
-    $this->objectclasses = array($prefix.'Contact');
+    $this->objectclasses = [$prefix.'Contact'];
     parent::__construct($dn, $object, $parent, $mainTab);
   }
 }
diff --git a/netgroups/admin/netgroups/class_netgroup.inc b/netgroups/admin/netgroups/class_netgroup.inc
index 12b5c0f9d0..329c9b7d33 100644
--- a/netgroups/admin/netgroups/class_netgroup.inc
+++ b/netgroups/admin/netgroups/class_netgroup.inc
@@ -36,39 +36,39 @@ class CnNetgroupsAttribute extends DialogAttribute
   {
     $cns    = $this->getValue();
     $cns[]  = $this->plugin->cn;
-    return array('cn' => $cns);
+    return ['cn' => $cns];
   }
 }
 
 class netgroup extends simplePlugin
 {
-  var $objectclasses  = array("top", "nisNetgroup");
+  var $objectclasses  = ["top", "nisNetgroup"];
   var $mainTab        = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Netgroup'),
       'plDescription' => _('NIS Netgroup settings'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('netgroup' => array(
+      'plObjectType'  => ['netgroup' => [
         'name'    => _('NIS Netgroup'),
         'filter'  => 'objectClass=nisNetgroup',
         'ou'      => get_ou('netgroupRDN'),
         'icon'    => 'geticon.php?context=applications&icon=netgroups&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Information'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute(
             _('Name'), _('Name of this NIS netgroup'), 'cn'
           ),
@@ -76,36 +76,36 @@ class netgroup extends simplePlugin
             _('Description'), _('Description of this NIS netgroup'), 'description'
           ),
           new BaseSelectorAttribute(get_ou('netgroupRDN'))
-        )
-      ),
-      'users' => array(
+        ]
+      ],
+      'users' => [
         'name'  => _('User members'),
         'icon'  => 'geticon.php?context=types&icon=user&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new StringAttribute('nisNetgroupTriple', '', 'nisNetgroupTriple')
           ),
           new UsersAttribute(
             '', _('NIS netgroup members'), 'memberUsers',
-            FALSE, array(), 'dn', 'uid'
+            FALSE, [], 'dn', 'uid'
           ),
-        )
-      ),
-      'systems' => array(
+        ]
+      ],
+      'systems' => [
         'name'  => _('System members'),
         'icon'  => 'geticon.php?context=devices&icon=server&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SystemsAttribute('', _('NIS netgroup members'), 'memberSystems', FALSE),
-        )
-      ),
-      'netgroups' => array(
+        ]
+      ],
+      'netgroups' => [
         'name'  => _('Netgroup members'),
         'icon'  => 'geticon.php?context=applications&icon=netgroups&size=16',
-        'attrs' => array(
+        'attrs' => [
           new CnNetgroupsAttribute('', _('NIS netgroup members'), 'memberNisNetgroup'),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -119,7 +119,7 @@ class netgroup extends simplePlugin
     $this->attributesAccess['memberSystems']->setInLdap(FALSE);
     $triples      = $this->attributesAccess['nisNetgroupTriple']->getValue();
     $usersfilter  = '(|';
-    $cns          = array();
+    $cns          = [];
     foreach ($triples as $triple) {
       if (preg_match('/^\(([^,]*),([^,]*),[^)]*\)$/', $triple, $matches)) {
         if ($matches[1] != "") {
@@ -133,8 +133,8 @@ class netgroup extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(objectClass=posixAccount)'.$usersfilter.')', array('uid'));
-    $dns = array();
+    $ldap->search('(&(objectClass=posixAccount)'.$usersfilter.')', ['uid']);
+    $dns = [];
     while ($attrs = $ldap->fetch()) {
       $dns[] = $attrs['dn'];
     }
@@ -146,7 +146,7 @@ class netgroup extends simplePlugin
   {
     $memberUsers    = $this->attributesAccess['memberUsers']->getDisplayValues();
     $memberSystems  = $this->memberSystems;
-    $triples = array();
+    $triples = [];
 
     foreach ($memberUsers as $uid) {
       $triples[] = '(,'.$uid.',)';
diff --git a/netgroups/admin/netgroups/class_netgroupManagement.inc b/netgroups/admin/netgroups/class_netgroupManagement.inc
index 388ec600f6..0b463c3af0 100644
--- a/netgroups/admin/netgroups/class_netgroupManagement.inc
+++ b/netgroups/admin/netgroups/class_netgroupManagement.inc
@@ -22,24 +22,24 @@
 class netgroupManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('netgroup');
+  protected $objectTypes  = ['netgroup'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('NIS Netgroups'),
       'plDescription' => _('NIS Netgroup management'),
       'plIcon'        => 'geticon.php?context=applications&icon=netgroups&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 25,
-      'plManages'     => array('netgroup'),
+      'plManages'     => ['netgroup'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 
diff --git a/netgroups/admin/netgroups/memberNisnetgroupSelect/class_memberNisnetgroupSelect.inc b/netgroups/admin/netgroups/memberNisnetgroupSelect/class_memberNisnetgroupSelect.inc
index fd455f5e41..a35ac0b3d6 100644
--- a/netgroups/admin/netgroups/memberNisnetgroupSelect/class_memberNisnetgroupSelect.inc
+++ b/netgroups/admin/netgroups/memberNisnetgroupSelect/class_memberNisnetgroupSelect.inc
@@ -21,6 +21,6 @@
 
 class memberNisnetgroupSelect extends simpleSelectManagement
 {
-  protected $objectTypes = array('netgroup');
+  protected $objectTypes = ['netgroup'];
 }
 ?>
diff --git a/netgroups/admin/systems/netgroups/class_netgroupSystem.inc b/netgroups/admin/systems/netgroups/class_netgroupSystem.inc
index e6549ca2f4..380e0dfe13 100644
--- a/netgroups/admin/systems/netgroups/class_netgroupSystem.inc
+++ b/netgroups/admin/systems/netgroups/class_netgroupSystem.inc
@@ -21,24 +21,24 @@
 class netgroupSystem extends netgroupMembership {
   protected static $id_attr = 'cn';
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('NIS Netgroup'),
       'plDescription'   => _('NIS Netgroup member'),
       'plSelfModify'    => FALSE,
       'plPriority'      => 3,
-      'plObjectType'    => array('workstation','terminal','server','printer'),
+      'plObjectType'    => ['workstation','terminal','server','printer'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
-  protected function triple_mask()
+  protected function triple_mask ()
   {
     return "/^\(".$this->old_id.",\-?,\S*\)$/";
   }
 
-  protected function triple_data()
+  protected function triple_data ()
   {
     return '('.$this->id.',,)';
   }
diff --git a/netgroups/config/netgroups/class_netgroupConfig.inc b/netgroups/config/netgroups/class_netgroupConfig.inc
index feae549ff7..f2af01e2af 100644
--- a/netgroups/config/netgroups/class_netgroupConfig.inc
+++ b/netgroups/config/netgroups/class_netgroupConfig.inc
@@ -20,35 +20,35 @@
 
 class netgroupConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdNetgroupPluginConf');
+  var $objectclasses  = ['fdNetgroupPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Netgroup configuration'),
       'plDescription'   => _('FusionDirectory netgroup plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Netgroup'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Netgroup RDN'), _('Branch in which netgroups will be stored'),
             'fdNetgroupRDN', TRUE,
             'ou=netgroups'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/netgroups/personal/netgroups/class_netgroupMembership.inc b/netgroups/personal/netgroups/class_netgroupMembership.inc
index cfe93611f1..3cc0bb71b4 100644
--- a/netgroups/personal/netgroups/class_netgroupMembership.inc
+++ b/netgroups/personal/netgroups/class_netgroupMembership.inc
@@ -32,38 +32,38 @@ class NetgroupsAttribute extends GroupsAttribute
 
 class netgroupMembership extends simplePlugin {
   var $displayHeader = TRUE;
-  var $objectclasses = array("whatever");
+  var $objectclasses = ["whatever"];
   var $id;
   var $old_id;
   protected static $id_attr = 'uid';
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('NIS Netgroup'),
       'plDescription'   => _('NIS Netgroup member'),
       'plIcon'          => 'geticon.php?context=applications&icon=netgroups&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=netgroups&size=16',
       'plSelfModify'    => FALSE,
       'plPriority'      => 13,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'groups' => array(
+    return [
+      'groups' => [
         'name'  => _('Member of the following NIS Netgroups  '),
         'icon'  => 'geticon.php?context=applications&icon=netgroups&size=16',
-        'attrs' => array(
+        'attrs' => [
           new NetgroupsAttribute('', _('NIS netgroup membership'), 'nisMembership', TRUE)
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -71,13 +71,13 @@ class netgroupMembership extends simplePlugin {
     global $config;
     parent::__construct($dn, $object, $parent, $mainTab);
 
-    $groupMembership = array();
+    $groupMembership = [];
 
     /* Groups handling */
     if ($this->dn != 'new') {
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search('(objectClass=nisNetgroup)', array('cn', 'nisNetgroupTriple'));
+      $ldap->search('(objectClass=nisNetgroup)', ['cn', 'nisNetgroupTriple']);
       while ($attrs = $ldap->fetch()) {
         if (isset($attrs['nisNetgroupTriple'])) {
           foreach ($attrs['nisNetgroupTriple'] as $val) {
@@ -100,17 +100,17 @@ class netgroupMembership extends simplePlugin {
     $this->attributesAccess['nisMembership']->setInitialValue(array_keys($groupMembership));
   }
 
-  protected function triple_mask()
+  protected function triple_mask ()
   {
     return "/^\(\-?,".$this->old_id.",\S*\)$/";
   }
 
-  protected function triple_data()
+  protected function triple_data ()
   {
     return '(,'.$this->id.',)';
   }
 
-  protected function update_id()
+  protected function update_id ()
   {
     $class    = get_class($this);
     $id_attr  = $class::$id_attr;
@@ -126,7 +126,7 @@ class netgroupMembership extends simplePlugin {
     }
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     global $config;
     $class    = get_class($this);
@@ -136,7 +136,7 @@ class netgroupMembership extends simplePlugin {
       $this->old_id = $this->id;
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search('(objectClass=nisNetgroup)', array('cn', 'nisNetgroupTriple'));
+      $ldap->search('(objectClass=nisNetgroup)', ['cn', 'nisNetgroupTriple']);
       while ($attrs = $ldap->fetch()) {
         if (isset($attrs['nisNetgroupTriple'])) {
           foreach ($attrs['nisNetgroupTriple'] as $val) {
@@ -151,14 +151,14 @@ class netgroupMembership extends simplePlugin {
   }
 
   /* Save data to LDAP, depending on is_account we save or delete */
-  function ldap_save()
+  function ldap_save ()
   {
     global $config;
     $this->update_id();
     /* Call parents save to prepare $this->attrs */
     $ldap   = $config->get_ldap_link();
-    $attrs  = array();
-    $attrs['objectClass'] = array('top','nisNetgroup');
+    $attrs  = [];
+    $attrs['objectClass'] = ['top','nisNetgroup'];
 
     $old_nisMembership  = $this->attributesAccess['nisMembership']->getInitialValue();
     $nisMembership      = $this->attributesAccess['nisMembership']->getValue();
@@ -172,12 +172,12 @@ class netgroupMembership extends simplePlugin {
 
     foreach ($to_add as $val) {
       $ldap->cd($config->current['BASE']);
-      $ldap->cat($val, array("dn", "cn", "nisNetgroupTriple","memberNisNetgroups"));
-      $attrs['nisNetgroupTriple'] = array();
-      $attrs['memberNisNetgroup'] = array();
+      $ldap->cat($val, ["dn", "cn", "nisNetgroupTriple","memberNisNetgroups"]);
+      $attrs['nisNetgroupTriple'] = [];
+      $attrs['memberNisNetgroup'] = [];
       while ($sattrs = $ldap->fetch()) {
-        $triples    = array();
-        $netgroups  = array();
+        $triples    = [];
+        $netgroups  = [];
 
         if (isset($sattrs['nisNetgroupTriple'])) {
           for ($i = 0;$i < $sattrs['nisNetgroupTriple']['count'];$i++) {
@@ -200,12 +200,12 @@ class netgroupMembership extends simplePlugin {
 
     foreach ($to_del as $val) {
       $ldap->cd($config->current['BASE']);
-      $ldap->cat($val, array("dn", "cn", "nisNetgroupTriple","memberNisNetgroups"));
-      $attrs['nisNetgroupTriple'] = array();
-      $attrs['memberNisNetgroup'] = array();
+      $ldap->cat($val, ["dn", "cn", "nisNetgroupTriple","memberNisNetgroups"]);
+      $attrs['nisNetgroupTriple'] = [];
+      $attrs['memberNisNetgroup'] = [];
       while ($sattrs = $ldap->fetch()) {
-        $triples    = array();
-        $netgroups  = array();
+        $triples    = [];
+        $netgroups  = [];
 
         if (isset($sattrs['nisNetgroupTriple'])) {
           for ($i = 0;$i < $sattrs['nisNetgroupTriple']['count'];$i++) {
diff --git a/newsletter/config/newsletter/class_newsletterConfig.inc b/newsletter/config/newsletter/class_newsletterConfig.inc
index 537494c79d..131618cc66 100644
--- a/newsletter/config/newsletter/class_newsletterConfig.inc
+++ b/newsletter/config/newsletter/class_newsletterConfig.inc
@@ -20,36 +20,36 @@
 
 class newsletterConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdNewsletterPluginConf');
+  var $objectclasses  = ['fdNewsletterPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Newsletter configuration'),
       'plDescription'   => _('FusionDirectory newsletter plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Newsletter'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new StringAttribute (
               _('Newsletter choices'), _('Newsletters the user can choose from'),
               'fdNewsletterChoices', FALSE
             ),
-            array()
+            []
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/newsletter/personal/newsletter/class_newsletterSubscriptions.inc b/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
index 7f32079b23..8598db2e9d 100644
--- a/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
+++ b/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
@@ -22,39 +22,39 @@ class newsletterSubscriptions extends simplePlugin
 {
   var $displayHeader = TRUE;
 
-  var $objectclasses = array('fdNewsletterAccount');
+  var $objectclasses = ['fdNewsletterAccount'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Newsletter'),
       'plDescription'   => _('Newsletter subscriptions'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=applications&icon=newsletter&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=newsletter&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     global $config;
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Personal info'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new SelectAttribute (
               _('Subscriptions'), _('Newsletter you are subscribed to'),
               'fdNewsletterSubscriptions', FALSE,
-              $config->get_cfg_value('newsletterChoices', array())
+              $config->get_cfg_value('newsletterChoices', [])
             )
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/opsi/addons/dashboard/class_dashBoardOpsi.inc b/opsi/addons/dashboard/class_dashBoardOpsi.inc
index 2ec0c3c793..3ecdf4a464 100644
--- a/opsi/addons/dashboard/class_dashBoardOpsi.inc
+++ b/opsi/addons/dashboard/class_dashBoardOpsi.inc
@@ -20,31 +20,31 @@
 
 class dashboardOpsi extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI'),
       'plDescription' => _('Statistics and information about OPSI'),
-      'plObjectType'  => array('dashboard'),
+      'plObjectType'  => ['dashboard'],
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  static function getAttributesInfo()
+  static function getAttributesInfo ()
   {
-    return array(
-      'stats' => array(
+    return [
+      'stats' => [
         'name'  => _('Statistics'),
-        'attrs' => array(new FakeAttribute('stats')),
+        'attrs' => [new FakeAttribute('stats')],
         'template' => get_template_path('opsi_stats.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'profiles' => array(
+      ],
+      'profiles' => [
         'name'  => _('Profiles'),
-        'attrs' => array(new FakeAttribute('profiles')),
+        'attrs' => [new FakeAttribute('profiles')],
         'template' => get_template_path('opsi_profiles.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -61,26 +61,26 @@ class dashboardOpsi extends simplePlugin
     $ldap = $config->get_ldap_link();
 
     /* Statistics */
-    $stats = array(
-      array(
+    $stats = [
+      [
         'name'    => _('OPSI servers'),
         'type'    => 'server',
         'filter'  => '(objectClass=opsiServer)',
         'img'   => 'geticon.php?context=devices&icon=server&size=16'
-      ),
-      array(
+      ],
+      [
         'name'  => _('OPSI clients'),
         'type'    => 'workstation',
         'filter'  => '(objectClass=opsiClient)',
         'img'     => 'geticon.php?context=devices&icon=computer&size=16'
-      ),
-      array(
+      ],
+      [
         'name'  => _('OPSI groups'),
         'type'    => 'ogroup',
         'filter'  => '(objectClass=opsiClient)',
         'img'     => 'geticon.php?context=types&icon=resource-group&size=16'
-      ),
-    );
+      ],
+    ];
 
     foreach ($stats as &$stat) {
       try {
@@ -101,19 +101,19 @@ class dashboardOpsi extends simplePlugin
 
   function profile_stats ()
   {
-    $profiles = objects::ls('opsiProfile', array('cn' => 1, 'fdOpsiServerDn' => 1, 'fdOpsiNetbootProduct' => 1, 'fdOpsiSoftwareList' => '*'), NULL, '', TRUE, 'subtree');
+    $profiles = objects::ls('opsiProfile', ['cn' => 1, 'fdOpsiServerDn' => 1, 'fdOpsiNetbootProduct' => 1, 'fdOpsiSoftwareList' => '*'], NULL, '', TRUE, 'subtree');
 
     $id   = 'profileStats';
     $div  = new divSelectBox('rows'.$id);
     $smarty = get_smarty();
     $div->SetHeight(90);
-    $div->SetHeaders(array(_('Profile'), _('Systems'), _('Groups')));
+    $div->SetHeaders([_('Profile'), _('Systems'), _('Groups')]);
     foreach ($profiles as $dn => $profile) {
-      $fields = array(
-        array('string' => $profile['cn']),
-        array('string' => objects::count('workstation', NULL, '(&(objectClass=opsiClient)(fdOpsiProfileDn='.$dn.'))', FALSE)),
-        array('string' => objects::count('ogroup', NULL, '(&(objectClass=opsiClient)(fdOpsiProfileDn='.$dn.'))', FALSE)),
-      );
+      $fields = [
+        ['string' => $profile['cn']],
+        ['string' => objects::count('workstation', NULL, '(&(objectClass=opsiClient)(fdOpsiProfileDn='.$dn.'))', FALSE)],
+        ['string' => objects::count('ogroup', NULL, '(&(objectClass=opsiClient)(fdOpsiProfileDn='.$dn.'))', FALSE)],
+      ];
       $div->AddEntry($fields);
     }
     return $div->DrawList();
diff --git a/opsi/addons/opsi/class_opsiImport.inc b/opsi/addons/opsi/class_opsiImport.inc
index eec5808158..7bed8fd11b 100644
--- a/opsi/addons/opsi/class_opsiImport.inc
+++ b/opsi/addons/opsi/class_opsiImport.inc
@@ -21,31 +21,31 @@
 
 class opsiImport extends systemImport
 {
-  protected $types = array('workstation');
+  protected $types = ['workstation'];
 
   /* Return plugin information for acl handling  */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI import'),
       'plDescription' => _('Import windows stations from OPSI into FD'),
       'plIcon'        => 'geticon.php?context=applications&icon=opsi&size=48',
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array(
-        'opsiImport' => array(
+      'plObjectType'  => [
+        'opsiImport' => [
           'name'      => _('OPSI import'),
           'tabClass'  => 'simpleTabs_noSpecial',
           'mainAttr'  => FALSE,
-        )
-      ),
+        ]
+      ],
       'plSection'     => 'conf',
       'plPriority'    => 15,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
-  static function getAttributesInfo($filter = 'objectClass=opsiServer')
+  static function getAttributesInfo ($filter = 'objectClass=opsiServer')
   {
     $attributesInfo = parent::getAttributesInfo($filter);
     /* Add our checkbox just before the import button */
@@ -53,28 +53,28 @@ class opsiImport extends systemImport
       $attributesInfo['import']['attrs'],
       -1,
       0,
-      array(
+      [
         new BooleanAttribute(
           _('Import localboot products'), _('Import localboot product list configured in OPSI in the FD OPSI tab'),
           'importLocalboots', FALSE,
           FALSE
         )
-      )
+      ]
     );
     return $attributesInfo;
   }
 
-  protected function getExtraTabs($server_dn, $host)
+  protected function getExtraTabs ($server_dn, $host)
   {
-    $extraTabs = array(
-      'sambaSystemTab' => array(
+    $extraTabs = [
+      'sambaSystemTab' => [
         'is_account'      => TRUE,
-      ),
-      'opsiClient' => array(
+      ],
+      'opsiClient' => [
         'is_account'      => TRUE,
         'fdOpsiServerDn'  => $server_dn,
-      )
-    );
+      ]
+    ];
 
     if ($this->importLocalboots) {
       if (!empty($host['localboots'])) {
@@ -115,7 +115,7 @@ class opsiImport extends systemImport
       );
       return FALSE;
     }
-    $hosts = $s_daemon->append_call('OPSI.host_getObjects', $macAddress, array('args' => array(array(), array('type' => 'OpsiClient'))));
+    $hosts = $s_daemon->append_call('OPSI.host_getObjects', $macAddress, ['args' => [[], ['type' => 'OpsiClient']]]);
     if ($s_daemon->is_error()) {
       msg_dialog::display(
         _('Could not get OPSI information'),
@@ -129,14 +129,14 @@ class opsiImport extends systemImport
         $res = $s_daemon->append_call(
           'OPSI.productOnClient_getObjects',
           $macAddress,
-          array('args' => array(
-            array(),
-            array(
+          ['args' => [
+            [],
+            [
               'clientId'    => $host['id'],
               'type'        => 'ProductOnClient',
               'productType' => 'LocalbootProduct',
-            )
-          ))
+            ]
+          ]]
         );
         if ($s_daemon->is_error()) {
           msg_dialog::display(
@@ -145,7 +145,7 @@ class opsiImport extends systemImport
           );
           return FALSE;
         }
-        $host['localboots'] = array();
+        $host['localboots'] = [];
         foreach ($res as $productOnClient) {
           if ($productOnClient['productId'] == 'opsi-winst') {
             /* opsi-winst cannot be installed and has no actions */
diff --git a/opsi/admin/opsi/class_opsiOnDemandList.inc b/opsi/admin/opsi/class_opsiOnDemandList.inc
index ee9a3c5dca..d65ca16d9c 100644
--- a/opsi/admin/opsi/class_opsiOnDemandList.inc
+++ b/opsi/admin/opsi/class_opsiOnDemandList.inc
@@ -20,35 +20,35 @@
 
 class opsiOnDemandList extends opsiSoftwareList
 {
-  var $objectclasses   = array('opsiOnDemandList');
+  var $objectclasses   = ['opsiOnDemandList'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI ondemand list'),
       'plDescription' => _('OPSI on demand software list'),
       'plIcon'        => 'geticon.php?context=applications&icon=opsi-on-demand&size=16',
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('opsiOnDemandList' => array(
+      'plObjectType'  => ['opsiOnDemandList' => [
         'name'    => _('OPSI ondemand list'),
         'filter'  => 'objectClass=opsiOnDemandList',
         'ou'      => get_ou('opsiRDN'),
         'icon'    => 'geticon.php?context=applications&icon=opsi-on-demand&size=16',
-      )),
-      'plForeignKeys'   => array(
+      ]],
+      'plForeignKeys'   => [
         'fdOpsiServerDn' => 'serverGeneric',
-      ),
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Infos'),
-        'attrs' => array(
+        'attrs' => [
           new SubmittingOPSIServerAttribute(
             _('OPSI server'), _('OPSI server to use for deployment'),
             'fdOpsiServerDn', TRUE
@@ -61,20 +61,20 @@ class opsiOnDemandList extends opsiSoftwareList
             _('Show details'), _('Show further information to the user'),
             'fdOpsiOnDemandShowDetails', FALSE
           ),
-        )
-      ),
-      'products' => array(
+        ]
+      ],
+      'products' => [
         'name'  => _('Softwares'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new SelectAttribute(
               _('Localboot products'), _('The localboot products to put in this list'),
               'fdOpsiLocalbootProduct', FALSE
             )
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -87,7 +87,7 @@ class opsiOnDemandList extends opsiSoftwareList
   public function server_changed ($opsi_args = NULL)
   {
     if ($opsi_args === NULL) {
-      $opsi_args = array('id','name');
+      $opsi_args = ['id','name'];
     }
     return parent::server_changed($opsi_args);
   }
diff --git a/opsi/admin/opsi/class_opsiProductProperties.inc b/opsi/admin/opsi/class_opsiProductProperties.inc
index f49165d590..c3c96f40d2 100644
--- a/opsi/admin/opsi/class_opsiProductProperties.inc
+++ b/opsi/admin/opsi/class_opsiProductProperties.inc
@@ -22,15 +22,15 @@ class SubmittingOPSIProductAttribute extends SelectAttribute
 {
   function __construct ($label, $description, $ldapName, $required, $func, $acl = '')
   {
-    parent::__construct($label, $description, $ldapName, $required, array(), '', NULL, $acl);
+    parent::__construct($label, $description, $ldapName, $required, [], '', NULL, $acl);
     $this->setSubmitForm($func);
   }
 
-  function check()
+  function check ()
   {
   }
 
-  function displayValue($value)
+  function displayValue ($value)
   {
     return $value;
   }
@@ -40,14 +40,14 @@ class ProductPropertyAttribute extends CompositeAttribute
 {
   function __construct ($label, $description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, array(new StringAttribute('', '', 'fake')), '', '', $acl, $label);
+    parent::__construct ($description, $ldapName, [new StringAttribute('', '', 'fake')], '', '', $acl, $label);
   }
 
-  function check()
+  function check ()
   {
   }
 
-  function displayValue($value)
+  function displayValue ($value)
   {
     $array = json_decode($value);
     if (is_array($array) && (count($array) == 1)) {
@@ -56,12 +56,12 @@ class ProductPropertyAttribute extends CompositeAttribute
     return $value;
   }
 
-  function readValues($value)
+  function readValues ($value)
   {
     trigger_error('Should never be called');
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     trigger_error('Should never be called');
   }
@@ -70,7 +70,7 @@ class ProductPropertyAttribute extends CompositeAttribute
   {
     $values = json_decode($value);
     if ($this->attributes[0] instanceof SetAttribute) {
-      return array($values);
+      return [$values];
     } else {
       return $values;
     }
@@ -83,41 +83,41 @@ class ProductPropertyAttribute extends CompositeAttribute
     if ($this->attributes[0] instanceof SetAttribute) {
       return json_encode($values);
     } else {
-      return json_encode(array($values));
+      return json_encode([$values]);
     }
   }
 }
 
 class opsiProductProperties extends simplePlugin
 {
-  var $objectclasses = array('opsiProductProperties');
+  var $objectclasses = ['opsiProductProperties'];
 
-  var $properties = array();
+  var $properties = [];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Product properties'),
       'plDescription' => _('Product properties'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('opsiProfile'),
+      'plObjectType'  => ['opsiProfile'],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Name'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('Properties of the products of this profile'),
               'fdOpsiProductProperty',
-              array(
+              [
                 new SubmittingOPSIProductAttribute(
                   '', '',
                   'productId', TRUE,
@@ -131,18 +131,18 @@ class opsiProductProperties extends simplePlugin
                 new ProductPropertyAttribute(
                   '', '', 'propertyValue'
                 ),
-              ),
+              ],
               '|', '', ''
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit button
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -151,20 +151,20 @@ class opsiProductProperties extends simplePlugin
     $this->attributesAccess['fdOpsiProductProperty']->setHeight('auto');
   }
 
-  public function execute()
+  public function execute ()
   {
     $this->updateProductList();
     return parent::execute();
   }
 
-  private function updateProductList()
+  private function updateProductList ()
   {
     $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[0]->setChoices(
       $this->parent->getBaseObject()->getProductList()
     );
   }
 
-  public function product_changed()
+  public function product_changed ()
   {
     $productid  = $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[0]->getValue();
     if (!isset($this->properties[$productid])) {
@@ -179,10 +179,10 @@ class opsiProductProperties extends simplePlugin
       $properties = $s_daemon->append_call(
         'OPSI.get_product_properties',
         $this->parent->getBaseObject()->macAddress,
-        array('args' => array(
-          array(),
-          array('productId' => $productid)
-        ))
+        ['args' => [
+          [],
+          ['productId' => $productid]
+        ]]
       );
       if ($s_daemon->is_error()) {
         msg_dialog::display(
@@ -191,13 +191,13 @@ class opsiProductProperties extends simplePlugin
         );
         return;
       }
-      $this->properties[$productid] = array();
+      $this->properties[$productid] = [];
       foreach ($properties as $property) {
         $this->properties[$productid][$property['propertyId']] = $property;
       }
     }
-    $choices_values = array();
-    $choices_labels = array();
+    $choices_values = [];
+    $choices_labels = [];
     foreach ($this->properties[$productid] as $property) {
       $choices_values[] = $property['propertyId'];
       $choices_labels[] = $property['propertyId'].' ('.join(',',
@@ -218,7 +218,7 @@ class opsiProductProperties extends simplePlugin
     $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[1]->setChoices($choices_values, $choices_labels);
   }
 
-  public function property_changed()
+  public function property_changed ()
   {
     $productid  = $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[0]->getValue();
     $propertyid = $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[1]->getValue();
@@ -256,7 +256,7 @@ class opsiProductProperties extends simplePlugin
     if ($property['multiValue']) {
       $attr = new SetAttribute($attr, $property['defaultValues']);
     }
-    $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[2]->setAttributes(array($attr));
+    $this->attributesAccess['fdOpsiProductProperty']->attribute->attributes[2]->setAttributes([$attr]);
   }
 }
 ?>
diff --git a/opsi/admin/opsi/class_opsiProfile.inc b/opsi/admin/opsi/class_opsiProfile.inc
index 535d17b4c8..f64f08d788 100644
--- a/opsi/admin/opsi/class_opsiProfile.inc
+++ b/opsi/admin/opsi/class_opsiProfile.inc
@@ -28,14 +28,14 @@ class OPSIServerAttribute extends SelectAttribute
     }
   }
 
-  function updateChoices()
+  function updateChoices ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=opsiServer)', array('cn'));
-    $serversdn    = array();
-    $serverslabel = array();
+    $ldap->search('(objectClass=opsiServer)', ['cn']);
+    $serversdn    = [];
+    $serverslabel = [];
     while ($attrs = $ldap->fetch()) {
       $serversdn[]    = $attrs['dn'];
       $serverslabel[] = $attrs['cn'][0];
@@ -48,7 +48,7 @@ class SubmittingOPSIServerAttribute extends OPSIServerAttribute
 {
   function __construct ($label, $description, $ldapName, $required = FALSE, $acl = "")
   {
-    parent::__construct($label, $description, $ldapName, $required, array(), "", NULL, $acl);
+    parent::__construct($label, $description, $ldapName, $required, [], "", NULL, $acl);
     $this->setSubmitForm('server_changed');
   }
 }
@@ -56,39 +56,39 @@ class SubmittingOPSIServerAttribute extends OPSIServerAttribute
 class opsiProfile extends simplePlugin
 {
   var $mainTab = TRUE;
-  var $objectclasses   = array('opsiProfile');
+  var $objectclasses   = ['opsiProfile'];
 
   var $macAddress = NULL;
   var $products;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI profile'),
       'plDescription' => _('OPSI profile'),
       'plIcon'        => 'geticon.php?context=applications&icon=opsi&size=16',
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('opsiProfile' => array(
+      'plObjectType'  => ['opsiProfile' => [
         'name'    => _('OPSI profile'),
         'filter'  => 'objectClass=opsiProfile',
         'ou'      => get_ou('opsiRDN'),
         'icon'    => 'geticon.php?context=applications&icon=opsi&size=16',
-      )),
-      'plForeignKeys'   => array(
+      ]],
+      'plForeignKeys'   => [
         'fdOpsiServerDn'      => 'serverGeneric',
         'fdOpsiSoftwareList'  => 'opsiSoftwareList',
-      ),
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Name'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('opsiRDN')),
           new SubmittingOPSIServerAttribute(
             _('OPSI server'), _('OPSI server to use for deployment'),
@@ -98,11 +98,11 @@ class opsiProfile extends simplePlugin
             _('Name'), _('Name of this OPSI profile'),
             'cn', TRUE
           ),
-        )
-      ),
-      'products' => array(
+        ]
+      ],
+      'products' => [
         'name'  => _('Entries'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Netboot product'), _('The netboot product to use for this profile'),
             'fdOpsiNetbootProduct', FALSE
@@ -113,16 +113,16 @@ class opsiProfile extends simplePlugin
               'fdOpsiSoftwareList', FALSE
             )
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   /* Returns list of all products installed by this profile */
   public function getProductList ()
   {
     global $config;
-    $products = array();
+    $products = [];
     $netboot  = $this->fdOpsiNetbootProduct;
     if ($netboot != '') {
       $products[] = $netboot;
@@ -181,7 +181,7 @@ class opsiProfile extends simplePlugin
         );
         return FALSE;
       }
-      $netboots = $s_daemon->append_call('OPSI.get_netboots', $this->macAddress, array('args' => array(array('id','name'))));
+      $netboots = $s_daemon->append_call('OPSI.get_netboots', $this->macAddress, ['args' => [['id','name']]]);
       if ($s_daemon->is_error()) {
         msg_dialog::display(
           _('Failed to contact OPSI server'),
@@ -192,15 +192,15 @@ class opsiProfile extends simplePlugin
       $this->products[$this->fdOpsiServerDn]['netboots'] = $netboots;
 
       $ldap->cd($config->current['BASE']);
-      $ldap->search('(&(objectClass=opsiSoftwareList)(fdOpsiServerDn='.$this->fdOpsiServerDn.'))', array('cn'));
-      $lists = array();
+      $ldap->search('(&(objectClass=opsiSoftwareList)(fdOpsiServerDn='.$this->fdOpsiServerDn.'))', ['cn']);
+      $lists = [];
       while ($attrs = $ldap->fetch()) {
         $lists[$attrs['dn']] = $attrs['cn'][0];
       }
       $this->products[$this->fdOpsiServerDn]['lists'] = $lists;
     }
-    $choices_values = array();
-    $choices_labels = array();
+    $choices_values = [];
+    $choices_labels = [];
     foreach ($this->products[$this->fdOpsiServerDn]['netboots'] as $netboot) {
       $choices_values[] = $netboot['id'];
       $choices_labels[] = sprintf(_('%s (%s)'), $netboot['id'], $netboot['name']);
diff --git a/opsi/admin/opsi/class_opsiProfileManagement.inc b/opsi/admin/opsi/class_opsiProfileManagement.inc
index 5597a2f377..8554fa64a3 100644
--- a/opsi/admin/opsi/class_opsiProfileManagement.inc
+++ b/opsi/admin/opsi/class_opsiProfileManagement.inc
@@ -20,25 +20,25 @@
 
 class opsiManagement extends simpleManagement
 {
-  protected $objectTypes  = array('opsiProfile', 'opsiSoftwareList');
+  protected $objectTypes  = ['opsiProfile', 'opsiSoftwareList'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = TRUE;
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI'),
       'plDescription' => _('OPSI profile management'),
       'plIcon'        => 'geticon.php?context=applications&icon=opsi&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 25,
-      'plManages'     => array('opsiProfile', 'opsiSoftwareList'),
+      'plManages'     => ['opsiProfile', 'opsiSoftwareList'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
@@ -52,15 +52,15 @@ class opsiManagement extends simpleManagement
     $data = parent::parseXML($file);
     $data['list']['table']['layout'] = '|20px;c|||110px;c|150px;r|';
     $data['list']['table']['column'][4] = $data['list']['table']['column'][3];
-    $data['list']['table']['column'][3] = array(
+    $data['list']['table']['column'][3] = [
       'label'         => 'Usage',
       'value'         => '%{filter:filterUsage(objectType,dn)}',
       'export'        => 'true',
-    );
+    ];
     return $data;
   }
 
-  static function filterUsage($objectType, $dn)
+  static function filterUsage ($objectType, $dn)
   {
     if (empty($dn) || (strcasecmp($objectType, 'opsiProfile') != 0)) {
       return '&nbsp;';
diff --git a/opsi/admin/opsi/class_opsiSoftwareList.inc b/opsi/admin/opsi/class_opsiSoftwareList.inc
index 82f96194af..a011b0b5dd 100644
--- a/opsi/admin/opsi/class_opsiSoftwareList.inc
+++ b/opsi/admin/opsi/class_opsiSoftwareList.inc
@@ -21,38 +21,38 @@
 class opsiSoftwareList extends simplePlugin
 {
   var $mainTab = TRUE;
-  var $objectclasses   = array('opsiSoftwareList');
+  var $objectclasses   = ['opsiSoftwareList'];
 
   var $macAddress = NULL;
   var $products;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI list'),
       'plDescription' => _('OPSI software list'),
       'plIcon'        => 'geticon.php?context=applications&icon=opsi-software-list&size=16',
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('opsiSoftwareList' => array(
+      'plObjectType'  => ['opsiSoftwareList' => [
         'name'    => _('OPSI software list'),
         'filter'  => 'objectClass=opsiSoftwareList',
         'ou'      => get_ou('opsiRDN'),
         'icon'    => 'geticon.php?context=applications&icon=opsi-software-list&size=16',
-      )),
-      'plForeignKeys'   => array(
+      ]],
+      'plForeignKeys'   => [
         'fdOpsiServerDn' => 'serverGeneric',
-      ),
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Infos'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('opsiRDN')),
           new SubmittingOPSIServerAttribute(
             _('OPSI server'), _('OPSI server to use for deployment'),
@@ -62,16 +62,16 @@ class opsiSoftwareList extends simplePlugin
             _('Name'), _('Name of this OPSI profile'),
             'cn', TRUE
           ),
-        )
-      ),
-      'products' => array(
+        ]
+      ],
+      'products' => [
         'name'  => _('Softwares'),
-        'attrs' => array(
+        'attrs' => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('The localboot products to install with this list'),
               'fdOpsiLocalbootProduct',
-              array(
+              [
                 new SelectAttribute(
                   '', '',
                   'fdOpsiLocalbootProduct_product', TRUE
@@ -79,18 +79,18 @@ class opsiSoftwareList extends simplePlugin
                 new SelectAttribute(
                   '', '',
                   'fdOpsiLocalbootProduct_action', TRUE,
-                  array('setup', 'always', 'once', 'custom', 'userlogin', 'update')
+                  ['setup', 'always', 'once', 'custom', 'userlogin', 'update']
                 )
-              ),
+              ],
               '|', '', _('Localboot products')
             ),
             FALSE, // non-ordered
-            array(),
+            [],
             TRUE // edition
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -105,7 +105,7 @@ class opsiSoftwareList extends simplePlugin
   {
     global $config;
     if ($opsi_args == NULL) {
-      $opsi_args = array('id','name','setupScript','alwaysScript','onceScript','customScript','userLoginScript','updateScript','productVersion','packageVersion');
+      $opsi_args = ['id','name','setupScript','alwaysScript','onceScript','customScript','userLoginScript','updateScript','productVersion','packageVersion'];
     }
     if (!isset($this->products[$this->fdOpsiServerDn])) {
       $s_daemon = new supportDaemon();
@@ -135,7 +135,7 @@ class opsiSoftwareList extends simplePlugin
         );
         return FALSE;
       }
-      $localboots = $s_daemon->append_call('OPSI.get_localboots', $this->macAddress, array('args' => array($opsi_args)));
+      $localboots = $s_daemon->append_call('OPSI.get_localboots', $this->macAddress, ['args' => [$opsi_args]]);
       if ($s_daemon->is_error()) {
         msg_dialog::display(
           _('Failed to contact OPSI server'),
@@ -143,12 +143,12 @@ class opsiSoftwareList extends simplePlugin
         );
         return;
       }
-      $this->products[$this->fdOpsiServerDn]['localboots'] = array();
+      $this->products[$this->fdOpsiServerDn]['localboots'] = [];
       foreach ($localboots as $localboot) {
         $this->products[$this->fdOpsiServerDn]['localboots'][$localboot['id']] = $localboot;
       }
     }
-    $choices = array();
+    $choices = [];
     foreach ($this->products[$this->fdOpsiServerDn]['localboots'] as $id => $infos) {
       $choices[$id] = sprintf(_('%s (%s-%s)'), $infos['id'], $infos['productVersion'], $infos['packageVersion']);
     }
@@ -162,8 +162,8 @@ class opsiSoftwareList extends simplePlugin
   {
     $localboot = $this->attributesAccess['fdOpsiLocalbootProduct']->attribute->attributes[0]->getValue();
 
-    $actions = array();
-    foreach (array('setup', 'always', 'once', 'custom', 'userLogin', 'update') as $action) {
+    $actions = [];
+    foreach (['setup', 'always', 'once', 'custom', 'userLogin', 'update'] as $action) {
       if (!empty($this->products[$this->fdOpsiServerDn]['localboots'][$localboot][$action.'Script'])) {
         $actions[] = strtolower($action);
       }
diff --git a/opsi/admin/systems/opsi/class_opsiClient.inc b/opsi/admin/systems/opsi/class_opsiClient.inc
index d273431ac2..4f2e13243d 100644
--- a/opsi/admin/systems/opsi/class_opsiClient.inc
+++ b/opsi/admin/systems/opsi/class_opsiClient.inc
@@ -20,10 +20,10 @@
 
 class opsiClient extends simplePlugin
 {
-  var $objectclasses  = array('opsiClient');
+  var $objectclasses  = ['opsiClient'];
   var $displayHeader  = TRUE;
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
   var $initialMembers;
   var $products;
@@ -32,29 +32,29 @@ class opsiClient extends simplePlugin
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI client'),
       'plDescription' => _('Edit OPSI client settings'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('workstation', 'ogroup-dynamic'),
-      'plDepends'     => array('sambaSystemTab'),
-      'plConflicts'   => array('debconfStartup','faiStartup'),
+      'plObjectType'  => ['workstation', 'ogroup-dynamic'],
+      'plDepends'     => ['sambaSystemTab'],
+      'plConflicts'   => ['debconfStartup','faiStartup'],
       'plPriority'    => 8,
-      'plForeignKeys'   => array(
+      'plForeignKeys'   => [
         'fdOpsiServerDn'  => 'serverGeneric',
         'fdOpsiProfileDn' => 'opsiProfile',
-      ),
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('OPSI Client'),
-        'attrs' => array(
+        'attrs' => [
           new SubmittingOPSIServerAttribute(
             _('OPSI Server'), _('The OPSI Server this client is connected to'),
             'fdOpsiServerDn', TRUE
@@ -63,16 +63,16 @@ class opsiClient extends simplePlugin
             _('OPSI Profile'), _('The OPSI Profile to apply to this client'),
             'fdOpsiProfileDn', FALSE
           ),
-        )
-      ),
-      'products' => array(
+        ]
+      ],
+      'products' => [
         'name'  => _('Softwares'),
-        'attrs' => array(
+        'attrs' => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('The localboot products to setup on this host'),
               'fdOpsiLocalbootProduct',
-              array(
+              [
                 new SelectAttribute(
                   '', '',
                   'fdOpsiLocalbootProduct_product', TRUE
@@ -80,42 +80,42 @@ class opsiClient extends simplePlugin
                 new SelectAttribute(
                   '', '',
                   'fdOpsiLocalbootProduct_action', TRUE,
-                  array('setup', 'always', 'once', 'custom', 'userlogin', 'update')
+                  ['setup', 'always', 'once', 'custom', 'userlogin', 'update']
                 )
-              ),
+              ],
               '|', '', _('Localboot products')
             ),
             FALSE, // non-ordered
-            array(),
+            [],
             TRUE // edition
           ),
           new BooleanAttribute(
             _('Inherit group localboots'), _('If this is checked localboot configured in the group OPSI tab will be installed along with the localboots configured here'),
             'fdOpsiLocalbootInherit', FALSE
           ),
-        )
-      ),
-      'infos' => array(
+        ]
+      ],
+      'infos' => [
         'name'  => _('Information'),
-        'attrs' => array(
+        'attrs' => [
           new DisplayAttribute(
             _('Last seen'), _('Last time this OPSI client was seen by the OPSI server'),
             'lastSeen', FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
     parent::__construct($dn, $object, $parent, $mainTab);
     if ($object instanceof ogroup) {
-      $this->initialMembers = array();
+      $this->initialMembers = [];
       if (isset($object->saved_attributes['member'])) {
         $this->initialMembers = $object->saved_attributes['member'];
         if (!is_array($this->initialMembers)) {
-          $this->initialMembers = array($this->initialMembers);
+          $this->initialMembers = [$this->initialMembers];
         }
       }
     }
@@ -132,7 +132,7 @@ class opsiClient extends simplePlugin
     }
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     if ($this->member_of_group) {
@@ -145,7 +145,7 @@ class opsiClient extends simplePlugin
     }
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     if ($this->member_of_group && (($this->fdOpsiProfileDn == 'inherited') || $this->fdOpsiLocalbootInherit)) {
       $this->fdOpsiServerDn = 'inherited';
@@ -153,21 +153,21 @@ class opsiClient extends simplePlugin
     return parent::prepare_save();
   }
 
-  function save()
+  function save ()
   {
     global $config;
     if ($this->initially_was_account && $this->editing_group() && !$this->is_template) {
       $oldMembers = array_diff($this->initialMembers, $this->parent->getBaseObject()->member);
-      $macAddresses = array();
+      $macAddresses = [];
       $ldap = $config->get_ldap_link();
       foreach ($oldMembers as $member) {
-        $ldap->cat($member, array('macAddress'), '(&(!(objectClass=opsiClient))(macAddress=*))');
+        $ldap->cat($member, ['macAddress'], '(&(!(objectClass=opsiClient))(macAddress=*))');
         if ($attrs = $ldap->fetch()) {
           $macAddresses[] = $attrs['macAddress'][0];
         }
       }
       if (!empty($macAddresses)) {
-        $ldap->cat($this->fdOpsiServerDn, array('macAddress'));
+        $ldap->cat($this->fdOpsiServerDn, ['macAddress']);
         if ($attrs = $ldap->fetch()) {
           $serverMac = $attrs['macAddress'][0];
         } else {
@@ -178,7 +178,7 @@ class opsiClient extends simplePlugin
         }
         $s_daemon   = new supportDaemon();
         if ($s_daemon->is_available()) {
-          $s_daemon->append_call('OPSI.delete', array($serverMac), array('args' => array($macAddresses)));
+          $s_daemon->append_call('OPSI.delete', [$serverMac], ['args' => [$macAddresses]]);
           if ($s_daemon->is_error()) {
             msg_dialog::display(
               _('Could not remove OPSI information'),
@@ -199,14 +199,14 @@ class opsiClient extends simplePlugin
     }
   }
 
-  function getMacAddresses()
+  function getMacAddresses ()
   {
     global $config;
-    $macAddresses = array();
+    $macAddresses = [];
     if ($this->editing_group()) {
       $ldap = $config->get_ldap_link();
       foreach ($this->parent->getBaseObject()->member as $member) {
-        $ldap->cat($member, array('macAddress'), '(macAddress=*)');
+        $ldap->cat($member, ['macAddress'], '(macAddress=*)');
         if ($attrs = $ldap->fetch()) {
           $macAddresses[] = $attrs['macAddress'][0];
         } else {
@@ -224,24 +224,24 @@ class opsiClient extends simplePlugin
     } else {
       $macAddresses = $this->parent->getBaseObject()->macAddress;
       if (!is_array($macAddresses)) {
-        $macAddresses = array($macAddresses);
+        $macAddresses = [$macAddresses];
       } elseif (count($macAddresses) > 1) {
-        $macAddresses = array(reset($macAddresses));
+        $macAddresses = [reset($macAddresses)];
       }
     }
     return $macAddresses;
   }
 
-  function update_or_insert()
+  function update_or_insert ()
   {
     global $config;
     $s_daemon     = new supportDaemon();
     $macAddresses = $this->getMacAddresses();
     if (!empty($macAddresses) && $s_daemon->is_available()) {
       if (!$this->editing_group() && !empty($this->initialOpsiId)) {
-        $s_daemon->append_call('OPSI.update_or_insert', reset($macAddresses), array('args' => array($this->initialOpsiId)));
+        $s_daemon->append_call('OPSI.update_or_insert', reset($macAddresses), ['args' => [$this->initialOpsiId]]);
       } else {
-        $s_daemon->append_call('OPSI.update_or_insert', $macAddresses, array());
+        $s_daemon->append_call('OPSI.update_or_insert', $macAddresses, []);
       }
       if ($s_daemon->is_error()) {
         msg_dialog::display(
@@ -252,7 +252,7 @@ class opsiClient extends simplePlugin
     }
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
     if ($this->member_of_group && !$this->is_template) {
       // If the winstation is member of an ogroup which has OPSI activated, we must update_or_insert information
@@ -263,16 +263,16 @@ class opsiClient extends simplePlugin
     return parent::remove($fulldelete);
   }
 
-  protected function ldap_remove()
+  protected function ldap_remove ()
   {
     global $config;
 
     if (!$this->is_template) {
-      $macAddresses = array();
+      $macAddresses = [];
       if ($this->editing_group()) {
         $ldap = $config->get_ldap_link();
         foreach ($this->initialMembers as $member) {
-          $ldap->cat($member, array('macAddress'), '(&(!(objectClass=opsiClient))(macAddress=*))');
+          $ldap->cat($member, ['macAddress'], '(&(!(objectClass=opsiClient))(macAddress=*))');
           if ($attrs = $ldap->fetch()) {
             $macAddresses[] = $attrs['macAddress'][0];
           }
@@ -280,16 +280,16 @@ class opsiClient extends simplePlugin
       } elseif (!$this->member_of_group) {
         $macAddresses = $this->parent->getBaseObject()->macAddress;
         if (!is_array($macAddresses)) {
-          $macAddresses = array($macAddresses);
+          $macAddresses = [$macAddresses];
         } elseif (count($macAddresses) > 1) {
-          $macAddresses = array($macAddresses[0]);
+          $macAddresses = [$macAddresses[0]];
         }
       }
 
       if (!empty($macAddresses)) {
         $s_daemon   = new supportDaemon();
         if ($s_daemon->is_available()) {
-          $s_daemon->append_call('OPSI.delete', $macAddresses, array());
+          $s_daemon->append_call('OPSI.delete', $macAddresses, []);
           if ($s_daemon->is_error()) {
             msg_dialog::display(
               _('Could not remove OPSI information'),
@@ -313,9 +313,9 @@ class opsiClient extends simplePlugin
     }
 
     $ldap = $config->get_ldap_link();
-    $ldap->search('(&(objectClass=opsiProfile)(fdOpsiServerDn='.$fdOpsiServerDn.'))', array('cn'));
-    $profilesdn    = array();
-    $profileslabel = array();
+    $ldap->search('(&(objectClass=opsiProfile)(fdOpsiServerDn='.$fdOpsiServerDn.'))', ['cn']);
+    $profilesdn    = [];
+    $profileslabel = [];
     while ($attrs = $ldap->fetch()) {
       $profilesdn[]    = $attrs['dn'];
       $profileslabel[] = $attrs['cn'][0];
@@ -324,11 +324,11 @@ class opsiClient extends simplePlugin
       $profilesdn[]     = 'inherited';
       $profileslabel[]  = sprintf(_('Inherited (%s)'), ldap_explode_dn($this->group_attrs['fdOpsiProfileDn'][0], 1)[0]);
       $this->attributesAccess['fdOpsiProfileDn']->setManagedAttributes(
-        array(
-          'disable' => array(
-            'inherited' => array('fdOpsiServerDn')
-          )
-        )
+        [
+          'disable' => [
+            'inherited' => ['fdOpsiServerDn']
+          ]
+        ]
       );
     }
     $this->attributesAccess['fdOpsiProfileDn']->setChoices($profilesdn, $profileslabel);
@@ -361,7 +361,7 @@ class opsiClient extends simplePlugin
     }
     $macAddresses = $this->getMacAddresses();
     if (!empty($macAddresses)) {
-      $infos = $s_daemon->append_call('OPSI.host_getObjects', $macAddress, array('args' => array(array('lastSeen', 'hardwareAddress'), array('hardwareAddress' => $macAddresses))));
+      $infos = $s_daemon->append_call('OPSI.host_getObjects', $macAddress, ['args' => [['lastSeen', 'hardwareAddress'], ['hardwareAddress' => $macAddresses]]]);
       if ($s_daemon->is_error()) {
         $this->lastSeen = sprintf(_('Failed to contact OPSI server: %s'), $s_daemon->get_error());
       } elseif (count($infos) == 0) {
@@ -378,8 +378,8 @@ class opsiClient extends simplePlugin
       }
     }
     if (!isset($this->products[$this->fdOpsiServerDn])) {
-      $opsi_args  = array('id','name','setupScript','alwaysScript','onceScript','customScript','userLoginScript','updateScript','productVersion','packageVersion');
-      $localboots = $s_daemon->append_call('OPSI.get_localboots', $macAddress, array('args' => array($opsi_args)));
+      $opsi_args  = ['id','name','setupScript','alwaysScript','onceScript','customScript','userLoginScript','updateScript','productVersion','packageVersion'];
+      $localboots = $s_daemon->append_call('OPSI.get_localboots', $macAddress, ['args' => [$opsi_args]]);
       if ($s_daemon->is_error()) {
         msg_dialog::display(
           _('Failed to contact OPSI server'),
@@ -387,7 +387,7 @@ class opsiClient extends simplePlugin
         );
         return;
       }
-      $this->products[$this->fdOpsiServerDn]['localboots'] = array();
+      $this->products[$this->fdOpsiServerDn]['localboots'] = [];
       foreach ($localboots as $localboot) {
         $this->products[$this->fdOpsiServerDn]['localboots'][$localboot['id']] = $localboot;
       }
@@ -399,7 +399,7 @@ class opsiClient extends simplePlugin
       );
       return;
     }
-    $choices = array();
+    $choices = [];
     foreach ($this->products[$this->fdOpsiServerDn]['localboots'] as $id => $infos) {
       $choices[$id] = sprintf(_('%s (%s-%s)'), $infos['id'], $infos['productVersion'], $infos['packageVersion']);
     }
@@ -413,8 +413,8 @@ class opsiClient extends simplePlugin
   {
     $localboot = $this->attributesAccess['fdOpsiLocalbootProduct']->attribute->attributes[0]->getValue();
 
-    $actions = array();
-    foreach (array('setup', 'always', 'once', 'custom', 'userLogin', 'update') as $action) {
+    $actions = [];
+    foreach (['setup', 'always', 'once', 'custom', 'userLogin', 'update'] as $action) {
       if (!empty($this->products[$this->fdOpsiServerDn]['localboots'][$localboot][$action.'Script'])) {
         $actions[] = strtolower($action);
       }
diff --git a/opsi/admin/systems/opsi/class_opsiLogView.inc b/opsi/admin/systems/opsi/class_opsiLogView.inc
index 50be4da412..b9dc19cccf 100644
--- a/opsi/admin/systems/opsi/class_opsiLogView.inc
+++ b/opsi/admin/systems/opsi/class_opsiLogView.inc
@@ -27,11 +27,11 @@ class opsiLogView extends simplePlugin
 
   static function getAttributesInfo ()
   {
-    return array(
-      'logs' => array(
+    return [
+      'logs' => [
         'name'  => _('Available logs'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new SelectAttribute(
             _('Available logs'), _('Available log files'),
             'available_logs', FALSE
@@ -40,22 +40,22 @@ class opsiLogView extends simplePlugin
             '', _('Content of the selected log'),
             'display_log'
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI Logs'),
       'plDescription' => _('OPSI Logs Viewer'),
       'plPriority'    => 30,
-      'plObjectType'  => array('workstation'),
+      'plObjectType'  => ['workstation'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -77,7 +77,7 @@ class opsiLogView extends simplePlugin
 
       if (isset($this->parent->by_object['opsiClient']) && $this->parent->by_object['opsiClient']->is_account && ($this->mac != '')) {
         /* Query for log files */
-        $res = $this->o_queue->append_call('System.list_logs', $this->mac, array('args' => array()));
+        $res = $this->o_queue->append_call('System.list_logs', $this->mac, ['args' => []]);
         if ($this->o_queue->is_error()) {
           msg_dialog::display(_("Error"), $this->o_queue->get_error(), ERROR_DIALOG);
         }
@@ -97,18 +97,18 @@ class opsiLogView extends simplePlugin
     $this->ignore_account = FALSE;
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     /* Will not work when called from parent constructor (or when $attrs is not us) */
     return (count($this->attributesAccess['available_logs']->getChoices()) > 1);
   }
 
-  function loadLog()
+  function loadLog ()
   {
     if ($this->is_template) {
       return;
     }
-    $res = $this->o_queue->append_call('System.get_log', $this->mac, array('args' => array($this->available_logs)));
+    $res = $this->o_queue->append_call('System.get_log', $this->mac, ['args' => [$this->available_logs]]);
     if ($this->o_queue->is_error()) {
       msg_dialog::display(_("Error"), $this->o_queue->get_error(), ERROR_DIALOG);
     } else {
@@ -118,14 +118,14 @@ class opsiLogView extends simplePlugin
     }
   }
 
-  function save()
+  function save ()
   {
-    return array();
+    return [];
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/opsi/admin/systems/services/opsi/class_serviceOPSI.inc b/opsi/admin/systems/services/opsi/class_serviceOPSI.inc
index b8d88bb868..5c9730b38a 100644
--- a/opsi/admin/systems/services/opsi/class_serviceOPSI.inc
+++ b/opsi/admin/systems/services/opsi/class_serviceOPSI.inc
@@ -20,26 +20,26 @@
 
 class serviceOPSI extends simpleService
 {
-  var $objectclasses = array('opsiServer');
+  var $objectclasses = ['opsiServer'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI service'),
       'plDescription' => _('OPSI service').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=opsi&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'      => _('OPSI Server information'),
-        'attrs'     => array(
+        'attrs'     => [
           new StringAttribute(
             _('Server URI'), _('The URI to use for connection'),
             'fdOpsiServerURI', TRUE
@@ -52,9 +52,9 @@ class serviceOPSI extends simpleService
             _('Password'), _('The password to use for connection'),
             'fdOpsiServerPassword', TRUE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
diff --git a/opsi/config/opsi/class_opsiConfig.inc b/opsi/config/opsi/class_opsiConfig.inc
index 8c2aba9306..44f3b045ad 100644
--- a/opsi/config/opsi/class_opsiConfig.inc
+++ b/opsi/config/opsi/class_opsiConfig.inc
@@ -20,35 +20,35 @@
 
 class opsiConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdOpsiPluginConf');
+  var $objectclasses  = ['fdOpsiPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('OPSI configuration'),
       'plDescription' => _('FusionDirectory OPSI plugin configuration'),
       'plSelfModify'  => FALSE,
-      'plCategory'    => array('configuration'),
-      'plObjectType'  => array('smallConfig'),
+      'plCategory'    => ['configuration'],
+      'plObjectType'  => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('OPSI'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('OPSI RDN'), _('Branch in which OPSI profiles will be stored'),
             'fdOpsiRDN', TRUE,
             'ou=opsi'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/personal/config/personal/class_personalConfig.inc b/personal/config/personal/class_personalConfig.inc
index 790ea1ad6a..64dee472a2 100644
--- a/personal/config/personal/class_personalConfig.inc
+++ b/personal/config/personal/class_personalConfig.inc
@@ -20,34 +20,34 @@
 
 class personalConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdPersonalPluginConf');
+  var $objectclasses  = ['fdPersonalPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Personal configuration'),
       'plDescription'   => _('FusionDirectory personal plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Personal'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Allow use of private email for password recovery'), _('Allow users to use their private email address for password recovery'),
             'fdPrivateEmailPasswordRecovery', FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/personal/personal/personal/class_personalInfo.inc b/personal/personal/personal/class_personalInfo.inc
index c9f5efef87..37ad0a1760 100644
--- a/personal/personal/personal/class_personalInfo.inc
+++ b/personal/personal/personal/class_personalInfo.inc
@@ -25,7 +25,7 @@ class SocialAccountAttribute extends CompositeAttribute
     $handlers = socialHandler::listHandlers();
     parent::__construct (
       $description, $ldapName,
-      array(
+      [
         new SelectAttribute(
           _('Site'), _('Website the account is on'),
           'socialSite', TRUE,
@@ -36,7 +36,7 @@ class SocialAccountAttribute extends CompositeAttribute
           _('Id'), _('Id of this user on this website'),
           'socialId', TRUE
         )
-      ),
+      ],
       '/^([^:]+):(.*)$/',
       '%s:%s',
       $acl, $label
@@ -47,10 +47,10 @@ class SocialAccountAttribute extends CompositeAttribute
   {
     $handlerClass = 'socialHandler_'.$this->attributes[0]->getValue();
     if (!class_available($handlerClass)) {
-      return array($handlerClass, $this->attributes[1]->getValue());
+      return [$handlerClass, $this->attributes[1]->getValue()];
     }
     $handler      = new $handlerClass();
-    return array($handlerClass::getName(), array('html' => $handler->linkify($this->attributes[1]->getValue())));
+    return [$handlerClass::getName(), ['html' => $handler->linkify($this->attributes[1]->getValue())]];
   }
 
   function check ()
@@ -77,29 +77,29 @@ class SocialAccountAttribute extends CompositeAttribute
 class personalInfo extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('fdPersonalInfo');
+  var $objectclasses = ['fdPersonalInfo'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Personal'),
       'plDescription'   => _('Personal information'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=applications&icon=user-info&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=user-info&size=16',
       'plPriority'      => 3,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Personal info'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Personal title'), _('Personal title - Examples of personal titles are "Ms", "Dr", "Prof" and "Rev"'),
             'personalTitle', FALSE
@@ -122,7 +122,7 @@ class personalInfo extends simplePlugin
           new SelectAttribute (
             _('Sex'), _('Gender'),
             'gender', FALSE,
-            array('', 'M', 'F'), '', array('', 'male', 'female')
+            ['', 'M', 'F'], '', ['', 'male', 'female']
           ),
           new StringAttribute (
             _('Country'), _('Country'),
@@ -142,11 +142,11 @@ class personalInfo extends simplePlugin
             _('Photo Visible'), _('Should the photo of the user be visible on external tools'),
             'fdPhotoVisible', FALSE, TRUE
           ),
-        )
-      ),
-      'contact' => array(
+        ]
+      ],
+      'contact' => [
         'name'  => _('Contact'),
-        'attrs' => array(
+        'attrs' => [
           new OrderedArrayAttribute(
             new SocialAccountAttribute(
               _('Social account'), _('Social accounts of this user'),
@@ -160,9 +160,9 @@ class personalInfo extends simplePlugin
               'fdPrivateMail'
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 ?>
diff --git a/personal/personal/personal/class_socialHandlers.inc b/personal/personal/personal/class_socialHandlers.inc
index 237f967061..a450a7f2fd 100644
--- a/personal/personal/personal/class_socialHandlers.inc
+++ b/personal/personal/personal/class_socialHandlers.inc
@@ -25,10 +25,10 @@ class socialHandlerInvalidValueException extends FusionDirectoryException
 
 class socialHandler
 {
-  static function listHandlers()
+  static function listHandlers ()
   {
     global $class_mapping;
-    $available = array();
+    $available = [];
     foreach ($class_mapping as $class => $path) {
       if (preg_match('/^socialHandler_(.+)/', $class, $m)) {
         $available[$m[1]] = $class::getName();
@@ -37,7 +37,7 @@ class socialHandler
     return $available;
   }
 
-  static function getName()
+  static function getName ()
   {
     die('Social handler missing getName method');
   }
@@ -45,18 +45,18 @@ class socialHandler
   protected $baseurl = '';
 
   /* Returns a link to the social profile page */
-  function linkify($value)
+  function linkify ($value)
   {
     return $this->link($this->baseurl.'/'.$value, $value);
   }
 
-  protected function link($link, $text)
+  protected function link ($link, $text)
   {
     return '<a href="'.$link.'">'.htmlentities($text).'</a>';
   }
 
   /* Returns the value if ok or throws a socialHandlerInvalidValueException */
-  function validate($value)
+  function validate ($value)
   {
     return $value;
   }
@@ -64,7 +64,7 @@ class socialHandler
 
 class socialHandler_facebook extends socialHandler
 {
-  static function getName()
+  static function getName ()
   {
     return _('Facebook');
   }
@@ -74,19 +74,19 @@ class socialHandler_facebook extends socialHandler
 
 class socialHandler_twitter extends socialHandler
 {
-  static function getName()
+  static function getName ()
   {
     return _('Twitter');
   }
 
   protected $baseurl = 'https://twitter.com';
 
-  function linkify($value)
+  function linkify ($value)
   {
     return $this->link($this->baseurl.'/'.$value, '@'.$value);
   }
 
-  function validate($value)
+  function validate ($value)
   {
     return preg_replace('/^@/', '', $value);
   }
@@ -94,19 +94,19 @@ class socialHandler_twitter extends socialHandler
 
 class socialHandler_diaspora extends socialHandler
 {
-  static function getName()
+  static function getName ()
   {
     return _('Diaspora*');
   }
 
   protected $baseurl = '';
 
-  function linkify($value)
+  function linkify ($value)
   {
     return $value;
   }
 
-  function validate($value)
+  function validate ($value)
   {
     if (!tests::is_email($value)) {
       throw new socialHandlerInvalidValueException(_('Diaspora accounts must look like user@pod'));
@@ -117,7 +117,7 @@ class socialHandler_diaspora extends socialHandler
 
 class socialHandler_linkedin extends socialHandler
 {
-  static function getName()
+  static function getName ()
   {
     return _('LinkedIn');
   }
@@ -127,19 +127,19 @@ class socialHandler_linkedin extends socialHandler
 
 class socialHandler_orcid extends socialHandler
 {
-  static function getName()
+  static function getName ()
   {
     return _('ORCID');
   }
 
   protected $baseurl = 'https://orcid.org';
 
-  function linkify($value)
+  function linkify ($value)
   {
     return $this->link($this->baseurl.'/'.$value, $value);
   }
 
-  function validate($value)
+  function validate ($value)
   {
     if (!preg_match('/^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$/', $value)) {
       throw new socialHandlerInvalidValueException(_('ORCID account IDs must look like XXXX-XXXX-XXXX-XXXX where X are digits'));
diff --git a/posix/admin/groups/posix/class_posixGroup.inc b/posix/admin/groups/posix/class_posixGroup.inc
index a1a84c0836..ed11d11b63 100644
--- a/posix/admin/groups/posix/class_posixGroup.inc
+++ b/posix/admin/groups/posix/class_posixGroup.inc
@@ -22,42 +22,42 @@
 
 class posixGroup extends simplePlugin
 {
-  public $objectclasses = array('posixGroup');
-  protected $locks      = array();
+  public $objectclasses = ['posixGroup'];
+  protected $locks      = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
     if (class_available('mixedGroup')) {
-      return array();
+      return [];
     }
-    return array(
+    return [
       'plShortName'   => _('Group'),
       'plDescription' => _('POSIX group information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('group' => array(
+      'plObjectType'  => ['group' => [
         'name'        => _('POSIX group'),
         'description' => _('POSIX user group'),
         'ou'          => get_ou('groupRDN'),
         'filter'      => 'objectClass=posixGroup',
         'icon'        => 'geticon.php?context=types&icon=user-group&size=16',
         'mainAttr'    => 'cn',
-      )),
-      'plForeignKeys'  => array(
-        'memberUid' => array('user','uid')
-      ),
+      ]],
+      'plForeignKeys'  => [
+        'memberUid' => ['user','uid']
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     global $config;
 
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('groupRDN')),
           new StringAttribute(
             _('Name'), _('Name of this group'),
@@ -77,36 +77,36 @@ class posixGroup extends simplePlugin
             'gidNumber', FALSE,
             $config->get_cfg_value('minId', 0), FALSE, ''
           )
-        )
-      ),
-      'members' => array(
+        ]
+      ],
+      'members' => [
         'name'  => _('Group members'),
-        'attrs' => array(
+        'attrs' => [
           new UsersAttribute(
             '', _('Group members'),
             'memberUid', FALSE,
-            array(), 'uid'
+            [], 'uid'
           )
-        )
-      ),
-      'system_trust' => array(
+        ]
+      ],
+      'system_trust' => [
         'name'  => _('System trust'),
         'icon'  => 'geticon.php?context=status&icon=locked&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Trust mode'), _('Type of authorization for those hosts'),
             'trustMode', FALSE,
-            array('', 'fullaccess', 'byhost'),
+            ['', 'fullaccess', 'byhost'],
             '',
-            array(_('disabled'), _('full access'), _('allow access to these hosts'))
+            [_('disabled'), _('full access'), _('allow access to these hosts')]
           ),
           new SystemsAttribute(
             '', _('Only allow this group to connect to this list of hosts'),
             'host', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -115,12 +115,12 @@ class posixGroup extends simplePlugin
 
     $this->attributesAccess['trustMode']->setInLdap(FALSE);
     $this->attributesAccess['trustMode']->setManagedAttributes(
-      array(
-        'multiplevalues' => array('notbyhost' => array('','fullaccess')),
-        'erase' => array(
-          'notbyhost' => array('host')
-        )
-      )
+      [
+        'multiplevalues' => ['notbyhost' => ['','fullaccess']],
+        'erase' => [
+          'notbyhost' => ['host']
+        ]
+      ]
     );
     if ((count($this->host) == 1) && ($this->host[0] == '*')) {
       $this->trustMode = 'fullaccess';
@@ -131,13 +131,13 @@ class posixGroup extends simplePlugin
     $this->attributesAccess['gidNumber']->setUnique(TRUE);
     $this->attributesAccess['force_id']->setInLdap(FALSE);
     $this->attributesAccess['force_id']->setManagedAttributes(
-      array(
-        'disable' => array (
-          FALSE => array (
+      [
+        'disable' => [
+          FALSE => [
             'gidNumber',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     if ($this->is_template) {
       /* Template specific handling */
@@ -150,7 +150,7 @@ class posixGroup extends simplePlugin
     }
   }
 
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     parent::resetCopyInfos();
 
@@ -159,7 +159,7 @@ class posixGroup extends simplePlugin
     $this->gidNumber = "";
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     if (!$this->force_id) {
       /* Handle gidNumber */
@@ -181,7 +181,7 @@ class posixGroup extends simplePlugin
     }
 
     if ($this->trustMode == 'fullaccess') {
-      $this->attrs['host'] = array('*');
+      $this->attrs['host'] = ['*'];
     }
 
     /* Trust accounts */
@@ -206,30 +206,30 @@ class posixGroup extends simplePlugin
     return $errors;
   }
 
-  function save()
+  function save ()
   {
     $errors = parent::save();
 
     foreach ($this->locks as $lock) {
       del_lock($lock);
     }
-    $this->locks = array();
+    $this->locks = [];
 
     return $errors;
   }
 
-  function addUser($dn, $uid)
+  function addUser ($dn, $uid)
   {
     $this->attributesAccess['memberUid']->addValue($dn,
-      array(
+      [
         'dn'  => $dn,
-        'uid' => array($uid),
-        'cn'  => array($uid)
-      )
+        'uid' => [$uid],
+        'cn'  => [$uid]
+      ]
     );
   }
 
-  function removeUser($uid)
+  function removeUser ($uid)
   {
     $this->attributesAccess['memberUid']->searchAndRemove($uid);
   }
diff --git a/posix/config/posix/class_posixConfig.inc b/posix/config/posix/class_posixConfig.inc
index 6a2b482a4b..9fb4b0864a 100644
--- a/posix/config/posix/class_posixConfig.inc
+++ b/posix/config/posix/class_posixConfig.inc
@@ -20,28 +20,28 @@
 
 class posixConfig extends simplePlugin
 {
-  var $objectclasses = array();
+  var $objectclasses = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('POSIX configuration'),
       'plDescription'   => _('FusionDirectory POSIX plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Posix'),
-        'class' => array('critical'),
-        'attrs' => array(
+        'class' => ['critical'],
+        'attrs' => [
           new StringAttribute (
             _('POSIX groups RDN'), _('The branch where POSIX groups are stored.'),
             'fdGroupRDN', TRUE,
@@ -72,8 +72,8 @@ class posixConfig extends simplePlugin
           new SelectAttribute (
             _('Id allocation method'), _('Method to allocate user/group ids'),
             'fdIdAllocationMethod', TRUE,
-            array('traditional', 'pool'), 'traditional',
-            array(_('Traditional'), _('Samba unix id pool'))
+            ['traditional', 'pool'], 'traditional',
+            [_('Traditional'), _('Samba unix id pool')]
           ),
           new IntAttribute (
             _('Pool user id min'), _('Minimum value for user id when using pool method'),
@@ -95,26 +95,26 @@ class posixConfig extends simplePlugin
             'fdGidNumberPoolMax', FALSE,
             0, FALSE, 40000
           ),
-        )
-      ),
-      'shells' => array(
+        ]
+      ],
+      'shells' => [
         'name'  => _('Shells'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new StringAttribute (
               _('Available shells'), _('Available POSIX shells for FD users.'),
               'fdShells', FALSE
             ),
-            array('/bin/ash','/bin/bash','/bin/csh','/bin/sh','/bin/ksh',
-                  '/bin/tcsh','/bin/dash','/bin/zsh','/sbin/nologin', '/bin/false', '/usr/bin/git-shell')
+            ['/bin/ash','/bin/bash','/bin/csh','/bin/sh','/bin/ksh',
+                  '/bin/tcsh','/bin/dash','/bin/zsh','/sbin/nologin', '/bin/false', '/usr/bin/git-shell']
           ),
           new SelectAttribute (
             _('Default shell'), _('Shell used by default when activating Unix tab.'),
             'fdDefaultShell', TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -124,18 +124,18 @@ class posixConfig extends simplePlugin
     $this->attributesAccess['fdDefaultShell']->setChoices($this->fdShells);
 
     $this->attributesAccess['fdIdAllocationMethod']->setManagedAttributes(
-      array(
-        'erase' => array (
-          'traditional' => array (
+      [
+        'erase' => [
+          'traditional' => [
             'fdUidNumberPoolMin','fdUidNumberPoolMax',
             'fdGidNumberPoolMin','fdGidNumberPoolMax',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->attributesAccess['fdDefaultShell']->setChoices($this->fdShells);
diff --git a/posix/personal/posix/class_posixAccount.inc b/posix/personal/posix/class_posixAccount.inc
index 3d46bbc1c5..29c2bcb83c 100644
--- a/posix/personal/posix/class_posixAccount.inc
+++ b/posix/personal/posix/class_posixAccount.inc
@@ -40,7 +40,7 @@ class EpochDaysDateAttribute extends DateAttribute
     parent::__construct($label, $description, $ldapName, $required, '', $defaultValue, $acl);
   }
 
-  protected function ldapToDate($ldapValue)
+  protected function ldapToDate ($ldapValue)
   {
     $date = DateTime::createFromFormat('U', $ldapValue * static::$secondsPerDay, timezone::utc());
     if ($date !== FALSE) {
@@ -51,12 +51,12 @@ class EpochDaysDateAttribute extends DateAttribute
     }
   }
 
-  protected function dateToLdap($dateValue)
+  protected function dateToLdap ($dateValue)
   {
     return floor($dateValue->format('U') / static::$secondsPerDay);
   }
 
-  function getEpochDays()
+  function getEpochDays ()
   {
     if (empty($this->value)) {
       return 0;
@@ -77,47 +77,47 @@ class EpochDaysDateAttribute extends DateAttribute
 class posixAccount extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('posixAccount', 'shadowAccount');
-  protected $locks = array();
+  var $objectclasses = ['posixAccount', 'shadowAccount'];
+  protected $locks = [];
 
   protected $fromTemplate         = FALSE;
-  protected $savedGroupMembership = array();
+  protected $savedGroupMembership = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Unix'),
       'plDescription' => _('Edit users POSIX settings'),
       'plIcon'        => 'geticon.php?context=applications&icon=os-linux&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=os-linux&size=16',
       'plSelfModify'  => TRUE,
       'plPriority'    => 2,
-      'plObjectType'  => array('user'),
-      'plForeignKeys' => array(
-        'gidNumber' => array(
-          array('posixGroup','gidNumber'),
-          array('mixedGroup','gidNumber'),
-        ),
-        'host'      => array(
-          array('serverGeneric', 'cn'),
-          array('workstationGeneric', 'cn'),
-          array('terminalGeneric', 'cn'),
-        )
-      ),
+      'plObjectType'  => ['user'],
+      'plForeignKeys' => [
+        'gidNumber' => [
+          ['posixGroup','gidNumber'],
+          ['mixedGroup','gidNumber'],
+        ],
+        'host'      => [
+          ['serverGeneric', 'cn'],
+          ['workstationGeneric', 'cn'],
+          ['terminalGeneric', 'cn'],
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
     global $config;
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Unix'),
         'icon'  => 'geticon.php?context=applications&icon=os-linux&size=16',
-        'attrs' => array(
+        'attrs' => [
           new PathAttribute(
             _('Home directory'), _('The path to the home directory of this user'),
             'homeDirectory', TRUE
@@ -126,7 +126,7 @@ class posixAccount extends simplePlugin
           new SelectAttribute(
             _('Shell'), _('Which shell should be used when this user log in'),
             'loginShell', TRUE,
-            $config->get_cfg_value('Shells', array(_('unconfigured'))),
+            $config->get_cfg_value('Shells', [_('unconfigured')]),
             $config->get_cfg_value('DefaultShell', '')
           ),
           new SelectAttribute(
@@ -151,19 +151,19 @@ class posixAccount extends simplePlugin
             'gidNumber', FALSE,
             $config->get_cfg_value('minId', 0), FALSE, ''
           )
-        )
-      ),
-      'groups' => array(
+        ]
+      ],
+      'groups' => [
         'name'  => _('Group membership'),
         'icon'  => 'geticon.php?context=types&icon=user-group&size=16',
-        'attrs' => array(
+        'attrs' => [
           new GroupsAttribute('', _('Group membership'), 'groupMembership')
-        )
-      ),
-      'account' => array(
+        ]
+      ],
+      'account' => [
         'name'  => _('Account'),
         'icon'  => 'geticon.php?context=devices&icon=terminal&size=16',
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute(
             _('User must change password on first login'), _('User must change password on first login (needs a value for Delay before forcing password change)'),
             'mustchangepassword', FALSE
@@ -198,26 +198,26 @@ class posixAccount extends simplePlugin
             'shadowLastChange', FALSE,
             0, FALSE, ''
           ),
-        )
-      ),
-      'system_trust' => array(
+        ]
+      ],
+      'system_trust' => [
         'name'  => _('System trust'),
         'icon'  => 'geticon.php?context=categories&icon=acl&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Trust mode'), _('Type of authorization for those hosts'),
             'trustMode', FALSE,
-            array('', 'fullaccess', 'byhost'),
+            ['', 'fullaccess', 'byhost'],
             '',
-            array(_('disabled'), _('full access'), _('allow access to these hosts'))
+            [_('disabled'), _('full access'), _('allow access to these hosts')]
           ),
           new SystemsAttribute(
             '', _('Only allow this user to connect to this list of hosts'),
             'host', FALSE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -230,17 +230,17 @@ class posixAccount extends simplePlugin
     $this->attributesAccess['trustMode']->setInLdap(FALSE);
     if (!class_available('systemManagement')) {
       $this->attributesAccess['trustMode']->setChoices(
-            array('', 'fullaccess'),
-            array(_('disabled'), _('full access'))
+            ['', 'fullaccess'],
+            [_('disabled'), _('full access')]
       );
     }
     $this->attributesAccess['trustMode']->setManagedAttributes(
-      array(
-        'multiplevalues' => array('notbyhost' => array('','fullaccess')),
-        'erase' => array(
-          'notbyhost' => array('host')
-        )
-      )
+      [
+        'multiplevalues' => ['notbyhost' => ['','fullaccess']],
+        'erase' => [
+          'notbyhost' => ['host']
+        ]
+      ]
     );
     if ((count($this->host) == 1) && ($this->host[0] == '*')) {
       $this->trustMode = 'fullaccess';
@@ -251,27 +251,27 @@ class posixAccount extends simplePlugin
     $this->attributesAccess['uidNumber']->setUnique(TRUE);
     $this->attributesAccess['force_ids']->setInLdap(FALSE);
     $this->attributesAccess['force_ids']->setManagedAttributes(
-      array(
-        'disable' => array (
-          FALSE => array (
+      [
+        'disable' => [
+          FALSE => [
             'uidNumber',
             'gidNumber',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesAccess['primaryGroup']->setInLdap(FALSE);
 
     $this->attributesAccess['mustchangepassword']->setInLdap(FALSE);
     $this->attributesAccess['shadowLastChange']->setVisible(FALSE);
     $this->attributesAccess['shadowMax']->setManagedAttributes(
-      array(
-        'disable' => array (
-          '' => array (
+      [
+        'disable' => [
+          '' => [
             'mustchangepassword',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
 
     if ($dn !== NULL) {
@@ -289,11 +289,11 @@ class posixAccount extends simplePlugin
     }
     $this->attributesAccess['loginShell']->setChoices($loginShellList);
 
-    $secondaryGroups = array();
+    $secondaryGroups = [];
     $secondaryGroups[''] = '- '._('automatic').' -';
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=posixGroup)', array('cn', 'gidNumber'));
+    $ldap->search('(objectClass=posixGroup)', ['cn', 'gidNumber']);
     while ($attrs = $ldap->fetch()) {
       $secondaryGroups[$attrs['gidNumber'][0]] = $attrs['cn'][0];
     }
@@ -313,8 +313,8 @@ class posixAccount extends simplePlugin
       } else {
         /* Groups handling */
         $ldap->cd($config->current['BASE']);
-        $ldap->search('(&(objectClass=posixGroup)(memberUid='.ldap_escape_f($this->getUid()).'))', array('cn', 'description'));
-        $groupMembership = array();
+        $ldap->search('(&(objectClass=posixGroup)(memberUid='.ldap_escape_f($this->getUid()).'))', ['cn', 'description']);
+        $groupMembership = [];
         while ($attrs = $ldap->fetch()) {
           $entry = $attrs['cn'][0];
           if (isset($attrs['description'][0])) {
@@ -366,13 +366,13 @@ class posixAccount extends simplePlugin
     }
   }
 
-  function is_this_account($attrs)
+  function is_this_account ($attrs)
   {
     /* shadowAccount is not required */
     return (isset($attrs['objectClass']) && in_array_ics('posixAccount', $attrs['objectClass']));
   }
 
-  function getUid()
+  function getUid ()
   {
     if (isset($this->parent)) {
       $baseobject = $this->parent->getBaseObject();
@@ -383,16 +383,16 @@ class posixAccount extends simplePlugin
     }
   }
 
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     global $config;
     parent::resetCopyInfos();
 
-    $this->savedGroupMembership = array();
+    $this->savedGroupMembership = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).')(cn='.ldap_escape_f($this->getUid()).'))', array('cn','gidNumber'));
+    $ldap->search('(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).')(cn='.ldap_escape_f($this->getUid()).'))', ['cn','gidNumber']);
 
     if ($ldap->count() > 0) {
       /* The copied user had its own group: switch back to automatic */
@@ -406,7 +406,7 @@ class posixAccount extends simplePlugin
     $this->gidNumber = '';
   }
 
-  function check()
+  function check ()
   {
     global $config;
 
@@ -436,7 +436,7 @@ class posixAccount extends simplePlugin
     return $message;
   }
 
-  protected function prepare_save()
+  protected function prepare_save ()
   {
     global $config;
 
@@ -482,9 +482,9 @@ class posixAccount extends simplePlugin
 
       /* Are we forced to use a special gidNumber? */
       if ($this->force_ids) {
-        $ldap->search('(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).'))',      array('cn','gidNumber'));
+        $ldap->search('(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).'))',      ['cn','gidNumber']);
       } else {
-        $ldap->search('(&(objectClass=posixGroup)(gidNumber=*)(cn='.ldap_escape_f($this->getUid()).'))', array('cn','gidNumber'));
+        $ldap->search('(&(objectClass=posixGroup)(gidNumber=*)(cn='.ldap_escape_f($this->getUid()).'))', ['cn','gidNumber']);
       }
 
       /* No primary group found, create a new one */
@@ -500,11 +500,11 @@ class posixAccount extends simplePlugin
         /* If forced gidNumber could not be found, then check if the given group name already exists.
          */
         $cnt = 0;
-        $ldap->search('(&(objectClass=posixGroup)(cn='.ldap_escape_f($groupcn).'))', array('cn'));
+        $ldap->search('(&(objectClass=posixGroup)(cn='.ldap_escape_f($groupcn).'))', ['cn']);
         while ($ldap->count() && ($cnt < 100)) {
           $cnt++;
           $groupcn = $this->getUid().'_'.$cnt;
-          $ldap->search('(&(objectClass=posixGroup)(cn='.ldap_escape_f($groupcn).'))', array('cn'));
+          $ldap->search('(&(objectClass=posixGroup)(cn='.ldap_escape_f($groupcn).'))', ['cn']);
         }
 
         /* Create new primary group and enforce the new gidNumber */
@@ -525,11 +525,11 @@ class posixAccount extends simplePlugin
         $baseObject->base         = $this->parent->getBaseObject()->base;
         if (class_available('mixedGroup')) {
           // fake attrs as this user may not exists yet
-          $attrs = array(
-            'objectClass' => array('inetOrgPerson','organizationalPerson','person','posixAccount','shadowAccount'),
+          $attrs = [
+            'objectClass' => ['inetOrgPerson','organizationalPerson','person','posixAccount','shadowAccount'],
             'cn' => $this->getUid(),
             'uid' => $this->getUid(),
-          );
+          ];
           $baseObject->attributesAccess['member']->addValue($this->dn, $attrs);
           $tabObject->gen_tabs();
           $posixTab = $tabObject->by_object['mixedGroup'];
@@ -583,7 +583,7 @@ class posixAccount extends simplePlugin
     }
 
     if ($this->trustMode == 'fullaccess') {
-      $this->attrs['host'] = array('*');
+      $this->attrs['host'] = ['*'];
     }
 
     /* Trust accounts */
@@ -610,7 +610,7 @@ class posixAccount extends simplePlugin
     return $errors;
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     if (parent::shouldSave()) {
       return TRUE;
@@ -621,19 +621,19 @@ class posixAccount extends simplePlugin
     return FALSE;
   }
 
-  function save()
+  function save ()
   {
     $errors = parent::save();
 
     foreach ($this->locks as $lock) {
       del_lock($lock);
     }
-    $this->locks = array();
+    $this->locks = [];
 
     return $errors;
   }
 
-  protected function ldap_save()
+  protected function ldap_save ()
   {
     $errors = parent::ldap_save();
 
@@ -683,7 +683,7 @@ class posixAccount extends simplePlugin
     return $errors;
   }
 
-  protected function ldap_remove()
+  protected function ldap_remove ()
   {
     /* Remove and write to LDAP */
     $errors = parent::ldap_remove();
@@ -698,7 +698,7 @@ class posixAccount extends simplePlugin
       } else {
         $type = 'group';
       }
-      $groups = objects::ls($type, array('cn' => 1, 'memberUid' => '*'), NULL, '(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).')(cn='.ldap_escape_f($this->getUid()).'))');
+      $groups = objects::ls($type, ['cn' => 1, 'memberUid' => '*'], NULL, '(&(objectClass=posixGroup)(gidNumber='.ldap_escape_f($this->gidNumber).')(cn='.ldap_escape_f($this->getUid()).'))');
       foreach ($groups as $dn => $group) {
         if (empty($group['memberUid']) || ((count($group['memberUid']) == 1) && ($group['memberUid'][0] == $this->getUid()))) {
           $tabobject = objects::open($dn, $type);
@@ -707,11 +707,11 @@ class posixAccount extends simplePlugin
       }
     }
 
-    return array();
+    return [];
   }
 
   /* Adapt from template, using 'dn' */
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     /* Include global link_info */
 
@@ -764,7 +764,7 @@ class posixAccount extends simplePlugin
    *
    * \return Return the next id or NULL if failed
    */
-  static function getNextId($attrib, $dn)
+  static function getNextId ($attrib, $dn)
   {
     global $config;
 
@@ -785,7 +785,7 @@ class posixAccount extends simplePlugin
   /*!
    * \brief Get next id and add a lock to prevent other user to use it before us
    */
-  static function getNextIdLock($attrib, $dn)
+  static function getNextIdLock ($attrib, $dn)
   {
     /* Calculate new id's. We need to place a lock before calling getNextId
        to get real unique values.
@@ -815,7 +815,7 @@ class posixAccount extends simplePlugin
    *
    * \return Return the next id or NULL if failed
    */
-  protected static function getNextIdPool($attrib)
+  protected static function getNextIdPool ($attrib)
   {
     global $config;
 
@@ -839,7 +839,7 @@ class posixAccount extends simplePlugin
 
       /* Look for ID map entry */
       $ldap->cd ($config->current['BASE']);
-      $ldap->search ("(&(objectClass=sambaUnixIdPool)($attrib=*))", array("$attrib"));
+      $ldap->search ("(&(objectClass=sambaUnixIdPool)($attrib=*))", ["$attrib"]);
 
       /* If it does not exist, create one with these defaults */
       if ($ldap->count() == 0) {
@@ -848,12 +848,12 @@ class posixAccount extends simplePlugin
         $minGroupId = $config->get_cfg_value('gidPoolMin',  10000);
 
         /* Add as default */
-        $attrs = array(
-          'objectClass' => array('organizationalUnit', 'sambaUnixIdPool'),
+        $attrs = [
+          'objectClass' => ['organizationalUnit', 'sambaUnixIdPool'],
           'ou'          => 'idmap',
           'uidNumber'   => $minUserId,
           'gidNumber'   => $minGroupId,
-        );
+        ];
         $ldap->cd('ou=idmap,'.$config->current['BASE']);
         $ldap->add($attrs);
         if (!$ldap->success()) {
@@ -886,7 +886,7 @@ class posixAccount extends simplePlugin
       }
 
       $ldap->cd($dn);
-      $ldap->modify(array($attrib => $newAttr));
+      $ldap->modify([$attrib => $newAttr]);
       if (!$ldap->success()) {
         msg_dialog::display(_('Error'), _('Cannot allocate a free ID:').' '.$ldap->get_error(), ERROR_DIALOG);
         return NULL;
@@ -912,11 +912,11 @@ class posixAccount extends simplePlugin
    *
    * \return Return the next id
    */
-  protected static function getNextIdTraditional($attrib)
+  protected static function getNextIdTraditional ($attrib)
   {
     global $config;
 
-    $ids = array();
+    $ids = [];
     $ldap = $config->get_ldap_link();
 
     $ldap->cd ($config->current['BASE']);
@@ -925,7 +925,7 @@ class posixAccount extends simplePlugin
     } else {
       $oc = 'posixAccount';
     }
-    $ldap->search ("(&(objectClass=$oc)($attrib=*))", array("$attrib"));
+    $ldap->search ("(&(objectClass=$oc)($attrib=*))", ["$attrib"]);
 
     /* Get list of ids */
     while ($attrs = $ldap->fetch()) {
@@ -936,7 +936,7 @@ class posixAccount extends simplePlugin
     $ids[] = 65534;
 
     /* get the ranges */
-    $tmp = array('0' => 1000);
+    $tmp = ['0' => 1000];
     if (preg_match('/posixAccount/', $oc) && $config->get_cfg_value('uidNumberBase') != '') {
       $tmp = explode('-', $config->get_cfg_value('uidNumberBase'));
     } elseif ($config->get_cfg_value('gidNumberBase') != '') {
@@ -971,7 +971,7 @@ class posixAccount extends simplePlugin
    *
    * \param string $dn The DN
    */
-  protected static function getNextIdHook($attrib, $dn)
+  protected static function getNextIdHook ($attrib, $dn)
   {
     global $config;
 
diff --git a/postfix/admin/systems/services/postfix/class_servicePostfix.inc b/postfix/admin/systems/services/postfix/class_servicePostfix.inc
index 734ccd95ee..ecdb0900de 100644
--- a/postfix/admin/systems/services/postfix/class_servicePostfix.inc
+++ b/postfix/admin/systems/services/postfix/class_servicePostfix.inc
@@ -48,17 +48,17 @@ class MailDomainAttribute extends StringAttribute
 
 class servicePostfix extends simpleService
 {
-  var $objectclasses = array('fdPostfixServer');
+  var $objectclasses = ['fdPostfixServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Postfix (SMTP)'),
       'plDescription' => _('Postfix (SMTP)').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=smtp&size=16',
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -66,10 +66,10 @@ class servicePostfix extends simpleService
   */
   static function getAttributesInfo ()
   {
-    return array (
-      'section1' => array (
+    return  [
+      'section1' => [
         'name'  => _('Information'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Hostname'), _('The host name.'),
             'postfixMyHostname', TRUE,
@@ -95,11 +95,11 @@ class servicePostfix extends simpleService
             'postfixMessageSizeLimit', FALSE,
             FALSE, FALSE, 0
           )
-        )
-      ),
-      'routing' => array (
+        ]
+      ],
+      'routing' => [
         'name' => _('Domains and routing'),
-        'attrs' => array (
+        'attrs' => [
           new SetAttribute (
             new StringAttribute (
               _('Domains to accept mail for'), _('Postfix networks'),
@@ -109,24 +109,24 @@ class servicePostfix extends simpleService
           new SubNodesAttribute (
             _('Transport table'), _('Transport table'),
             'fdPostfixTransportTable', 'fdPostfixTransportTable',
-            array(
+            [
               new StringAttribute ('', '', 'fdTransportTableMatch'),
               new CompositeAttribute (
                 _('Transport rule'),
                 'fdTransportTableRule',
-                array(
+                [
                   new StringAttribute ('', '', 'transport', TRUE, 'smtp'),
                   new StringAttribute ('', '', 'nexthop', FALSE),
-                ),
+                ],
                 '/^([^:]+):(.*)$/',
                 '%s:%s', '', ''
               )
-            )
+            ]
           ),
           new SubNodesAttribute (
             _('Catchall table'), _('Catchall table'),
             'fdPostfixCatchallTable', 'fdPostfixCatchallTable',
-            array(
+            [
               new MailDomainAttribute (
                 _('Domain'), _('Domain concerned by this catchall rule'),
                 'fdCatchallTableDomain', TRUE
@@ -135,12 +135,12 @@ class servicePostfix extends simpleService
                 _('Recipient'), _('Recipient mail address for this catchall rule'),
                 'fdCatchallTableRecipient', TRUE
               )
-            )
+            ]
           ),
           new SubNodesAttribute (
             _('Domain alias table'), _('Domain alias table'),
             'fdPostfixDomainAliasTable', 'fdPostfixDomainAliasTable',
-            array(
+            [
               new MailDomainAttribute (
                 _('From'), _('Domain concerned by this alias rule'),
                 'fdDomainAliasTableFrom', TRUE
@@ -149,22 +149,22 @@ class servicePostfix extends simpleService
                 _('To'), _('Recipient domain for this alias rule'),
                 'fdDomainAliasTableTo', TRUE
               )
-            )
+            ]
           )
-        )
-      ),
-      'section3' => array (
+        ]
+      ],
+      'section3' => [
         'name' => _('Restrictions'),
-        'attrs' => array (
+        'attrs' => [
           new OrderedArrayAttribute (
             new CompositeAttribute (
              _('Restrictions for sender'),
             'postfixSenderRestrictions',
-              array(
+              [
                 new StringAttribute ('', '', 'first2'),
-                new SelectAttribute ('', '', 'filter2', TRUE, array('FILTER'), 'FILTER'),
+                new SelectAttribute ('', '', 'filter2', TRUE, ['FILTER'], 'FILTER'),
                 new StringAttribute ('', '', 'second2'),
-              ),
+              ],
               '/^(.*) ([^:]+) (.*)$/',
               '%s %s %s',
               '', _('For sender')
@@ -174,22 +174,22 @@ class servicePostfix extends simpleService
             new CompositeAttribute (
              _('Restrictions for recipient'),
             'postfixRecipientRestrictions',
-              array(
+              [
                 new StringAttribute ('', '', 'first3'),
-                new SelectAttribute ('', '', 'filter3', TRUE, array('FILTER'), 'FILTER'),
+                new SelectAttribute ('', '', 'filter3', TRUE, ['FILTER'], 'FILTER'),
                 new StringAttribute ('', '', 'second3'),
-              ),
+              ],
               '/^(.*) ([^:]+) (.*)$/',
               '%s %s %s',
               '', _('For recipient')
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* We need ldap_save to always run */
     return TRUE;
diff --git a/ppolicy/addons/dashboard/class_dashBoardPPolicy.inc b/ppolicy/addons/dashboard/class_dashBoardPPolicy.inc
index 88da640520..f3afc2770d 100644
--- a/ppolicy/addons/dashboard/class_dashBoardPPolicy.inc
+++ b/ppolicy/addons/dashboard/class_dashBoardPPolicy.inc
@@ -21,51 +21,51 @@
 
 class dashboardPpolicy extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Ppolicy'),
       'plDescription' => _('Statistics about ppolicy expired users'),
-      'plObjectType'  => array('dashboard'),
+      'plObjectType'  => ['dashboard'],
       'plPriority'    => 12,
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  static function getAttributesInfo()
+  static function getAttributesInfo ()
   {
-    return array(
-      'expired_accounts' => array(
+    return [
+      'expired_accounts' => [
         'name'  => _('Expired accounts'),
-        'attrs' => array(new FakeAttribute('expired')),
+        'attrs' => [new FakeAttribute('expired')],
         'template' => get_template_path('users_accounts.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'locked_accounts' => array(
+      ],
+      'locked_accounts' => [
         'name'  => _('Locked accounts'),
-        'attrs' => array(new FakeAttribute('locked')),
+        'attrs' => [new FakeAttribute('locked')],
         'template' => get_template_path('ppolicy_locked_accounts.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
     parent::__construct($dn, $object, $parent, $mainTab);
 
-    $this->expiredAccountsColumns = array(
-      'user' => array(
+    $this->expiredAccountsColumns = [
+      'user' => [
         'uid'             => _('Login'),
         'cn'              => _('Name'),
         'telephoneNumber' => _('Phone number'),
         'expirationDate'  => _('Expiration date'),
-      ),
-      'manager' => array(
+      ],
+      'manager' => [
         'manager_cn'      => _('Name'),
         'manager_mail'    => _('Email'),
         'manager_phone'   => _('Phone number'),
-      )
-    );
+      ]
+    ];
 
     $this->compute_accounts_info();
   }
@@ -79,7 +79,7 @@ class dashboardPpolicy extends simplePlugin
     $ppolicydn = $config->get_cfg_value('ppolicyDefaultCn', '');
     if (!empty($ppolicydn)) {
       $ppolicydn = 'cn='.$ppolicydn.','.get_ou('ppolicyRDN').$config->current['BASE'];
-      $ldap->cat($ppolicydn, array('pwdMaxAge'));
+      $ldap->cat($ppolicydn, ['pwdMaxAge']);
       $policy = $ldap->fetch();
       if (!$policy) {
         msg_dialog::display(
@@ -100,7 +100,7 @@ class dashboardPpolicy extends simplePlugin
     $now = new DateTime('now', timezone::utc());
 
     /* search all expired accounts */
-    $users = objects::ls('user', array(
+    $users = objects::ls('user', [
         'dn'                    => 'raw',
         'uid'                   => 'raw',
         'cn'                    => 'raw',
@@ -110,12 +110,12 @@ class dashboardPpolicy extends simplePlugin
         'pwdChangedTime'        => 1,
         'pwdPolicySubentry'     => 1,
         'pwdAccountLockedTime'  => 1,
-      ), NULL, '(|(pwdAccountLockedTime=*)(pwdChangedTime=*))', TRUE);
-    $locked_users           = array();
-    $expired_accounts       = array();
-    $next_expired_accounts  = array();
+      ], NULL, '(|(pwdAccountLockedTime=*)(pwdChangedTime=*))', TRUE);
+    $locked_users           = [];
+    $expired_accounts       = [];
+    $next_expired_accounts  = [];
     // ppolicies cache
-    $maxAges = array();
+    $maxAges = [];
     foreach ($users as $user) {
       if (isset($user['pwdAccountLockedTime'])) {
         $locked_user  = dashboardUsers::get_user_infos($user);
@@ -132,7 +132,7 @@ class dashboardPpolicy extends simplePlugin
         if (isset($maxAges[$user['pwdPolicySubentry']])) {
           $maxAge = $maxAges[$user['pwdPolicySubentry']];
         } else {
-          $ldap->cat($user['pwdPolicySubentry'], array('pwdMaxAge'));
+          $ldap->cat($user['pwdPolicySubentry'], ['pwdMaxAge']);
           $policy = $ldap->fetch();
           if (!$policy) {
             msg_dialog::display(
@@ -169,18 +169,18 @@ class dashboardPpolicy extends simplePlugin
       }
     }
 
-    uasort($expired_accounts, array('dashboardUsers','compareUsers'));
-    uasort($next_expired_accounts, array('dashboardUsers','compareUsers'));
+    uasort($expired_accounts, ['dashboardUsers','compareUsers']);
+    uasort($next_expired_accounts, ['dashboardUsers','compareUsers']);
 
-    $this->expired = array(
+    $this->expired = [
       'columns'             => $this->expiredAccountsColumns,
       'accounts'            => $expired_accounts,
       'accounts_next_days'  => $next_expired_accounts,
       'next_days'           => $next_expired_days,
-    );
-    $this->locked = array(
+    ];
+    $this->locked = [
       'accounts'  => $locked_users,
-    );
+    ];
   }
 }
 ?>
diff --git a/ppolicy/admin/ppolicy/class_ppolicy.inc b/ppolicy/admin/ppolicy/class_ppolicy.inc
index 8db1ba6fc4..cbba53f4c6 100644
--- a/ppolicy/admin/ppolicy/class_ppolicy.inc
+++ b/ppolicy/admin/ppolicy/class_ppolicy.inc
@@ -23,33 +23,33 @@ class ppolicy extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('device', 'pwdPolicy', 'pwdPolicyChecker');
+  var $objectclasses = ['device', 'pwdPolicy', 'pwdPolicyChecker'];
 
   /* Return plugin information for acl handling  */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Password policy'),
       'plDescription' => _('Password policy for ppolicy overlay'),
-      'plObjectType'  => array('ppolicy' => array(
+      'plObjectType'  => ['ppolicy' => [
         'name'        => _('Password policy'),
         'filter'      => 'objectClass=pwdPolicy',
         'ou'          => get_ou('ppolicyRDN'),
         'icon'        => 'geticon.php?context=applications&icon=ppolicy&size=16'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('Policy'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('ppolicyRDN')),
           new HiddenAttribute('pwdAttribute', TRUE, 'userPassword'),
           new HostNameAttribute (
@@ -103,19 +103,19 @@ class ppolicy extends simplePlugin
           new SelectAttribute(
             _('Check quality'), _('Decides what to do if the function in "Check module" is not available'),
             'pwdCheckQuality', TRUE,
-            array(0, 1, 2), 0,
-            array(_('Disabled'), _('Ignore errors'), _('Reject on errors'))
+            [0, 1, 2], 0,
+            [_('Disabled'), _('Ignore errors'), _('Reject on errors')]
           ),
           new StringAttribute (
             _('Check module'), _('Name of a user supplied password quality check module that will be called to perform password quality checks and is only relevant if pwdCheckQuality is either 1 or 2'),
             'pwdCheckModule', FALSE
           ),
-        )
-      ),
-      'lockout' => array(
+        ]
+      ],
+      'lockout' => [
         'name'  => _('Lock out'),
         'attrs' =>
-        array(
+        [
           new BooleanAttribute(
             _('Activate lock out'), _('Whether to lock an account that had more consecutive failed bind attempts with invalid passwords than is defined by "Maximum failures"'),
             'pwdLockout', FALSE,
@@ -141,9 +141,9 @@ class ppolicy extends simplePlugin
             'pwdMustChange', FALSE,
             FALSE // default
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -152,41 +152,41 @@ class ppolicy extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab);
 
     $this->attributesAccess['pwdMaxAge']->attributes[0]->setManagedAttributes(
-      array (
-        'disable' => array (
-          0 => array (
+       [
+        'disable' => [
+          0 => [
             'pwdExpireWarning', 'pwdGraceAuthNLimit'
-          )
-        )
-      )
+          ]
+        ]
+       ]
     );
     $this->attributesAccess['pwdLockout']->setManagedAttributes(
-      array (
-        'disable' => array (
-          FALSE => array (
+       [
+        'disable' => [
+          FALSE => [
             'pwdLockoutDuration',       'pwdMaxFailure',
             'pwdFailureCountInterval',  'pwdMustChange'
-          )
-        )
-      )
+          ]
+        ]
+       ]
     );
     $this->attributesAccess['pwdAllowUserChange']->setManagedAttributes(
-      array (
-        'disable' => array (
-          FALSE => array (
+       [
+        'disable' => [
+          FALSE => [
             'pwdSafeModify',
-          )
-        )
-      )
+          ]
+        ]
+       ]
     );
     $this->attributesAccess['pwdCheckQuality']->setManagedAttributes(
-      array (
-        'disable' => array (
-          0 => array (
+       [
+        'disable' => [
+          0 => [
             'pwdCheckModule'
-          )
-        )
-      )
+          ]
+        ]
+       ]
     );
 
     if (objects::count('ppolicy') == 0) {
diff --git a/ppolicy/admin/ppolicy/class_ppolicyManagement.inc b/ppolicy/admin/ppolicy/class_ppolicyManagement.inc
index f8cd56bcb4..dd1fd5b405 100644
--- a/ppolicy/admin/ppolicy/class_ppolicyManagement.inc
+++ b/ppolicy/admin/ppolicy/class_ppolicyManagement.inc
@@ -21,20 +21,20 @@
 
 class ppolicyManagement extends simpleManagement
 {
-  protected $objectTypes  = array('ppolicy');
+  protected $objectTypes  = ['ppolicy'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Password policies'),
       'plDescription' => _('Password policies management'),
       'plIcon'        => 'geticon.php?context=applications&icon=ppolicy&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 57,
-      'plManages'     => array('ppolicy'),
+      'plManages'     => ['ppolicy'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/ppolicy/config/ppolicy/class_ppolicyConfig.inc b/ppolicy/config/ppolicy/class_ppolicyConfig.inc
index c389f9e451..d21e0bd0cd 100644
--- a/ppolicy/config/ppolicy/class_ppolicyConfig.inc
+++ b/ppolicy/config/ppolicy/class_ppolicyConfig.inc
@@ -21,27 +21,27 @@
 
 class ppolicyConfig extends simplePlugin
 {
-  var $objectclasses  = array("fdPpolicyPluginConf");
+  var $objectclasses  = ["fdPpolicyPluginConf"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"     => _("Ppolicy plugin configuration"),
       "plDescription"   => _("FusionDirectory ppolicy plugin configuration"),
       "plSelfModify"    => FALSE,
-      "plCategory"      => array("configuration"),
-      "plObjectType"    => array("smallConfig"),
+      "plCategory"      => ["configuration"],
+      "plObjectType"    => ["smallConfig"],
 
       "plProvidedAcls"  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Ppolicy plugin'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Ppolicy RDN'), _('Branch in which ppolicies will be stored'),
             'fdPpolicyRDN', TRUE,
@@ -52,9 +52,9 @@ class ppolicyConfig extends simplePlugin
             'fdPpolicyDefaultCn', FALSE,
             'default'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/ppolicy/personal/ppolicy/class_ppolicyAccount.inc b/ppolicy/personal/ppolicy/class_ppolicyAccount.inc
index 74cdbda4d3..82bf6e4e52 100644
--- a/ppolicy/personal/ppolicy/class_ppolicyAccount.inc
+++ b/ppolicy/personal/ppolicy/class_ppolicyAccount.inc
@@ -21,28 +21,28 @@
 
 class ppolicyAccount extends simplePlugin
 {
-  var $objectclasses = array();
+  var $objectclasses = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Password policy'),
       'plDescription'   => _('Edit user\'s password policy'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user', 'simpleSecurityObject'),
+      'plObjectType'    => ['user', 'simpleSecurityObject'],
       'plIcon'          => 'geticon.php?context=applications&icon=ppolicy&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=ppolicy&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Password policy'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Policy'), _('Use a specific policy for this user'),
             'pwdPolicySubentry', FALSE
@@ -58,12 +58,12 @@ class ppolicyAccount extends simplePlugin
           new SelectAttribute(
             _('Reset locking / force change'), _('Resets the lock status of this account and/or force a password change'),
             'pwdReset', FALSE,
-            array('', 'TRUE', 'FALSE'), '',
-            array('', _('Force password change (resets locking)'), _('Reset locking (same password)'))
+            ['', 'TRUE', 'FALSE'], '',
+            ['', _('Force password change (resets locking)'), _('Reset locking (same password)')]
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -97,7 +97,7 @@ class ppolicyAccount extends simplePlugin
     }
   }
 
-  protected function loadAttributes()
+  protected function loadAttributes ()
   {
     global $config;
     if ($this->dn != 'new') {
@@ -113,14 +113,14 @@ class ppolicyAccount extends simplePlugin
   {
     $errors = parent::prepare_save();
     if (!empty($this->pwdReset)) {
-      $this->attrs['pwdAccountLockedTime'] = array();
+      $this->attrs['pwdAccountLockedTime'] = [];
     } else {
       unset($this->attrs['pwdAccountLockedTime']);
     }
     return $errors;
   }
 
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
     /* ppolicy fields are not real fields, they can’t be removed through ldap_modify
      * It’s not possible to remove ppolicy info from a user node anyway */
diff --git a/puppet/admin/systems/puppet/class_puppetNode.inc b/puppet/admin/systems/puppet/class_puppetNode.inc
index 4297bf8b54..7884ed29f5 100644
--- a/puppet/admin/systems/puppet/class_puppetNode.inc
+++ b/puppet/admin/systems/puppet/class_puppetNode.inc
@@ -22,15 +22,15 @@
 class puppetNode extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array("puppetClient");
+  var $objectclasses  = ["puppetClient"];
 
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'section1' => array(
+      'section1' => [
         'name'  => _("Puppet node settings"),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute (
             new StringAttribute (_("Puppet class"), _("Puppet Node Class"), "puppetClass")
           ),
@@ -40,10 +40,10 @@ class puppetNode extends simplePlugin
             new CompositeAttribute (
               _("A variable setting for puppet"),
               'puppetVar',
-              array(
+              [
                 new StringAttribute ('',   _('Name of the variable'),   'puppetVar'),
                 new StringAttribute ('=',  _('Value of the variable'),  'puppetVarValue'),
-              ),
+              ],
                // sscanf format
               '%[^ =]=%[^ ]',
               // sprintf format
@@ -53,23 +53,23 @@ class puppetNode extends simplePlugin
               'Puppet Vars'
             )
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   // We also need this function that return some information about the plugin
   static function plInfo ()
   {
-    return array(
+    return [
       "plShortName"       => _("Puppet"),
       "plDescription"     => _("Support for puppet schema in order to edit puppet classes and puppet vars"),
       "plSelfModify"      => FALSE,
-      "plObjectType"      => array("server", "workstation"),
+      "plObjectType"      => ["server", "workstation"],
 
       // But simplePlugin can generate the ACL list for us
       "plProvidedAcls"    => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -79,14 +79,14 @@ class puppetNode extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=puppetClient)', array('cn'));
-    $nodes = array();
+    $ldap->search('(objectClass=puppetClient)', ['cn']);
+    $nodes = [];
     while ($attrs = $ldap->fetch()) {
       $nodes[] = $attrs['cn'][0];
     }
     $this->attributesAccess['parentNode']->setChoices($nodes);
-    $ldap->search('(objectClass=puppetServer)', array('puppetAvailableEnvironment'));
-    $envs = array();
+    $ldap->search('(objectClass=puppetServer)', ['puppetAvailableEnvironment']);
+    $envs = [];
     if ($attrs = $ldap->fetch()) {
       $envs = $attrs['puppetAvailableEnvironment'];
       unset($envs['count']);
@@ -94,14 +94,14 @@ class puppetNode extends simplePlugin
     $this->attributesAccess['environment']->setChoices($envs);
   }
 
-  public function getDisplayHeaderInfos()
+  public function getDisplayHeaderInfos ()
   {
     list($disabled,$buttonText,$text) = parent::getDisplayHeaderInfos();
     if (!$this->is_account && !$disabled && empty($this->attributesAccess['environment']->getChoices())) {
       $disabled = TRUE;
       $text     = _('You need to add the puppet service to a server to be able to use this tab');
     }
-    return array($disabled,$buttonText,$text);
+    return [$disabled,$buttonText,$text];
   }
 }
 
diff --git a/puppet/admin/systems/services/puppet/class_servicePuppet.inc b/puppet/admin/systems/services/puppet/class_servicePuppet.inc
index e3a6107bb7..10569a3225 100644
--- a/puppet/admin/systems/services/puppet/class_servicePuppet.inc
+++ b/puppet/admin/systems/services/puppet/class_servicePuppet.inc
@@ -19,28 +19,28 @@
 */
 
 class servicePuppet extends simpleService {
-  var $objectclasses = array('puppetServer');
+  var $objectclasses = ['puppetServer'];
 
   // We also need this function that return some information about the plugin
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'       => _('Puppet server'),
       'plDescription'     => _('This service allows you to use a puppet server'),
       'plIcon'            => 'geticon.php?context=applications&icon=puppet&size=16',
 
       'plProvidedAcls'    => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('Puppet server'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute (
             new StringAttribute (
               _('Environments'),
@@ -48,11 +48,11 @@ class servicePuppet extends simpleService {
               'puppetAvailableEnvironment',
               TRUE
             ),
-            array('production')
+            ['production']
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/pureftpd/personal/pureftpd/class_pureftpdAccount.inc b/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
index 60b024d4b6..68d3ddfb00 100644
--- a/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
+++ b/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
@@ -23,31 +23,31 @@ class pureftpdAccount extends simplePlugin
 {
   /* Definitions */
   var $displayHeader  = TRUE;
-  var $objectclasses  = array("PureFTPdUser");
+  var $objectclasses  = ["PureFTPdUser"];
 
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Ftp'),
       'plDescription'   => _('Pure ftp account').'&nbsp;('._('Connectivity addon').')',
       'plIcon'          => 'geticon.php?context=applications&icon=pureftpd&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=pureftpd&size=16',
       'plSelfModify'    => TRUE,
       'plPriority'      => 10,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
+    return [
     // Attributes are grouped by section
-      'section1' => array (
+      'section1' => [
         'name'  => _('Bandwidth'),
-        'attrs' => array (
+        'attrs' => [
           new IntAttribute (
             _('Upload bandwidth')._(' (kb/sec)'),
             _('Upload bandwidth'),
@@ -66,11 +66,11 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           )
-        )
-      ),
-      'section2' => array (
+        ]
+      ],
+      'section2' => [
         'name'  => _('Ratio'),
-        'attrs' => array(
+        'attrs' => [
           new IntAttribute (
             _('Uploaded files'),
             _('Uploaded files'),
@@ -89,11 +89,11 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           )
-        )
-      ),
-      'section3' => array (
+        ]
+      ],
+      'section3' => [
         'name' => ('Quota'),
-        'attrs' => array (
+        'attrs' => [
           new IntAttribute (
             _('Files'),
             _('Quota files'),
@@ -112,19 +112,19 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           )
-        )
-      ),
-      'section4' => array (
+        ]
+      ],
+      'section4' => [
         'name' => _('Miscellaneous'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Enable FTP access'), _('Enable or disable FTP access'),
             'FTPStatus', FALSE,
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 
diff --git a/quota/admin/systems/services/quota/class_serviceQuota.inc b/quota/admin/systems/services/quota/class_serviceQuota.inc
index a4a3fb31c1..96aaeb414a 100644
--- a/quota/admin/systems/services/quota/class_serviceQuota.inc
+++ b/quota/admin/systems/services/quota/class_serviceQuota.inc
@@ -21,31 +21,31 @@
 
 class serviceQuota extends simpleService
 {
-  var $objectclasses = array('quotaService');
+  var $objectclasses = ['quotaService'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Quota service'),
       'plDescription' => _('Quota service').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=quota&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'template'  => get_template_path('service_quota_parameters.tpl', TRUE, dirname(__FILE__)),
         'name'      => _('Shares'),
-        'attrs'     => array(
+        'attrs'     => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('Quotas for the shares this server hosts'),
               'quotaDeviceParameters',
-              array(
+              [
                 new SelectAttribute(
                   _('Device'), _('Device concerned by this quota'),
                   'quotaDevice', TRUE
@@ -63,20 +63,20 @@ class serviceQuota extends simpleService
                   _('Comment'), _('Short comment about this quota'),
                   'quotaDesc', FALSE
                 ),
-              ),
+              ],
               ':'
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit button
             TRUE
           )
-        )
-      ),
-      'message' => array(
+        ]
+      ],
+      'message' => [
         'name'      => _('Quota warning message'),
-        'attrs'     => array(
+        'attrs'     => [
           new SelectAttribute(
             _('Charset'), _('Charset use for the message'),
             'quotaMsgCharsetSupport', TRUE
@@ -109,11 +109,11 @@ class serviceQuota extends simpleService
             _('Signature'), _('Signature to put at the end of the mail'),
             'quotaMsgSignatureSupport', FALSE
           ),
-        )
-      ),
-      'ldap' => array(
+        ]
+      ],
+      'ldap' => [
         'name'      => _('LDAP message support'),
-        'attrs'     => array(
+        'attrs'     => [
           new SelectAttribute(
             _('LDAP server'), _('The LDAP server to bind to'),
             'quotaLdapServer', TRUE
@@ -126,9 +126,9 @@ class serviceQuota extends simpleService
             _('Bind user password'), _('The password of the user used for bind'),
             'quotaLdapServerUserPassword', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -149,8 +149,8 @@ class serviceQuota extends simpleService
     );
 
     /* get all encodings types available */
-    $charsets = array();
-    $configEncodings = $config->get_cfg_value('encodings', array());
+    $charsets = [];
+    $configEncodings = $config->get_cfg_value('encodings', []);
     foreach ($configEncodings as $str) {
       $arr = explode("=", $str);
       if (count($arr) == 2) {
@@ -165,10 +165,10 @@ class serviceQuota extends simpleService
 
   }
 
-  function getShares()
+  function getShares ()
   {
     /* loading of each array of any share delared on this server  */
-    $shareInfos = array();
+    $shareInfos = [];
     if (isset($this->attrs['goExportEntry'])) {
       for ($i = 0; $i < $this->attrs['goExportEntry']['count']; $i++) {
         $parts = explode("|", $this->attrs['goExportEntry'][$i]);
@@ -180,7 +180,7 @@ class serviceQuota extends simpleService
     return $shareInfos;
   }
 
-  function getLdapServers()
+  function getLdapServers ()
   {
     /* Get List of server with LDAP service */
     return objects::ls('server', NULL, NULL, '(objectClass=goLdapServer)');
diff --git a/quota/personal/quota/class_quotaAccount.inc b/quota/personal/quota/class_quotaAccount.inc
index e137886042..43bdac07e0 100644
--- a/quota/personal/quota/class_quotaAccount.inc
+++ b/quota/personal/quota/class_quotaAccount.inc
@@ -25,7 +25,7 @@
 
 class QuotaEntryAttribute extends CharSeparatedCompositeAttribute
 {
-  function readValues($value)
+  function readValues ($value)
   {
     $values = parent::readValues($value);
     $blocksize = $this->plugin->getBlockSize($values[5], $values[0]);
@@ -36,7 +36,7 @@ class QuotaEntryAttribute extends CharSeparatedCompositeAttribute
     return $values;
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     if (!empty($values[5])) {
       $blocksize = $this->plugin->getBlockSize($values[5], $values[0]);
@@ -48,13 +48,13 @@ class QuotaEntryAttribute extends CharSeparatedCompositeAttribute
     return parent::writeValues($values);
   }
 
-  function updateDeviceList()
+  function updateDeviceList ()
   {
     $quotaDeviceList = $this->plugin->getDeviceList($this->attributes[5]->getValue());
     $this->attributes[0]->setChoices(array_keys($quotaDeviceList), array_values($quotaDeviceList));
   }
 
-  function applyPostValue()
+  function applyPostValue ()
   {
     parent::applyPostValue();
     $this->updateDeviceList();
@@ -91,40 +91,40 @@ class QuotaEntryAttribute extends CharSeparatedCompositeAttribute
 
 class quotaAccount extends simplePlugin
 {
-  var $objectclasses = array('systemQuotas');
+  var $objectclasses = ['systemQuotas'];
 
   var $displayHeader = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Quota'),
       'plDescription' => _('Plugin for quota support'),
       'plIcon'        => 'geticon.php?context=applications&icon=quota&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=quota&size=16',
       'plSelfModify'  => TRUE,
       'plPriority'    => 8,
-      'plObjectType'  => array('user'),
-      'plDepends'     => array('posixAccount'),
+      'plObjectType'  => ['user'],
+      'plDepends'     => ['posixAccount'],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'template'  => get_template_path('quota_section.tpl', TRUE, dirname(__FILE__)),
-        'class'     => array('fullwidth'),
+        'class'     => ['fullwidth'],
         'name'      => _('Quota information'),
         'icon'      => 'geticon.php?context=applications&icon=quota&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new OrderedArrayAttribute(
             new QuotaEntryAttribute(
               _('Quota information for this user'),
               'quota',
-              array(
+              [
                 new SelectAttribute(
                   _('Device'), _('Device this quota is for'),
                   'quotaDevice', TRUE
@@ -169,18 +169,18 @@ class quotaAccount extends simplePlugin
                   _('Server'), _('Server hosting the device this quota is for'),
                   'quotaServer', TRUE
                 ),
-              ),
+              ],
               ':'
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit button
             TRUE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -189,9 +189,9 @@ class quotaAccount extends simplePlugin
     /* Get List of server with Quota service */
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=quotaService)', array('cn','description','quotaDeviceParameters'));
-    $this->quotaDeviceParameters = array();
-    $quotaServersList = array();
+    $ldap->search('(objectClass=quotaService)', ['cn','description','quotaDeviceParameters']);
+    $this->quotaDeviceParameters = [];
+    $quotaServersList = [];
     while ($attrs = $ldap->fetch()) {
       $this->quotaDeviceParameters[$attrs['cn'][0]] = $attrs['quotaDeviceParameters'];
       unset($this->quotaDeviceParameters[$attrs['cn'][0]]['count']);
@@ -213,9 +213,9 @@ class quotaAccount extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab, $attributesInfo);
   }
 
-  function getDeviceList($server)
+  function getDeviceList ($server)
   {
-    $quotaDeviceList = array();
+    $quotaDeviceList = [];
     if (isset($this->quotaDeviceParameters[$server])) {
       foreach ($this->quotaDeviceParameters[$server] as $infos) {
         $quotas = explode(":", $infos);
@@ -228,7 +228,7 @@ class quotaAccount extends simplePlugin
     return $quotaDeviceList;
   }
 
-  function getBlockSize($server, $device)
+  function getBlockSize ($server, $device)
   {
     foreach ($this->quotaDeviceParameters[$server] as $infos) {
       $quotas = explode(":", $infos);
diff --git a/renater-partage/admin/groups/renater-partage/class_partageGroup.inc b/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
index e4a663fda3..60c149a64b 100644
--- a/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
+++ b/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
@@ -21,26 +21,26 @@
 class partageGroup extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array('fdRenaterPartageGroup');
+  var $objectclasses  = ['fdRenaterPartageGroup'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'    => _('Partage'),
       'plDescription'  => _('Partage group options'),
       'plSmallIcon'    => 'geticon.php?context=applications&icon=renater-partage&size=16',
-      'plDepends'      => array('mailGroup'),
-      'plObjectType'   => array('group', 'ogroup-user'),
+      'plDepends'      => ['mailGroup'],
+      'plObjectType'   => ['group', 'ogroup-user'],
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Information'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Display name'), _('Name to display for this group'),
             'displayName'
@@ -53,8 +53,8 @@ class partageGroup extends simplePlugin
           new SelectAttribute (
             _('Type'), _('Type of PARTAGE group'),
             'fdRenaterPartageGroupMailStatus', TRUE,
-            array('enabled','disabled'), 'enabled',
-            array(_('Distribution list'), _('Group'))
+            ['enabled','disabled'], 'enabled',
+            [_('Distribution list'), _('Group')]
           ),
           new BooleanAttribute (
             _('Alert new members'), _('Send a message to alert new members, they have joined this group'),
@@ -65,8 +65,8 @@ class partageGroup extends simplePlugin
             _('Notes'), _('Notes about this group'),
             'fdRenaterPartageGroupNotes', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
diff --git a/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc b/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
index a14cd5ac86..ada9105f17 100644
--- a/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
+++ b/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
@@ -21,28 +21,28 @@
 class sympaAliasPartage extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array('fdRenaterPartageSympaAlias');
+  var $objectclasses  = ['fdRenaterPartageSympaAlias'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'    => _('Partage'),
       'plDescription'  => _('Partage sympa options'),
-      'plObjectType'   => array('sympaAlias'),
+      'plObjectType'   => ['sympaAlias'],
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Information'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Server'), _('Email server'),
             'gosaMailServer', TRUE,
-            array('')
+            ['']
           ),
           new StringAttribute (
             _('Display name'), _('Name to display for this group'),
@@ -71,9 +71,9 @@ class sympaAliasPartage extends simplePlugin
               'gosaMailAlternateAddress'
             )
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -87,7 +87,7 @@ class sympaAliasPartage extends simplePlugin
   }
 
   /* We need $mailAccount->cn to return the cn for mailMethod */
-  public function __get($name)
+  public function __get ($name)
   {
     if (($name == 'cn') && isset($this->parent)) {
       return $this->parent->getBaseObject()->$name;
@@ -103,7 +103,7 @@ class sympaAliasPartage extends simplePlugin
     }
   }
 
-  public function __isset($name)
+  public function __isset ($name)
   {
     if (($name == 'cn') && isset($this->parent)) {
       return isset($this->parent->getBaseObject()->$name);
@@ -115,7 +115,7 @@ class sympaAliasPartage extends simplePlugin
     }
   }
 
-  private function getEmailDomain()
+  private function getEmailDomain ()
   {
     $servers  = mailMethod::getMailServers();
     $infos    = $servers[$this->gosaMailServer];
@@ -126,7 +126,7 @@ class sympaAliasPartage extends simplePlugin
     }
   }
 
-  public function mailServerChanged()
+  public function mailServerChanged ()
   {
     /* Intialize the used mailMethod */
     if ($this->gosaMailServer == '') {
@@ -149,13 +149,13 @@ class sympaAliasPartage extends simplePlugin
     return $messages;
   }
 
-  protected function shouldSave()
+  protected function shouldSave ()
   {
     /* mail method might have something to save */
     return TRUE;
   }
 
-  public function ldap_save()
+  public function ldap_save ()
   {
     if (!empty($this->attrs)) {
       $errors = parent::ldap_save();
@@ -164,7 +164,7 @@ class sympaAliasPartage extends simplePlugin
       }
     }
 
-    $errors = array();
+    $errors = [];
 
     /* Only do IMAP actions if we are not a template */
     if (!$this->is_template) {
@@ -189,7 +189,7 @@ class sympaAliasPartage extends simplePlugin
     return $errors;
   }
 
-  function post_remove()
+  function post_remove ()
   {
     /* Let the mailMethod remove this mailbox */
     if (!$this->is_template) {
diff --git a/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc b/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
index 149e639629..1b8940a7a6 100644
--- a/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
+++ b/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
@@ -20,26 +20,26 @@
 
 class serviceRenaterPartage extends simpleMailMethodService
 {
-  var $objectclasses = array('fdRenaterPartageServer');
+  var $objectclasses = ['fdRenaterPartageServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Renater Partage'),
       'plDescription'   => _('Renater Partage'),
       'plIcon'          => 'geticon.php?context=applications&icon=renater-partage&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array (
-      'main' => array (
+    return  [
+      'main' => [
         'name'  => _('Settings'),
-        'class' => array('fullwidth'),
-        'attrs' => array (
+        'class' => ['fullwidth'],
+        'attrs' => [
           new URLAttribute(
             _('URI'), _('URI to contact the Renater Partage API'),
             'fdRenaterPartageServerUri', TRUE
@@ -52,21 +52,21 @@ class serviceRenaterPartage extends simpleMailMethodService
           new SelectAttribute(
             _('Mailbox deletion'), _('What to do with the PARTAGE account when mail tab is deactivated or user is deleted'),
             'fdRenaterPartageServerDeletionType', TRUE,
-            array(  'delete',   'disable'), '',
-            array(_('Delete'),_('Disable'))
+            [  'delete',   'disable'], '',
+            [_('Delete'),_('Disable')]
           ),
-        )
-      ),
-      'domains' => array(
+        ]
+      ],
+      'domains' => [
         'template'  => get_template_path('renater_domains.tpl', TRUE, dirname(__FILE__)),
         'name'      => _('Domains'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new OrderedArrayAttribute(
             new CharSeparatedCompositeAttribute(
               _('Domains handled by this Renater Partage server'),
               'fdRenaterPartageServerMailDomain',
-              array(
+              [
                 new StringAttribute (
                   _('Domain'), _('Domain handled by this server'),
                   'renaterPartageDomain', TRUE
@@ -82,16 +82,16 @@ class serviceRenaterPartage extends simpleMailMethodService
                   '/^[^,|]+\|[^,|]+(,[^,|]+\|[^,|]+)*$/',
                   'cos1|cos1id,cos2|cos2id'
                 )
-              ),
+              ],
               ':',
               '',
               _('Domains')
             ),
-            FALSE, array(), TRUE
+            FALSE, [], TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
diff --git a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
index 4a29051bac..d588f85736 100644
--- a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
+++ b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
@@ -30,8 +30,8 @@ class mailMethodRenaterPartage extends mailMethod
   protected $user_id  = '%MAIL%';
   protected $share_id = '%MAIL%';
 
-  private $http_options = array();
-  private $ssl_options = array();
+  private $http_options = [];
+  private $ssl_options = [];
   private $token;
   private $tokenTime;
   private $cachedAccount;
@@ -39,7 +39,7 @@ class mailMethodRenaterPartage extends mailMethod
   /*! \brief  Connect to renater PARTAGE API and store the auth token
       @return Boolean True if connection was successful
    */
-  public function connect()
+  public function connect ()
   {
     parent::connect();
     $servers = static::getMailServers();
@@ -50,11 +50,11 @@ class mailMethodRenaterPartage extends mailMethod
     $ts = time();
     $preauth = hash_hmac('sha1', $infos['domain'].'|'.$ts, $infos['key']);
 
-    $request = array(
+    $request = [
       'domain'    => $infos['domain'],
       'timestamp' => $ts,
       'preauth'   => $preauth
-    );
+    ];
 
     $response = $this->query('Auth', $request);
 
@@ -71,7 +71,7 @@ class mailMethodRenaterPartage extends mailMethod
     }
   }
 
-  private function query($command, $post)
+  private function query ($command, $post)
   {
     $servers = static::getMailServers();
     $infos = $servers[$this->parent->gosaMailServer];
@@ -83,23 +83,23 @@ class mailMethodRenaterPartage extends mailMethod
     }
 
     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $command, '<b>MAIL: Command</b>');
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities($post, ENT_COMPAT, 'UTF-8'),
+    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities ($post, ENT_COMPAT, 'UTF-8'),
       '<b>MAIL: Query</b>');
 
     // performs the HTTP(S) POST
-    $opts = array (
+    $opts = [
       'http' => array_merge(
-        array (
+         [
           'method'      => 'POST',
           'user_agent'  => $infos['user_agent'],
           'header'      => 'Content-type: application/x-www-form-urlencoded'."\r\n"
                           .'Content-Length: '.strlen($post)."\r\n",
           'content'     => $post
-        ),
-        $this->http_options
+         ],
+         $this->http_options
       ),
       'ssl' => $this->ssl_options
-    );
+    ];
 
     if ($command != 'Auth') {
       $command .= '/'.$this->token;
@@ -151,7 +151,7 @@ class mailMethodRenaterPartage extends mailMethod
 
   /*! \brief  Disconnect from the API (deletes the auth token)
    */
-  public function disconnect()
+  public function disconnect ()
   {
     parent::disconnect();
     unset($this->token);
@@ -160,7 +160,7 @@ class mailMethodRenaterPartage extends mailMethod
 
   /*! \brief Checks data consistency
   */
-  public function check()
+  public function check ()
   {
     $messages = parent::check();
     $servers  = static::getMailServers();
@@ -179,7 +179,7 @@ class mailMethodRenaterPartage extends mailMethod
   /*! \brief  Returns the connection status of this method.
       @return Boolean True if this method is connected else false.
    */
-  public function is_connected()
+  public function is_connected ()
   {
     /* If the token is older than 5 minutes it will get rejected. 5min = 300sec */
     return (parent::is_connected() && (time() - $this->tokenTime < 250));
@@ -188,13 +188,13 @@ class mailMethodRenaterPartage extends mailMethod
   /*! \brief  Returns true the current object represents a valid account
       @return Boolean TRUE if this is a valid account else FALSE
   */
-  public function account_exists()
+  public function account_exists ()
   {
     $this->reset_error();
     return $this->cacheAccount();
   }
 
-  private function cacheAccount()
+  private function cacheAccount ()
   {
     if (empty($this->account_id)) {
       return FALSE;
@@ -208,13 +208,13 @@ class mailMethodRenaterPartage extends mailMethod
       $command    = 'GetGroup';
       $answerkey  = 'group';
     }
-    $answer = $this->query($command, array('name' => $this->account_id));
+    $answer = $this->query($command, ['name' => $this->account_id]);
     if (($answer !== FALSE) && isset($answer['Response'][$answerkey])) {
-      $this->cachedAccount = array(
+      $this->cachedAccount = [
         'account' => $answer['Response'][$answerkey],
         'id'      => $this->account_id,
         'time'    => time()
-      );
+      ];
       $this->cleanCachedAccountArrays();
       return TRUE;
     } else {
@@ -230,9 +230,9 @@ class mailMethodRenaterPartage extends mailMethod
    * We want:
    * [members] => Array ( user1, user2 )
    * */
-  private function cleanCachedAccountArrays()
+  private function cleanCachedAccountArrays ()
   {
-    $keys = array('members', 'zimbraMailAlias', 'zimbraAllowFromAddress');
+    $keys = ['members', 'zimbraMailAlias', 'zimbraAllowFromAddress'];
     foreach ($keys as $key) {
       if (isset($this->cachedAccount['account'][$key])) {
         $this->cachedAccount['account'][$key] = array_values($this->cachedAccount['account'][$key]);
@@ -243,11 +243,11 @@ class mailMethodRenaterPartage extends mailMethod
     }
   }
 
-  private function getAccountArray($infos)
+  private function getAccountArray ($infos)
   {
-    $account = array(
+    $account = [
       'name'                                => $this->account_id,
-    );
+    ];
     if ($this->type == 'user') {
       $account['zimbraCOSId']                         = $infos['cos_id'];
       $account['zimbraMailQuota']                     = $this->parent->gosaMailQuota * 1024 * 1024;
@@ -263,18 +263,18 @@ class mailMethodRenaterPartage extends mailMethod
     }
 
     if ($this->type == 'user') {
-      $mainFields = array(
+      $mainFields = [
         'sn', 'givenName', 'description',
         'l', 'st',
         'telephoneNumber', 'mobile', 'pager', 'facsimileTelephoneNumber',
         'displayName', 'homePhone',
         'title', 'ou',
         'street', 'postalCode', 'postOfficeBox'
-      );
+      ];
     } else {
-      $mainFields = array(
+      $mainFields = [
         'description'
-      );
+      ];
     }
     $mainTab = $this->parent->parent->getBaseObject();
     foreach ($mainFields as $field) {
@@ -284,10 +284,10 @@ class mailMethodRenaterPartage extends mailMethod
     }
 
     if ($this->type == 'user') {
-      $userMatchingFields = array(
+      $userMatchingFields = [
         'o' => 'company',
         'roomNumber' => 'physicalDeliveryOfficeName'
-      );
+      ];
       foreach ($userMatchingFields as $fdField => $partageField) {
         if (isset($mainTab->$fdField)) {
           $account[$partageField] = $mainTab->$fdField;
@@ -316,11 +316,11 @@ class mailMethodRenaterPartage extends mailMethod
         $partageTabName = 'sympaAliasPartage';
       }
       if (isset($this->parent->parent->by_object[$partageTabName]) && $this->parent->parent->by_object[$partageTabName]->is_account) {
-        $partageFields = array(
+        $partageFields = [
           'displayName' => 'displayName',
           'fdRenaterPartageGroupMailStatus' => 'zimbraMailStatus',
           'fdRenaterPartageGroupNotes' => 'zimbraNotes'
-        );
+        ];
         $partageTab = $this->parent->parent->by_object[$partageTabName];
         foreach ($partageFields as $fdField => $partageField) {
           if (isset($partageTab->$fdField)) {
@@ -335,7 +335,7 @@ class mailMethodRenaterPartage extends mailMethod
     return $account;
   }
 
-  private function createAccount($infos)
+  private function createAccount ($infos)
   {
     $account = $this->getAccountArray($infos);
 
@@ -364,7 +364,7 @@ class mailMethodRenaterPartage extends mailMethod
     return $this->query($command, $account);
   }
 
-  private function updateAccount($infos)
+  private function updateAccount ($infos)
   {
     /* Step 1 - We fill $account */
     $account = $this->getAccountArray($infos);
@@ -379,7 +379,7 @@ class mailMethodRenaterPartage extends mailMethod
       }
     }
     /* If value of zimbraAccountStatus is not something we understand, do not touch it (example: closed) */
-    if (isset($this->cachedAccount['account']['zimbraAccountStatus']) && !in_array($this->cachedAccount['account']['zimbraAccountStatus'], array('active', 'locked'))) {
+    if (isset($this->cachedAccount['account']['zimbraAccountStatus']) && !in_array($this->cachedAccount['account']['zimbraAccountStatus'], ['active', 'locked'])) {
       unset($account['zimbraAccountStatus']);
     }
 
@@ -402,10 +402,10 @@ class mailMethodRenaterPartage extends mailMethod
     if ($this->type == 'user') {
       $userTab = $this->parent->parent->getBaseObject();
       if ($userTab->attributesAccess['userPassword']->getClear() != '') {
-        $account = array(
+        $account = [
           'name'      => $this->account_id,
           'password'  => $userTab->attributesAccess['userPassword']->getClear()
-        );
+        ];
         $answer = $this->query('SetPassword', $account);
 
         if ($answer === FALSE) {
@@ -417,7 +417,7 @@ class mailMethodRenaterPartage extends mailMethod
     return TRUE;
   }
 
-  private function setAliases($initialAliases, $aliases)
+  private function setAliases ($initialAliases, $aliases)
   {
     $remove = array_diff($initialAliases, $aliases);
     $add    = array_diff($aliases, $initialAliases);
@@ -427,7 +427,7 @@ class mailMethodRenaterPartage extends mailMethod
       $command = 'RemoveDistributionListAlias';
     }
     foreach ($remove as $alias) {
-      $answer = $this->query($command, array('name' => $this->account_id, 'alias' => $alias));
+      $answer = $this->query($command, ['name' => $this->account_id, 'alias' => $alias]);
       if ($answer === FALSE) {
         return FALSE;
       }
@@ -438,7 +438,7 @@ class mailMethodRenaterPartage extends mailMethod
       $command = 'AddDistributionListAlias';
     }
     foreach ($add as $alias) {
-      $answer = $this->query($command, array('name' => $this->account_id, 'alias' => $alias));
+      $answer = $this->query($command, ['name' => $this->account_id, 'alias' => $alias]);
       if ($answer === FALSE) {
         return FALSE;
       }
@@ -446,21 +446,21 @@ class mailMethodRenaterPartage extends mailMethod
     return TRUE;
   }
 
-  private function updateMembers()
+  private function updateMembers ()
   {
     global $config;
 
-    if (!in_array($this->type, array('group','sympaAlias'))) {
+    if (!in_array($this->type, ['group','sympaAlias'])) {
       return TRUE;
     }
 
     $this->cacheAccount();
-    $oldmembers = array();
+    $oldmembers = [];
     if (isset($this->cachedAccount['account']['members'])) {
       $oldmembers = $this->cachedAccount['account']['members'];
     }
     $mainTab = $this->parent->parent->getBaseObject();
-    $newmembers = array();
+    $newmembers = [];
     if ($this->type == 'sympaAlias') {
       $newmember = '';
       /* We take the shortest mail to filter out -editor and other addresses */
@@ -469,7 +469,7 @@ class mailMethodRenaterPartage extends mailMethod
           $newmember = $mail;
         }
       }
-      $newmembers = array($newmember);
+      $newmembers = [$newmember];
     } elseif (isset($mainTab->member)) {
       $ldap = $config->get_ldap_link();
       $dns = $mainTab->member;
@@ -503,13 +503,13 @@ class mailMethodRenaterPartage extends mailMethod
     $remove = array_diff($oldmembers, $newmembers);
     $add    = array_diff($newmembers, $oldmembers);
     if (!empty($remove)) {
-      $answer = $this->query('RemoveGroupMembers', array('name' => $this->account_id, 'members' => $remove));
+      $answer = $this->query('RemoveGroupMembers', ['name' => $this->account_id, 'members' => $remove]);
       if ($answer === FALSE) {
         return FALSE;
       }
     }
     if (!empty($add)) {
-      $answer = $this->query('AddGroupMembers', array('name' => $this->account_id, 'members' => $add));
+      $answer = $this->query('AddGroupMembers', ['name' => $this->account_id, 'members' => $add]);
       if ($answer === FALSE) {
         return FALSE;
       }
@@ -518,7 +518,7 @@ class mailMethodRenaterPartage extends mailMethod
     return TRUE;
   }
 
-  public function updateMailbox()
+  public function updateMailbox ()
   {
     parent::updateMailbox();
     $servers = static::getMailServers();
@@ -545,10 +545,10 @@ class mailMethodRenaterPartage extends mailMethod
           return FALSE;
         }
 
-        $account = array(
+        $account = [
           'name'    => $this->initial_account_id,
           'newname' => $this->account_id
-        );
+        ];
         if ($this->type == 'user') {
           $command = 'RenameAccount';
         } else {
@@ -592,7 +592,7 @@ class mailMethodRenaterPartage extends mailMethod
     return TRUE;
   }
 
-  public function deleteMailbox()
+  public function deleteMailbox ()
   {
     parent::deleteMailbox();
     $servers = static::getMailServers();
@@ -601,15 +601,15 @@ class mailMethodRenaterPartage extends mailMethod
     if ($this->account_exists()) {
       if ($this->type == 'user') {
         if ($infos['delete_type'] == 'delete') {
-          $answer = $this->query('DeleteAccount', array('name' => $this->initial_account_id));
+          $answer = $this->query('DeleteAccount', ['name' => $this->initial_account_id]);
         } elseif ($infos['delete_type'] == 'disable') {
-          $answer = $this->query('ModifyAccount', array('name' => $this->initial_account_id, 'zimbraAccountStatus' => 'closed'));
+          $answer = $this->query('ModifyAccount', ['name' => $this->initial_account_id, 'zimbraAccountStatus' => 'closed']);
         } else {
           $answer = FALSE;
           $this->error = _('Invalid value in fdRenaterPartageServerDeletionType');
         }
       } else {
-        $answer = $this->query('DeleteGroup', array('name' => $this->initial_account_id));
+        $answer = $this->query('DeleteGroup', ['name' => $this->initial_account_id]);
       }
       return ($answer !== FALSE);
     }
@@ -619,7 +619,7 @@ class mailMethodRenaterPartage extends mailMethod
   /*! \brief  Returns the used quota in MiB
       @return Integer Quota used.
    */
-  public function getQuotaUsage()
+  public function getQuotaUsage ()
   {
     if ($this->cacheAccount()) {
       /* Partage sends quota in bytes */
@@ -631,7 +631,7 @@ class mailMethodRenaterPartage extends mailMethod
   /*! \brief  Returns the quota restrictions in MiB.
       @return Integer Quota restrictions.
    */
-  public function getQuota($quotaValue)
+  public function getQuota ($quotaValue)
   {
     if ($this->cacheAccount()) {
       /* Partage sends quota in bytes */
@@ -640,7 +640,7 @@ class mailMethodRenaterPartage extends mailMethod
     return $quotaValue;
   }
 
-  public function additionalInformations()
+  public function additionalInformations ()
   {
     if ($this->cacheAccount()) {
       $lastlogin = _('Never');
@@ -649,23 +649,23 @@ class mailMethodRenaterPartage extends mailMethod
         $date->setTimezone(timezone::getDefaultTimeZone());
         $lastlogin = $date->format('Y-m-d H:i:s');
       }
-      return array(
+      return [
         _('Last login')     => $lastlogin,
         _('Account status') => (isset($this->cachedAccount['account']['zimbraAccountStatus']) ? $this->cachedAccount['account']['zimbraAccountStatus'] : _('Unknown')),
-      );
+      ];
     }
-    return array();
+    return [];
   }
 
-  static public function get_server_list()
+  static public function get_server_list ()
   {
     global $config;
-    $serverList = array();
+    $serverList = [];
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ldap->search ('(&(objectClass=fdRenaterPartageServer)(fdRenaterPartageServerMailDomain=*))',
-                  array('cn', 'fdRenaterPartageServerUri', 'fdRenaterPartageServerMailDomain', 'fdRenaterPartageServerUserAgent', 'fdRenaterPartageServerDeletionType'));
+                  ['cn', 'fdRenaterPartageServerUri', 'fdRenaterPartageServerMailDomain', 'fdRenaterPartageServerUserAgent', 'fdRenaterPartageServerDeletionType']);
     while ($attrs = $ldap->fetch()) {
       unset($attrs['fdRenaterPartageServerMailDomain']['count']);
       foreach ($attrs['fdRenaterPartageServerMailDomain'] as $domainAndKey) {
@@ -674,7 +674,7 @@ class mailMethodRenaterPartage extends mailMethod
         foreach ($cosArray as $cos) {
           list ($cosName, $cosId) = explode('|', $cos);
           $deleteMode = (isset($attrs['fdRenaterPartageServerDeletionType'][0]) ? $attrs['fdRenaterPartageServerDeletionType'][0] : 'delete');
-          $serverList[$attrs['cn'][0].' - '.$domain.' - '.$cosName] = array(
+          $serverList[$attrs['cn'][0].' - '.$domain.' - '.$cosName] = [
             'server_dn'   => $attrs['dn'],
             'user_agent'  => $attrs['fdRenaterPartageServerUserAgent'][0],
             'uri'         => $attrs['fdRenaterPartageServerUri'][0],
@@ -683,7 +683,7 @@ class mailMethodRenaterPartage extends mailMethod
             'key'         => $key,
             'cos_name'    => $cosName,
             'cos_id'      => $cosId
-          );
+          ];
         }
       }
     }
diff --git a/repository/admin/repository/class_buildRepository.inc b/repository/admin/repository/class_buildRepository.inc
index 75cf3e11d0..f712ad1c8c 100644
--- a/repository/admin/repository/class_buildRepository.inc
+++ b/repository/admin/repository/class_buildRepository.inc
@@ -22,42 +22,42 @@ class buildRepository extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdBuildRepository');
+  var $objectclasses = ['fdBuildRepository'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Build repository'),
       'plDescription' => _('Build repository'),
-      'plObjectType'  => array('buildRepository' => array(
+      'plObjectType'  => ['buildRepository' => [
         'name'        => _('Build repository'),
         'filter'      => 'objectClass=fdBuildRepository',
         'aclCategory' => 'repository',
         'ou'          => get_ou('repositoryRDN'),
         'icon'        => 'geticon.php?context=applications&icon=repository&size=16'
-      )),
-      'plForeignKeys'  => array(
+      ]],
+      'plForeignKeys'  => [
         'fdRepoAdmin'     => 'user',
         'fdRepoUploader'  => 'user',
         'fdRepoUser'      => 'user',
-        'fdRepoDistributionSection'   => array(
-          array('repositoryDistribution', 'cn', '(fdRepoDistributionSection=%oldvalue%|*)'),
-          array('repositorySection',      'cn', '(fdRepoDistributionSection=*|%oldvalue%)'),
-        ),
-      ),
+        'fdRepoDistributionSection'   => [
+          ['repositoryDistribution', 'cn', '(fdRepoDistributionSection=%oldvalue%|*)'],
+          ['repositorySection',      'cn', '(fdRepoDistributionSection=*|%oldvalue%)'],
+        ],
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     global $config;
 
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Build repository'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('repositoryRDN')),
           new HostNameAttribute (
             _('Name'), _('Unique name for this repository'),
@@ -71,7 +71,7 @@ class buildRepository extends simplePlugin
             new SelectAttribute (
               _('Distribution sections'), _('The distribution sections this repository provides'),
               'fdRepoDistributionSection', TRUE,
-              array()
+              []
             )
           ),
           new BooleanAttribute (
@@ -81,13 +81,13 @@ class buildRepository extends simplePlugin
           new SelectAttribute (
             _('Type'), _('Repository type'),
             'fdRepoType', TRUE,
-            $config->get_cfg_value('repositoryTypes', array('debian'))
+            $config->get_cfg_value('repositoryTypes', ['debian'])
           )
-        )
-      ),
-      'users' => array(
+        ]
+      ],
+      'users' => [
         'name'  => _('Members'),
-        'attrs' => array(
+        'attrs' => [
           new UsersAttribute (
             _('Admins'), _('Admins of this repository'),
             'fdRepoAdmin', FALSE
@@ -100,9 +100,9 @@ class buildRepository extends simplePlugin
             _('Users'), _('Users of this repository'),
             'fdRepoUser', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -111,8 +111,8 @@ class buildRepository extends simplePlugin
 
     $this->attributesAccess['cn']->setUnique(TRUE);
 
-    $distros = objects::ls('repoDistribution', array('cn' => '1', 'fdRepoSection' => '*'));
-    $choices = array();
+    $distros = objects::ls('repoDistribution', ['cn' => '1', 'fdRepoSection' => '*']);
+    $choices = [];
     foreach ($distros as $infos) {
       foreach ($infos['fdRepoSection'] as $section) {
         $choices[] = $infos['cn'].'|'.$section;
@@ -138,7 +138,7 @@ class buildRepository extends simplePlugin
     }
   }
 
-  function foreignKeyUpdate($field, $oldvalue, $newvalue, $source)
+  function foreignKeyUpdate ($field, $oldvalue, $newvalue, $source)
   {
     if ($field == 'fdRepoDistributionSection') {
       $values = $this->fdRepoDistributionSection;
diff --git a/repository/admin/repository/class_repositoryDistribution.inc b/repository/admin/repository/class_repositoryDistribution.inc
index 7a1485810b..acbd2cc052 100644
--- a/repository/admin/repository/class_repositoryDistribution.inc
+++ b/repository/admin/repository/class_repositoryDistribution.inc
@@ -22,39 +22,39 @@ class repositoryDistribution extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdBuildRepositoryDistribution');
+  var $objectclasses = ['fdBuildRepositoryDistribution'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Repository distribution'),
       'plDescription' => _('Repository distribution'),
-      'plObjectType'  => array('repoDistribution' => array(
+      'plObjectType'  => ['repoDistribution' => [
         'name'        => _('Repository distribution'),
         'filter'      => 'objectClass=fdBuildRepositoryDistribution',
         'aclCategory' => 'repository',
         'ou'          => get_ou('repositoryRDN'),
         'icon'        => 'geticon.php?context=applications&icon=repository-distribution&size=16'
-      )),
-      'plForeignKeys'  => array(
-        'fdBasedOn' => array(
-          array('repositoryDistribution', 'cn'),
-        ),
-        'fdRepoSection' => array(
-          array('repositorySection', 'cn'),
-        ),
-      ),
+      ]],
+      'plForeignKeys'  => [
+        'fdBasedOn' => [
+          ['repositoryDistribution', 'cn'],
+        ],
+        'fdRepoSection' => [
+          ['repositorySection', 'cn'],
+        ],
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Repository distribution'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('repositoryRDN')),
           new StringAttribute (
             _('Name'), _('Unique name for this distribution'),
@@ -68,19 +68,19 @@ class repositoryDistribution extends simplePlugin
             new SelectAttribute (
               _('Section'), _('The sections this distribution contains'),
               'fdRepoSection', TRUE,
-              array()
+              []
             )
           ),
           new SetAttribute (
             new SelectAttribute (
               _('Based on'), _('The distributions this one is based on'),
               'fdBasedOn', FALSE,
-              array()
+              []
             )
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
diff --git a/repository/admin/repository/class_repositoryManagement.inc b/repository/admin/repository/class_repositoryManagement.inc
index b6508a0f96..29a559c4d8 100644
--- a/repository/admin/repository/class_repositoryManagement.inc
+++ b/repository/admin/repository/class_repositoryManagement.inc
@@ -20,24 +20,24 @@
 
 class repositoryManagement extends simpleManagement
 {
-  protected $objectTypes  = array('buildRepository', 'repoDistribution', 'repoSection');
+  protected $objectTypes  = ['buildRepository', 'repoDistribution', 'repoSection'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Repository management'),
       'plDescription' => _('Repository management'),
       'plIcon'        => 'geticon.php?context=applications&icon=repository&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 22,
-      'plCategory'    => array('repository' => array(
+      'plCategory'    => ['repository' => [
         'description'  => _('Repository'),
-        'objectClass'  => array('fdBuildRepository', 'fdBuildRepositoryDistribution', 'fdBuildRepositorySection')
-      )),
-      'plManages'     => array('buildRepository', 'repoDistribution', 'repoSection'),
+        'objectClass'  => ['fdBuildRepository', 'fdBuildRepositoryDistribution', 'fdBuildRepositorySection']
+      ]],
+      'plManages'     => ['buildRepository', 'repoDistribution', 'repoSection'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/repository/admin/repository/class_repositorySection.inc b/repository/admin/repository/class_repositorySection.inc
index 9030e2a094..0d24213ac0 100644
--- a/repository/admin/repository/class_repositorySection.inc
+++ b/repository/admin/repository/class_repositorySection.inc
@@ -22,36 +22,36 @@ class repositorySection extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdBuildRepositorySection');
+  var $objectclasses = ['fdBuildRepositorySection'];
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Repository section'),
       'plDescription' => _('Repository section'),
-      'plObjectType'  => array('repoSection' => array(
+      'plObjectType'  => ['repoSection' => [
         'name'        => _('Repository section'),
         'filter'      => 'objectClass=fdBuildRepositorySection',
         'aclCategory' => 'repository',
         'ou'          => get_ou('repositoryRDN'),
         'icon'        => 'geticon.php?context=applications&icon=repository-section&size=16',
-      )),
-      'plForeignKeys'  => array(
-        'fdBasedOn' => array(
-          array('repositorySection',  'cn'),
-        )
-      ),
+      ]],
+      'plForeignKeys'  => [
+        'fdBasedOn' => [
+          ['repositorySection',  'cn'],
+        ]
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Repository section'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('repositoryRDN')),
           new StringAttribute (
             _('Name'), _('Unique name for this section'),
@@ -65,12 +65,12 @@ class repositorySection extends simplePlugin
             new SelectAttribute (
               _('Based on'), _('The sections this one is based on'),
               'fdBasedOn', FALSE,
-              array()
+              []
             )
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
diff --git a/repository/config/repository/class_repositoryConfig.inc b/repository/config/repository/class_repositoryConfig.inc
index d3b921f08d..798994bc21 100644
--- a/repository/config/repository/class_repositoryConfig.inc
+++ b/repository/config/repository/class_repositoryConfig.inc
@@ -20,27 +20,27 @@
 
 class repositoryConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdRepositoryPluginConf');
+  var $objectclasses  = ['fdRepositoryPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Repository configuration'),
       'plDescription'   => _('FusionDirectory repository plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Repository'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Repository RDN'), _('Branch in which repository objects will be stored'),
             'fdRepositoryRDN', TRUE,
@@ -51,11 +51,11 @@ class repositoryConfig extends simplePlugin
               _('Repository types'), _('Available repository types'),
               'fdRepositoryTypes', TRUE
             ),
-            array('debian')
+            ['debian']
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/samba/admin/groups/samba/class_sambaGroup.inc b/samba/admin/groups/samba/class_sambaGroup.inc
index b6265c2cbf..947769f74f 100644
--- a/samba/admin/groups/samba/class_sambaGroup.inc
+++ b/samba/admin/groups/samba/class_sambaGroup.inc
@@ -21,27 +21,27 @@
 class sambaGroup extends simplePlugin
 {
   var $displayHeader  = TRUE;
-  var $objectclasses  = array("sambaGroupMapping");
+  var $objectclasses  = ["sambaGroupMapping"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Samba'),
       'plDescription' => _('Samba group settings'),
       'plIcon'        => 'geticon.php?context=applications&icon=samba&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=samba&size=16',
-      'plObjectType'  => array('group'),
+      'plObjectType'  => ['group'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Domain'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Domain'), _('Samba domain'),
             'sambaDomainName', TRUE
@@ -49,18 +49,18 @@ class sambaGroup extends simplePlugin
           new CompositeAttribute(
             _('Samba information'),
             'sambaSID',
-            array(
+            [
               new HiddenAttribute(
                 'SID'
               ),
               new SelectAttribute(
                 _('Group type'), _('Samba group type'),
                 'GID', TRUE,
-                array(0,                512,                513,                514),
+                [0,                512,                513,                514],
                 0,
-                array(_("Samba group"), _("Domain admins"), _("Domain users"),  _("Domain guests"))
+                [_("Samba group"), _("Domain admins"), _("Domain users"),  _("Domain guests")]
               )
-            ),
+            ],
             '/^([^ ]+)-([0-9]+)$/',
             '%s-%d'
           ),
@@ -68,9 +68,9 @@ class sambaGroup extends simplePlugin
             'sambaGroupType', TRUE,
             2
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -117,14 +117,14 @@ class sambaGroup extends simplePlugin
     /* Don't lose special groups! If not key'ed above, add it to the combo box */
     if (!in_array($this->getGID(), $this->attributesAccess['sambaSID']->attributes[1]->getChoices())) {
       $this->attributesAccess['sambaSID']->attributes[1]->setChoices(
-        array(0,                512,                513,                514,                $this->getGID()),
-        array(_("Samba group"), _("Domain admins"), _("Domain users"),  _("Domain guests"), sprintf(_("Special group (%d)"), $this->getGID()))
+        [0,                512,                513,                514,                $this->getGID()],
+        [_("Samba group"), _("Domain admins"), _("Domain users"),  _("Domain guests"), sprintf(_("Special group (%d)"), $this->getGID())]
       );
     }
     $this->attributesAccess['sambaSID']->attributes[1]->setInitialValue($this->getGID());
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     global $config;
     $errors = parent::prepare_save();
@@ -157,7 +157,7 @@ class sambaGroup extends simplePlugin
   }
 
   /*! \brief Get a new SambaSID for a group */
-  function getSambaSID()
+  function getSambaSID ()
   {
     global $config;
     $ldap       = $config->get_ldap_link();
@@ -169,14 +169,14 @@ class sambaGroup extends simplePlugin
     do {
       $sid = $this->getSID()."-".($gidNumber * 2 + $this->getRidBase() + 1);
       $ldap->cd($config->current['BASE']);
-      $ldap->search("(sambaSID=$sid)", array("sambaSID"));
+      $ldap->search("(sambaSID=$sid)", ["sambaSID"]);
       $gidNumber++;
     } while ($ldap->count() != 0);
 
     return $sid;
   }
 
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     parent::resetCopyInfos();
 
@@ -185,28 +185,28 @@ class sambaGroup extends simplePlugin
     $this->attributesAccess['sambaDomainName']->setInitialValue('');
   }
 
-  function getRidBase()
+  function getRidBase ()
   {
     global $config;
     return $config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['RIDBASE'];
   }
 
-  function getSID()
+  function getSID ()
   {
     return $this->attributesAccess['sambaSID']->attributes[0]->getValue();
   }
 
-  function setSID($value)
+  function setSID ($value)
   {
     $this->attributesAccess['sambaSID']->attributes[0]->setValue($value);
   }
 
-  function getGID()
+  function getGID ()
   {
     return $this->attributesAccess['sambaSID']->attributes[1]->getValue();
   }
 
-  function setGID($value)
+  function setGID ($value)
   {
     $this->attributesAccess['sambaSID']->attributes[1]->setValue($value);
   }
diff --git a/samba/admin/samba/class_sambaDomain.inc b/samba/admin/samba/class_sambaDomain.inc
index 93c5f383d9..c232b4446c 100644
--- a/samba/admin/samba/class_sambaDomain.inc
+++ b/samba/admin/samba/class_sambaDomain.inc
@@ -22,34 +22,34 @@ class sambaDomain extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('sambaDomain');
+  var $objectclasses = ['sambaDomain'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Samba Domain'),
       'plDescription' => _('Samba Domain'),
-      'plObjectType'  => array(
-        'sambaDomain' => array(
+      'plObjectType'  => [
+        'sambaDomain' => [
           'name'        => _('Samba Domain'),
           'description' => _('Samba domain settings'),
           'filter'      => '(objectClass=sambaDomain)',
           'icon'        => 'geticon.php?context=applications&icon=samba&size=16',
           'ou'          => '',
           'mainAttr'    => 'sambaDomainName',
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Domain name'), _('Name of this domain'),
             'sambaDomainName', TRUE
@@ -129,9 +129,9 @@ class sambaDomain extends simplePlugin
             _('Allow Machine Password changes (default: 0 => off)'),
             'sambaRefuseMachinePwdChange'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function compute_dn ()
diff --git a/samba/admin/samba/class_sambaDomainManagement.inc b/samba/admin/samba/class_sambaDomainManagement.inc
index 6614f4f11a..ed1db6f29f 100644
--- a/samba/admin/samba/class_sambaDomainManagement.inc
+++ b/samba/admin/samba/class_sambaDomainManagement.inc
@@ -21,25 +21,25 @@
 class sambaDomainManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('sambaDomain');
+  protected $objectTypes  = ['sambaDomain'];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = FALSE;
   protected $skipCpHandler          = TRUE;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Samba domains'),
       'plDescription' => _('Samba domain management'),
       'plIcon'        => 'geticon.php?context=applications&icon=samba&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 40,
-      'plManages'     => array('sambaDomain'),
+      'plManages'     => ['sambaDomain'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
diff --git a/samba/admin/systems/samba/class_argonautEventSambaShares.inc b/samba/admin/systems/samba/class_argonautEventSambaShares.inc
index 9f0911e083..b9a6739860 100644
--- a/samba/admin/systems/samba/class_argonautEventSambaShares.inc
+++ b/samba/admin/systems/samba/class_argonautEventSambaShares.inc
@@ -20,13 +20,13 @@
 
 class argonautEventTypesSambaShares
 {
-  static public function get_event_types_list()
+  static public function get_event_types_list ()
   {
-    return array(
-      'SambaShares.start' => array(
+    return [
+      'SambaShares.start' => [
         'name'  => _('Update Samba Shares'),
         'img'   => 'geticon.php?context=applications&icon=samba&size=16'
-      ),
-    );
+      ],
+    ];
   }
 }
diff --git a/samba/admin/systems/samba/class_sambaSystemTab.inc b/samba/admin/systems/samba/class_sambaSystemTab.inc
index e15a53233b..564b2c0ed9 100644
--- a/samba/admin/systems/samba/class_sambaSystemTab.inc
+++ b/samba/admin/systems/samba/class_sambaSystemTab.inc
@@ -21,28 +21,28 @@
 
 class sambaSystemTab extends simplePlugin
 {
-  var $objectclasses = array('posixAccount','sambaSamAccount');
+  var $objectclasses = ['posixAccount','sambaSamAccount'];
   var $displayHeader = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Samba'),
       'plDescription' => _('Windows workstation information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('workstation'),
+      'plObjectType'  => ['workstation'],
       'plPriority'    => 6,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ($word = NULL, $rdn = NULL)
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('uid'),
           new HiddenAttribute ('sambaSID'),
           new HiddenAttribute ('homeDirectory', TRUE, '/dev/null'),
@@ -53,9 +53,9 @@ class sambaSystemTab extends simplePlugin
             _('Domain'), _('Samba domain name'),
             'sambaDomainName', TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -72,7 +72,7 @@ class sambaSystemTab extends simplePlugin
       $this->SID = preg_replace ('/-[^-]+$/', '', $this->sambaSID);
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search('(&(objectClass=sambaDomain)(sambaSID='.$this->SID.'))', array('sambaAlgorithmicRidBase','sambaDomainName'));
+      $ldap->search('(&(objectClass=sambaDomain)(sambaSID='.$this->SID.'))', ['sambaAlgorithmicRidBase','sambaDomainName']);
       if ($ldap->count() != 0) {
         $attrs = $ldap->fetch();
         if (isset($attrs['sambaAlgorithmicRidBase'])) {
@@ -96,18 +96,18 @@ class sambaSystemTab extends simplePlugin
     }
   }
 
-  protected function update_uid()
+  protected function update_uid ()
   {
     $this->attributesAccess['uid']->setValue($this->parent->getBaseObject()->cn.'$');
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->update_uid();
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     global $config;
     $this->update_uid();
@@ -129,7 +129,7 @@ class sambaSystemTab extends simplePlugin
         $sid = $this->SID.'-'.($uidNumber * 2 + $this->ridBase);
         $ldap = $config->get_ldap_link();
         $ldap->cd($config->current['BASE']);
-        $ldap->search('(sambaSID='.$sid.')', array('sambaSID'));
+        $ldap->search('(sambaSID='.$sid.')', ['sambaSID']);
         $uidNumber++;
       } while ($ldap->count() != 0);
       $uidNumber--;
diff --git a/samba/config/samba/class_sambaPluginConfig.inc b/samba/config/samba/class_sambaPluginConfig.inc
index ddb57bfdab..26da067c57 100644
--- a/samba/config/samba/class_sambaPluginConfig.inc
+++ b/samba/config/samba/class_sambaPluginConfig.inc
@@ -20,26 +20,26 @@
 
 class sambaPluginConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSambaPluginConf');
+  var $objectclasses  = ['fdSambaPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Samba'),
       'plDescription'   => _('Samba plugin configuration'),
       'plPriority'      => 2,
-      'plObjectType'    => array('configuration'),
+      'plObjectType'    => ['configuration'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'samba' => array(
+    return [
+      'samba' => [
         'name'  => _('Samba settings'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Samba ID mapping'),
             _('Maintain sambaIdmapEntry objects. Depending on your setup this can drastically improve the windows login performance.'),
@@ -60,8 +60,8 @@ class sambaPluginConfig extends simplePlugin
           new SelectAttribute (
             _('Expiration date synchronisaton'), _('Synchronisaton the expiration date with the POSIX one?'),
             'fdSambaExpirationSync', FALSE,
-            array('', 'posix', 'samba'), '',
-            array('Do not synchronise', 'Synchronise from POSIX', 'Synchronise to POSIX')
+            ['', 'posix', 'samba'], '',
+            ['Do not synchronise', 'Synchronise from POSIX', 'Synchronise to POSIX']
           ),
           new BooleanAttribute (
             _('Generate sambaLMPassword'), _('Needed to be compliant with Windows <= 98 or Samba < 3.2'),
@@ -71,9 +71,9 @@ class sambaPluginConfig extends simplePlugin
             _('Activate primary group warning'), _('Issue a warning if POSIX primary group cannot be converted to Samba primary group when activating the Samba tab of a user'),
             'fdSambaPrimaryGroupWarning', FALSE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/samba/include/class_smbHash.inc b/samba/include/class_smbHash.inc
index 1cda1b1da5..1980de0fb7 100644
--- a/samba/include/class_smbHash.inc
+++ b/samba/include/class_smbHash.inc
@@ -33,7 +33,7 @@ $Id$
 /**
 * Calculates NT and LM hashes.
 *
-* The important functions are lmhash($password) and nthash($password).
+* The important functions are lmhash ($password) and nthash ($password).
 *
 * @package lam
 */
@@ -41,101 +41,101 @@ class smbHash {
 
   // Contants used in lanlam hash calculations
   // Ported from SAMBA/source/libsmb/smbdes.c:perm1[56]
-  private $perm1 = array(57, 49, 41, 33, 25, 17,  9,
+  private $perm1 = [57, 49, 41, 33, 25, 17,  9,
               1, 58, 50, 42, 34, 26, 18,
              10,  2, 59, 51, 43, 35, 27,
              19, 11,  3, 60, 52, 44, 36,
              63, 55, 47, 39, 31, 23, 15,
               7, 62, 54, 46, 38, 30, 22,
              14,  6, 61, 53, 45, 37, 29,
-             21, 13,  5, 28, 20, 12,  4);
+             21, 13,  5, 28, 20, 12,  4];
   // Ported from SAMBA/source/libsmb/smbdes.c:perm2[48]
-  private $perm2 = array(14, 17, 11, 24,  1,  5,
+  private $perm2 = [14, 17, 11, 24,  1,  5,
               3, 28, 15,  6, 21, 10,
              23, 19, 12,  4, 26,  8,
              16,  7, 27, 20, 13,  2,
              41, 52, 31, 37, 47, 55,
              30, 40, 51, 45, 33, 48,
              44, 49, 39, 56, 34, 53,
-             46, 42, 50, 36, 29, 32);
+             46, 42, 50, 36, 29, 32];
   // Ported from SAMBA/source/libsmb/smbdes.c:perm3[64]
-  private $perm3 = array(58, 50, 42, 34, 26, 18, 10,  2,
+  private $perm3 = [58, 50, 42, 34, 26, 18, 10,  2,
              60, 52, 44, 36, 28, 20, 12,  4,
              62, 54, 46, 38, 30, 22, 14,  6,
              64, 56, 48, 40, 32, 24, 16,  8,
              57, 49, 41, 33, 25, 17,  9,  1,
              59, 51, 43, 35, 27, 19, 11,  3,
              61, 53, 45, 37, 29, 21, 13,  5,
-             63, 55, 47, 39, 31, 23, 15,  7);
+             63, 55, 47, 39, 31, 23, 15,  7];
   // Ported from SAMBA/source/libsmb/smbdes.c:perm4[48]
-  private $perm4 = array(32,  1,  2,  3,  4,  5,
+  private $perm4 = [32,  1,  2,  3,  4,  5,
                  4,  5,  6,  7,  8,  9,
                  8,  9, 10, 11, 12, 13,
                 12, 13, 14, 15, 16, 17,
                 16, 17, 18, 19, 20, 21,
                 20, 21, 22, 23, 24, 25,
                 24, 25, 26, 27, 28, 29,
-                28, 29, 30, 31, 32,  1);
+                28, 29, 30, 31, 32,  1];
   // Ported from SAMBA/source/libsmb/smbdes.c:perm5[32]
-  private $perm5 = array(16,  7, 20, 21,
+  private $perm5 = [16,  7, 20, 21,
                    29, 12, 28, 17,
                     1, 15, 23, 26,
                     5, 18, 31, 10,
                     2,  8, 24, 14,
                    32, 27,  3,  9,
                    19, 13, 30,  6,
-                   22, 11,  4, 25);
+                   22, 11,  4, 25];
   // Ported from SAMBA/source/libsmb/smbdes.c:perm6[64]
-  private $perm6 = array(40,  8, 48, 16, 56, 24, 64, 32,
+  private $perm6 = [40,  8, 48, 16, 56, 24, 64, 32,
              39,  7, 47, 15, 55, 23, 63, 31,
              38,  6, 46, 14, 54, 22, 62, 30,
              37,  5, 45, 13, 53, 21, 61, 29,
              36,  4, 44, 12, 52, 20, 60, 28,
              35,  3, 43, 11, 51, 19, 59, 27,
              34,  2, 42, 10, 50, 18, 58, 26,
-             33,  1, 41,  9, 49, 17, 57, 25);
+             33,  1, 41,  9, 49, 17, 57, 25];
   // Ported from SAMBA/source/libsmb/smbdes.c:sc[16]
-  private $sc = array(1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1);
+  private $sc = [1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1];
   // Ported from SAMBA/source/libsmb/smbdes.c:sbox[8][4][16]
   // Side note, I used cut and paste for all these numbers, I did NOT
   // type them all in =)
-  private $sbox = array(array(array(14,  4, 13,  1,  2, 15, 11,  8,  3, 10,  6, 12,  5,  9,  0,  7),
-             array( 0, 15,  7,  4, 14,  2, 13,  1, 10,  6, 12, 11,  9,  5,  3,  8),
-             array( 4,  1, 14,  8, 13,  6,  2, 11, 15, 12,  9,  7,  3, 10,  5,  0),
-             array(15, 12,  8,  2,  4,  9,  1,  7,  5, 11,  3, 14, 10,  0,  6, 13)),
-            array(array(15,  1,  8, 14,  6, 11,  3,  4,  9,  7,  2, 13, 12,  0,  5, 10),
-             array( 3, 13,  4,  7, 15,  2,  8, 14, 12,  0,  1, 10,  6,  9, 11,  5),
-             array( 0, 14,  7, 11, 10,  4, 13,  1,  5,  8, 12,  6,  9,  3,  2, 15),
-             array(13,  8, 10,  1,  3, 15,  4,  2, 11,  6,  7, 12,  0,  5, 14,  9)),
-            array(array(10,  0,  9, 14,  6,  3, 15,  5,  1, 13, 12,  7, 11,  4,  2,  8),
-             array(13,  7,  0,  9,  3,  4,  6, 10,  2,  8,  5, 14, 12, 11, 15,  1),
-             array(13,  6,  4,  9,  8, 15,  3,  0, 11,  1,  2, 12,  5, 10, 14,  7),
-             array( 1, 10, 13,  0,  6,  9,  8,  7,  4, 15, 14,  3, 11,  5,  2, 12)),
-            array(array( 7, 13, 14,  3,  0,  6,  9, 10,  1,  2,  8,  5, 11, 12,  4, 15),
-             array(13,  8, 11,  5,  6, 15,  0,  3,  4,  7,  2, 12,  1, 10, 14,  9),
-             array(10,  6,  9,  0, 12, 11,  7, 13, 15,  1,  3, 14,  5,  2,  8,  4),
-             array( 3, 15,  0,  6, 10,  1, 13,  8,  9,  4,  5, 11, 12,  7,  2, 14)),
-            array(array( 2, 12,  4,  1,  7, 10, 11,  6,  8,  5,  3, 15, 13,  0, 14,  9),
-             array(14, 11,  2, 12,  4,  7, 13,  1,  5,  0, 15, 10,  3,  9,  8,  6),
-             array( 4,  2,  1, 11, 10, 13,  7,  8, 15,  9, 12,  5,  6,  3,  0, 14),
-             array(11,  8, 12,  7,  1, 14,  2, 13,  6, 15,  0,  9, 10,  4,  5,  3)),
-            array(array(12,  1, 10, 15,  9,  2,  6,  8,  0, 13,  3,  4, 14,  7,  5, 11),
-             array(10, 15,  4,  2,  7, 12,  9,  5,  6,  1, 13, 14,  0, 11,  3,  8),
-             array( 9, 14, 15,  5,  2,  8, 12,  3,  7,  0,  4, 10,  1, 13, 11,  6),
-             array( 4,  3,  2, 12,  9,  5, 15, 10, 11, 14,  1,  7,  6,  0,  8, 13)),
-            array(array( 4, 11,  2, 14, 15,  0,  8, 13,  3, 12,  9,  7,  5, 10,  6,  1),
-             array(13,  0, 11,  7,  4,  9,  1, 10, 14,  3,  5, 12,  2, 15,  8,  6),
-             array( 1,  4, 11, 13, 12,  3,  7, 14, 10, 15,  6,  8,  0,  5,  9,  2),
-             array( 6, 11, 13,  8,  1,  4, 10,  7,  9,  5,  0, 15, 14,  2,  3, 12)),
-            array(array(13,  2,  8,  4,  6, 15, 11,  1, 10,  9,  3, 14,  5,  0, 12,  7),
-             array( 1, 15, 13,  8, 10,  3,  7,  4, 12,  5,  6, 11,  0, 14,  9,  2),
-             array( 7, 11,  4,  1,  9, 12, 14,  2,  0,  6, 10, 13, 15,  3,  5,  8),
-             array( 2,  1, 14,  7,  4, 10,  8, 13, 15, 12,  9,  0,  3,  5,  6, 11)));
+  private $sbox = [[[14,  4, 13,  1,  2, 15, 11,  8,  3, 10,  6, 12,  5,  9,  0,  7],
+             [ 0, 15,  7,  4, 14,  2, 13,  1, 10,  6, 12, 11,  9,  5,  3,  8],
+             [ 4,  1, 14,  8, 13,  6,  2, 11, 15, 12,  9,  7,  3, 10,  5,  0],
+             [15, 12,  8,  2,  4,  9,  1,  7,  5, 11,  3, 14, 10,  0,  6, 13]],
+            [[15,  1,  8, 14,  6, 11,  3,  4,  9,  7,  2, 13, 12,  0,  5, 10],
+             [ 3, 13,  4,  7, 15,  2,  8, 14, 12,  0,  1, 10,  6,  9, 11,  5],
+             [ 0, 14,  7, 11, 10,  4, 13,  1,  5,  8, 12,  6,  9,  3,  2, 15],
+             [13,  8, 10,  1,  3, 15,  4,  2, 11,  6,  7, 12,  0,  5, 14,  9]],
+            [[10,  0,  9, 14,  6,  3, 15,  5,  1, 13, 12,  7, 11,  4,  2,  8],
+             [13,  7,  0,  9,  3,  4,  6, 10,  2,  8,  5, 14, 12, 11, 15,  1],
+             [13,  6,  4,  9,  8, 15,  3,  0, 11,  1,  2, 12,  5, 10, 14,  7],
+             [ 1, 10, 13,  0,  6,  9,  8,  7,  4, 15, 14,  3, 11,  5,  2, 12]],
+            [[ 7, 13, 14,  3,  0,  6,  9, 10,  1,  2,  8,  5, 11, 12,  4, 15],
+             [13,  8, 11,  5,  6, 15,  0,  3,  4,  7,  2, 12,  1, 10, 14,  9],
+             [10,  6,  9,  0, 12, 11,  7, 13, 15,  1,  3, 14,  5,  2,  8,  4],
+             [ 3, 15,  0,  6, 10,  1, 13,  8,  9,  4,  5, 11, 12,  7,  2, 14]],
+            [[ 2, 12,  4,  1,  7, 10, 11,  6,  8,  5,  3, 15, 13,  0, 14,  9],
+             [14, 11,  2, 12,  4,  7, 13,  1,  5,  0, 15, 10,  3,  9,  8,  6],
+             [ 4,  2,  1, 11, 10, 13,  7,  8, 15,  9, 12,  5,  6,  3,  0, 14],
+             [11,  8, 12,  7,  1, 14,  2, 13,  6, 15,  0,  9, 10,  4,  5,  3]],
+            [[12,  1, 10, 15,  9,  2,  6,  8,  0, 13,  3,  4, 14,  7,  5, 11],
+             [10, 15,  4,  2,  7, 12,  9,  5,  6,  1, 13, 14,  0, 11,  3,  8],
+             [ 9, 14, 15,  5,  2,  8, 12,  3,  7,  0,  4, 10,  1, 13, 11,  6],
+             [ 4,  3,  2, 12,  9,  5, 15, 10, 11, 14,  1,  7,  6,  0,  8, 13]],
+            [[ 4, 11,  2, 14, 15,  0,  8, 13,  3, 12,  9,  7,  5, 10,  6,  1],
+             [13,  0, 11,  7,  4,  9,  1, 10, 14,  3,  5, 12,  2, 15,  8,  6],
+             [ 1,  4, 11, 13, 12,  3,  7, 14, 10, 15,  6,  8,  0,  5,  9,  2],
+             [ 6, 11, 13,  8,  1,  4, 10,  7,  9,  5,  0, 15, 14,  2,  3, 12]],
+            [[13,  2,  8,  4,  6, 15, 11,  1, 10,  9,  3, 14,  5,  0, 12,  7],
+             [ 1, 15, 13,  8, 10,  3,  7,  4, 12,  5,  6, 11,  0, 14,  9,  2],
+             [ 7, 11,  4,  1,  9, 12, 14,  2,  0,  6, 10, 13, 15,  3,  5,  8],
+             [ 2,  1, 14,  7,  4, 10,  8, 13, 15, 12,  9,  0,  3,  5,  6, 11]]];
 
   /**
   * Fixes too large numbers
   */
-  private function x($i)
+  private function x ($i)
   {
     if ($i < 0) return 4294967296 - $i;
     else return $i;
@@ -146,9 +146,9 @@ class smbHash {
   * @param array $data
   * @return array
   */
-  private function lshift($count, $data)
+  private function lshift ($count, $data)
   {
-    $ret = array();
+    $ret = [];
     for ($i = 0; $i < sizeof($data); $i++) {
       $ret[$i] = $data[($i + $count) % sizeof($data)];
     }
@@ -160,9 +160,9 @@ class smbHash {
   * @param array p permutation
   * @return array
   */
-  private function permute($in, $p, $n)
+  private function permute ($in, $p, $n)
   {
-    $ret = array();
+    $ret = [];
     for ($i = 0; $i < $n; $i++) {
       $ret[$i] = $in[$p[$i] - 1] ? 1 : 0;
     }
@@ -174,9 +174,9 @@ class smbHash {
   * @param array $in2
   * @return array
   */
-  private function mxor($in1, $in2)
+  private function mxor ($in1, $in2)
   {
-    $ret = array();
+    $ret = [];
     for ($i = 0; $i < sizeof($in1); $i++) {
       $ret[$i] = $in1[$i] ^ $in2[$i];
     }
@@ -189,14 +189,14 @@ class smbHash {
   * @param boolean $forw
   * @return array
   */
-  function doHash($in, $key, $forw)
+  function doHash ($in, $key, $forw)
   {
-    $ki = array();
+    $ki = [];
 
     $pk1 = $this->permute($key, $this->perm1, 56);
 
-    $c = array();
-    $d = array();
+    $c = [];
+    $d = [];
     for ($i = 0; $i < 28; $i++) {
       $c[$i] = $pk1[$i];
       $d[$i] = $pk1[28 + $i];
@@ -213,8 +213,8 @@ class smbHash {
 
     $pd1 = $this->permute($in, $this->perm3, 64);
 
-    $l = array();
-    $r = array();
+    $l = [];
+    $r = [];
     for ($i = 0; $i < 32; $i++) {
       $l[$i] = $pd1[$i];
       $r[$i] = $pd1[32 + $i];
@@ -234,8 +234,8 @@ class smbHash {
         }
       }
       for ($j = 0; $j < 8; $j++) {
-        $m = array();
-        $n = array();
+        $m = [];
+        $n = [];
         $m = ($b[$j][0] << 1) | $b[$j][5];
         $n = ($b[$j][1] << 3) | ($b[$j][2] << 2) | ($b[$j][3] << 1) | $b[$j][4];
 
@@ -265,7 +265,7 @@ class smbHash {
    * @param string $str
    * @return string key
    */
-  private function str_to_key($str)
+  private function str_to_key ($str)
   {
     $key[0] = $this->unsigned_shift_r($str[0], 1);
     $key[1] = (($str[0] & 0x01) << 6) | $this->unsigned_shift_r($str[1], 2);
@@ -289,7 +289,7 @@ class smbHash {
    * @param unknown_type $forw
    * @return unknown
    */
-  private function smb_hash($in, $key, $forw)
+  private function smb_hash ($in, $key, $forw)
   {
     $key2 = $this->str_to_key($key);
 
@@ -316,12 +316,12 @@ class smbHash {
    * @param unknown_type $in
    * @return unknown
    */
-  private function E_P16($in)
+  private function E_P16 ($in)
   {
     $p14 = array_values(unpack("C*", $in));
-    $sp8 = array(0x4b, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25);
-    $p14_1 = array();
-    $p14_2 = array();
+    $sp8 = [0x4b, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25];
+    $p14_1 = [];
+    $p14_2 = [];
     for ($i = 0; $i < 7; $i++) {
       $p14_1[$i] = $p14[$i];
       $p14_2[$i] = $p14[$i + 7];
@@ -341,7 +341,7 @@ class smbHash {
   * @param string $password password
   * @return string hash value
   */
-  public function lmhash($password = "")
+  public function lmhash ($password = "")
   {
     $password = strtoupper($password);
     $password = substr($password, 0, 14);
@@ -359,11 +359,11 @@ class smbHash {
   * @param string $password password
   * @return string hash value
   */
-  public function nthash($password = "")
+  public function nthash ($password = "")
   {
-    if (function_exists('mhash') && defined('MHASH_MD4')) {
+    if (function_exists ('mhash') && defined ('MHASH_MD4')) {
       return strtoupper(bin2hex(mhash(MHASH_MD4, iconv('UTF-8', 'UTF-16LE', $password))));
-    } elseif (function_exists('hash')) {
+    } elseif (function_exists ('hash')) {
       return strtoupper(hash('md4', iconv('UTF-8', 'UTF-16LE', $password)));
     } else {
       die(_('Your PHP install does not have the mhash() nor the hash function. Cannot do MD4 hashes.'));
@@ -375,7 +375,7 @@ class smbHash {
   *
   * PHP 4 only supports signed shifts by default.
   */
-  private function unsigned_shift_r($a, $b)
+  private function unsigned_shift_r ($a, $b)
   {
     $z = 0x80000000;
     if ($z & $a) {
diff --git a/samba/personal/samba/class_sambaAccount.inc b/samba/personal/samba/class_sambaAccount.inc
index 32c50c2360..4f23758faf 100644
--- a/samba/personal/samba/class_sambaAccount.inc
+++ b/samba/personal/samba/class_sambaAccount.inc
@@ -44,7 +44,7 @@ class MungedAttribute extends Attribute
     }
   }
 
-  function setParent(&$plugin)
+  function setParent (&$plugin)
   {
     $this->plugin = $plugin;
     if (is_object($this->plugin)) {
@@ -61,7 +61,7 @@ class MungedAttribute extends Attribute
     }
   }
 
-  function setValue($value)
+  function setValue ($value)
   {
     if (!empty($value)) {
       $this->mungedObject->load($value);
@@ -79,7 +79,7 @@ class MungedAttribute extends Attribute
     }
   }
 
-  function getValue()
+  function getValue ()
   {
     if (is_object($this->plugin)) {
       foreach ($this->attrList as $attr) {
@@ -93,7 +93,7 @@ class MungedAttribute extends Attribute
     return $this->mungedObject->getMunged();
   }
 
-  function getAttrList()
+  function getAttrList ()
   {
     return array_merge($this->attrList, $this->flagList);
   }
@@ -101,7 +101,7 @@ class MungedAttribute extends Attribute
 
 class SambaFlagsAttribute extends FlagsAttribute
 {
-  function getValue()
+  function getValue ()
   {
     $value = '[U';
     if (is_object($this->plugin)) {
@@ -137,40 +137,40 @@ class WinstationSelectDialog extends GenericSelectDialog
 
 class winstationSelect extends simpleSelectManagement
 {
-  protected $objectTypes = array(
+  protected $objectTypes = [
     'winstation'
-  );
-  protected $autoFilterAttributes = array('dn', 'cn', 'uid', 'description');
+  ];
+  protected $autoFilterAttributes = ['dn', 'cn', 'uid', 'description'];
 }
 
 class sambaAccount extends simplePlugin
 {
-  var $objectclasses = array('sambaSamAccount');
+  var $objectclasses = ['sambaSamAccount'];
 
   var $displayHeader = TRUE;
 
   var $SID      = "";
   var $ridBase  = 0;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Samba'),
       'plDescription'   => _('Samba settings'),
       'plIcon'          => 'geticon.php?context=applications&icon=samba&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=samba&size=16',
       'plSelfModify'    => TRUE,
-      'plDepends'       => array('posixAccount'),
+      'plDepends'       => ['posixAccount'],
       'plPriority'      => 5,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    static $letters = array();
+    static $letters = [];
     if (empty($letters)) {
       $letters[] = '';
       for ($i = 68; $i < 91; $i++) {
@@ -178,11 +178,11 @@ class sambaAccount extends simplePlugin
       }
     }
     static $sambaRegEx = '/^\\\\\\\\([a-z0-9%_.:$+-\\\\]+\\\\?)+$/i';
-    return array(
-      'generic' => array(
+    return [
+      'generic' => [
         'name'  => _('Samba profile'),
         'icon'  => 'geticon.php?context=applications&icon=samba&size=16',
-        'attrs' => array(
+        'attrs' => [
           new HiddenAttribute ('sambaSID'),
           new HiddenAttribute ('sambaPrimaryGroupSID'),
           new SelectAttribute (
@@ -208,12 +208,12 @@ class sambaAccount extends simplePlugin
             'sambaProfilePath', FALSE, '', '',
             $sambaRegEx
           ),
-        )
-      ),
-      'terminal' => array(
+        ]
+      ],
+      'terminal' => [
         'name'  => _('Terminal server'),
         'icon'  => 'geticon.php?context=devices&icon=terminal&size=16',
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Allow login on terminal server'), _('Allow login on terminal server'),
             'TsLogin', FALSE
@@ -275,35 +275,35 @@ class sambaAccount extends simplePlugin
           new SelectAttribute (
             _('Shadowing'), _('Shadowing'),
             'Shadow', TRUE,
-            array(0,1,2,3,4), 0,
-            array(_('disabled'), _('input on, notify on'), _('input on, notify off'),
-                  _('input off, notify on'), _('input off, nofify off'))
+            [0,1,2,3,4], 0,
+            [_('disabled'), _('input on, notify on'), _('input on, notify off'),
+                  _('input off, notify on'), _('input off, nofify off')]
           ),
           new SelectAttribute (
             _('On broken or timed out'), _('What happen if disconnected or timeout'),
             'BrokenConn', TRUE,
-            array(0,1), 0,
-            array(_('disconnect'), _('reset'))
+            [0,1], 0,
+            [_('disconnect'), _('reset')]
           ),
           new SelectAttribute (
             _('Reconnect if disconnected'), _('Reconnect if disconnected'),
             'ReConn', TRUE,
-            array(0,1), 0,
-            array(_('from any client'), _('from previous client only'))
+            [0,1], 0,
+            [_('from any client'), _('from previous client only')]
           ),
           new MungedAttribute (
             'sambaMungedDial',
-            array(
+            [
               'ConnectClientDrives','ConnectClientPrinters','DefaultPrinter',
               'Shadow','ReConn','BrokenConn','TsLogin','InheritMode'
-            )
+            ]
           )
-        )
-      ),
-      'access' => array(
+        ]
+      ],
+      'access' => [
         'name'  => _('Access options'),
         'icon'  => 'geticon.php?context=status&icon=dialog-password&size=16',
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Enforce password change'), _('Force the user to change his password'),
             'sambaPwdLastSet', FALSE, FALSE, '',
@@ -334,7 +334,7 @@ class sambaAccount extends simplePlugin
           ),
           new SambaFlagsAttribute (
             'sambaAcctFlags',
-            array('flag_pwdExpire','flag_noPwdRequired','flag_lockSamba')
+            ['flag_pwdExpire','flag_noPwdRequired','flag_lockSamba']
           ),
           new DialogButtonAttribute (
             _('Samba logon times'), _('What is the allowed time to connect'),
@@ -351,12 +351,12 @@ class sambaAccount extends simplePlugin
           new HiddenAttribute('sambaBadPasswordCount'),
           new HiddenAttribute('sambaNTPassword'),
           new HiddenAttribute('sambaLMPassword'),
-        )
-      ),
-      'system_trust' => array(
+        ]
+      ],
+      'system_trust' => [
         'name'  => _('System trust'),
         'icon'  => 'geticon.php?context=categories&icon=acl&size=16',
-        'attrs' => array(
+        'attrs' => [
           new CommaListAttribute(
             'sambaUserWorkstations',
             new WinstationsAttribute(
@@ -364,9 +364,9 @@ class sambaAccount extends simplePlugin
               'sambaUserWorkstations_ta', FALSE
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $baseobject = NULL, $parent = NULL, $mainTab = FALSE)
@@ -383,36 +383,36 @@ class sambaAccount extends simplePlugin
 
     $this->attributesAccess['sambaDomainName']->setChoices(array_keys($config->data['SERVERS']['SAMBA']));
     $this->attributesAccess['TsLogin']->setManagedAttributes(
-      array(
-        'disable' => array (
-          FALSE => array (
+      [
+        'disable' => [
+          FALSE => [
             'CtxWFHomeDir', 'CtxWFHomeDirDrive', 'CtxWFProfilePath',
             'InheritMode', 'CtxInitialProgram', 'CtxWorkDirectory',
             'CtxMaxConnectionTime', 'CtxMaxDisconnectionTime',
             'CtxMaxIdleTime', 'ConnectClientDrives', 'ConnectClientPrinters',
             'DefaultPrinter', 'Shadow','ReConn','BrokenConn'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesAccess['InheritMode']->setManagedAttributes(
-      array(
-        'disable' => array (
-          TRUE => array (
+      [
+        'disable' => [
+          TRUE => [
             'CtxInitialProgram', 'CtxWorkDirectory',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesAccess['sambaHomeDrive']->setManagedAttributes(
-      array(
-        'erase' => array ('' => array ('sambaHomePath'))
-      )
+      [
+        'erase' => ['' => ['sambaHomePath']]
+      ]
     );
     $this->attributesAccess['sambaPwdLastSet']->setManagedAttributes(
-      array(
-        'disable' => array (TRUE => array ('fd_pwdCantChange'))
-      )
+      [
+        'disable' => [TRUE => ['fd_pwdCantChange']]
+      ]
     );
     $this->attributesAccess['fd_pwdCantChange']->setInLdap(FALSE);
     $value = (isset($this->attrs['sambaPwdLastSet']) && ($this->attrs['sambaPwdLastSet'][0] == '4294967295'));
@@ -424,7 +424,7 @@ class sambaAccount extends simplePlugin
       $this->SID = preg_replace ("/-[^-]+$/", "", $this->sambaSID);
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))", array("sambaAlgorithmicRidBase","sambaDomainName"));
+      $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))", ["sambaAlgorithmicRidBase","sambaDomainName"]);
       if ($ldap->count() != 0) {
         $attrs = $ldap->fetch();
         if (isset($attrs['sambaAlgorithmicRidBase'])) {
@@ -459,7 +459,7 @@ class sambaAccount extends simplePlugin
     $this->prepareSavedAttributes();
   }
 
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     parent::resetCopyInfos();
 
@@ -469,7 +469,7 @@ class sambaAccount extends simplePlugin
 
 
   /* Check for input problems */
-  function check()
+  function check ()
   {
     $messages = parent::check();
 
@@ -497,7 +497,7 @@ class sambaAccount extends simplePlugin
     return $messages;
   }
 
-  function prepare_save()
+  function prepare_save ()
   {
     global $config;
 
@@ -526,7 +526,7 @@ class sambaAccount extends simplePlugin
       do {
         $sid = $this->SID."-".($uidNumber_tmp * 2 + $this->ridBase);
         $ldap->cd($config->current['BASE']);
-        $ldap->search("(sambaSID=$sid)", array("sambaSID"));
+        $ldap->search("(sambaSID=$sid)", ["sambaSID"]);
         $uidNumber_tmp++;
       } while ($ldap->count() > 0);
       $this->attrs['sambaSID'] = $sid;
@@ -536,7 +536,7 @@ class sambaAccount extends simplePlugin
       $ldap = $config->get_ldap_link();
       // Check for users primary group
       $ldap->cd($config->current['BASE']);
-      $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$gidNumber."))", array("cn"));
+      $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$gidNumber."))", ["cn"]);
       if ($ldap->count() != 1) {
         msg_dialog::display(
           _("Warning"),
@@ -573,7 +573,7 @@ class sambaAccount extends simplePlugin
     if (!$this->attributesAccess['sambaPwdLastSet']->hasChanged() && !$this->attributesAccess['fd_pwdCantChange']->hasChanged()) {
       unset($this->attrs['sambaPwdLastSet']);
     } elseif (!$this->sambaPwdLastSet) {
-      $this->attrs['sambaPwdLastSet'] = ($this->fd_pwdCantChange ? array('4294967295') : '');
+      $this->attrs['sambaPwdLastSet'] = ($this->fd_pwdCantChange ? ['4294967295'] : '');
     }
 
     if ($this->parent->getBaseObject()->attributesAccess['userPassword']->hasChanged()) {
@@ -582,7 +582,7 @@ class sambaAccount extends simplePlugin
       if ($config->get_cfg_value('sambaGenLMPassword', 'FALSE') == 'TRUE') {
         $this->attrs['sambaLMPassword'] = $smbHash->lmhash($password);
       } else {
-        $this->attrs['sambaLMPassword'] = array();
+        $this->attrs['sambaLMPassword'] = [];
       }
       $this->attrs['sambaNTPassword'] = $smbHash->nthash($password);
       $this->attrs['sambaPwdLastSet'] = date('U');
@@ -604,24 +604,24 @@ class sambaAccount extends simplePlugin
           $this->attrs['sambaKickoffTime'] = $this->parent->by_object['posixAccount']->attributesAccess['shadowExpire']->getDateValue()->format('U');
         } catch (Exception $e) {
           // shadowExpire is an invalid date, most likely because we’re a template and it uses patterns
-          $this->attrs['sambaKickoffTime'] = array();
+          $this->attrs['sambaKickoffTime'] = [];
         }
       } else {
-        $this->attrs['sambaKickoffTime'] = array();
+        $this->attrs['sambaKickoffTime'] = [];
       }
     }
 
     return $errors;
   }
 
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     parent::adapt_from_template($attrs, $skip);
 
     $this->sambaSID = "";
   }
 
-  function callHook($cmd, array $addAttrs = array(), &$returnOutput = array(), &$returnCode = NULL)
+  function callHook ($cmd, array $addAttrs = [], &$returnOutput = [], &$returnCode = NULL)
   {
     $addAttrs['passwordMethod'] = $this->parent->getBaseObject()->attributesAccess['userPassword']->getMethod();
     $addAttrs['userLocked']     = $this->parent->getBaseObject()->attributesAccess['userPassword']->isLocked();
@@ -630,7 +630,7 @@ class sambaAccount extends simplePlugin
   }
 
   /* Returns TRUE if this attribute should be asked in the creation by template dialog */
-  function showInTemplate($attr, $templateAttrs)
+  function showInTemplate ($attr, $templateAttrs)
   {
     if (in_array($attr, $this->attributesAccess['sambaMungedDial']->getAttrList())) {
       return FALSE;
diff --git a/samba/personal/samba/class_sambaLogonHours.inc b/samba/personal/samba/class_sambaLogonHours.inc
index e824127d1b..8126ae2414 100644
--- a/samba/personal/samba/class_sambaLogonHours.inc
+++ b/samba/personal/samba/class_sambaLogonHours.inc
@@ -22,7 +22,7 @@
 class sambaLogonHours
 {
   var $sambaLogonHours = "";
-  var $Matrix          = array();
+  var $Matrix          = [];
   var $timezone        = 0;
   var $acl;
 
@@ -64,7 +64,7 @@ class sambaLogonHours
     }
 
     /* Create matrix */
-    $this->Matrix = array();
+    $this->Matrix = [];
     for ($day = 0; $day < 7; $day++) {
       for ($hour  = 0; $hour < 24; $hour++) {
         $bitpos  = ($day * 24 + $hour) % 168;
@@ -73,14 +73,14 @@ class sambaLogonHours
     }
   }
 
-  function execute()
+  function execute ()
   {
     $week_days = msgPool::weekdays();
 
     $smarty = get_smarty();
     $smarty->assign("acl", preg_match("/w/i", $this->acl));
 
-    $hours = array();
+    $hours = [];
     for ($i = 0; $i < 24; $i++) {
       $hours[$i] = $i;
     }
@@ -91,7 +91,7 @@ class sambaLogonHours
     return $smarty->fetch(get_template_path("sambaLogonHours.tpl", TRUE, dirname(__FILE__)));
   }
 
-  function save_object()
+  function save_object ()
   {
     /* Check if dialog was opened and if there were any changes */
     if (isset($_POST['sambaLogonHoursPosted'])) {
@@ -107,7 +107,7 @@ class sambaLogonHours
     }
   }
 
-  function save()
+  function save ()
   {
     /* Convert Matrix to Hex */
     $slh = "";
diff --git a/samba/personal/samba/class_sambaMungedDial.inc b/samba/personal/samba/class_sambaMungedDial.inc
index a5a1c81ac4..4f07bcacdb 100644
--- a/samba/personal/samba/class_sambaMungedDial.inc
+++ b/samba/personal/samba/class_sambaMungedDial.inc
@@ -42,7 +42,7 @@ define ("FILEHEADER_OLD",
 class sambaMungedDial
 {
   /* Terminal server variables (samba3) */
-  var $ctx = array(
+  var $ctx = [
     'CtxCfgPresent'           => '551e0bb0',
     'CtxCfgFlags1'            => '00e00010',
     'CtxCallback'             => '',
@@ -59,27 +59,27 @@ class sambaMungedDial
     'CtxWFProfilePath'        => '',
     'CtxInitialProgram'       => '',
     'CtxCallbackNumber'       => ''
-  );
+  ];
 
   /* attribute list for save action */
-  var $ctxattributes = array("CtxCfgPresent", "CtxCfgFlags1", "CtxCallback",
+  var $ctxattributes = ["CtxCfgPresent", "CtxCfgFlags1", "CtxCallback",
         "CtxShadow", "CtxMaxConnectionTime", "CtxMaxDisconnectionTime",
         "CtxMaxIdleTime", "CtxKeyboardLayout", "CtxMinEncryptionLevel",
         "CtxWorkDirectory", "CtxNWLogonServer", "CtxWFHomeDir",
         "CtxWFHomeDirDrive", "CtxWFProfilePath", "CtxInitialProgram",
-        "CtxCallbackNumber");
+        "CtxCallbackNumber"];
 
   /* These parameters are treated as strings and get a trailing zero */
-  var $stringParams = array( "CtxWorkDirectory", "CtxNWLogonServer",
+  var $stringParams = [ "CtxWorkDirectory", "CtxNWLogonServer",
       "CtxWFHomeDir", "CtxWFHomeDirDrive",
-      "CtxWFProfilePath", "CtxInitialProgram", "CtxCallbackNumber");
+      "CtxWFProfilePath", "CtxInitialProgram", "CtxCallbackNumber"];
 
   /* These parameters are treated as time values and get converted */
-  var $timeParams = array("CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime");
+  var $timeParams = ["CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime"];
 
   var $old_behavior = FALSE;
 
-  function strhex($string)
+  function strhex ($string)
   {
     $hex = "";
 
@@ -90,7 +90,7 @@ class sambaMungedDial
     return $hex;
   }
 
-  function hexstr($hex)
+  function hexstr ($hex)
   {
     $string = "";
 
@@ -101,7 +101,7 @@ class sambaMungedDial
     return $string;
   }
 
-  function endian($src)
+  function endian ($src)
   {
     return substr($src, 2, 2).substr($src, 0, 2);
   }
@@ -124,7 +124,7 @@ class sambaMungedDial
     return (int)($usecs / (60 * 1000));
   }
 
-  function to8bit($string)
+  function to8bit ($string)
   {
     $result = "";
 
@@ -138,7 +138,7 @@ class sambaMungedDial
     return $result;
   }
 
-  function is_samba_path($path)
+  function is_samba_path ($path)
   {
     if ($path == "") {
       return TRUE;
@@ -188,12 +188,12 @@ class sambaMungedDial
   }
 
   /* Setup parameter given by paramName to MungedDial-Format */
-  function munge($paramName, $paramValue, $isString)
+  function munge ($paramName, $paramValue, $isString)
   {
     $result = "";
 
     /* Encode paramName to UTF-16 */
-    if (function_exists("recode")) {
+    if (function_exists ("recode")) {
       $utfName = recode("ISO8859-15..UTF-16", $paramName);
     } else {
       $utfName = iconv("ISO8859-15", "UTF-16BE", $paramName);
@@ -226,9 +226,9 @@ class sambaMungedDial
   }
 
   /* Takes a base64-encoded MungedDial-String and returns an array of included parameters and values */
-  function decode_munged($munge)
+  function decode_munged ($munge)
   {
-    $result = array(
+    $result = [
       'CtxCfgPresent'           => '551e0bb0',
       'CtxCfgFlags1'            => '00e00010',
       'CtxCallback'             => '',
@@ -245,7 +245,7 @@ class sambaMungedDial
       'CtxWFProfilePath'        => '',
       'CtxInitialProgram'       => '',
       'CtxCallbackNumber'       => ''
-    );
+    ];
 
     /*
      * Remove base64 encoding and skip FILEHEADER.
@@ -320,7 +320,7 @@ class sambaMungedDial
   /* Returns array of flags, which can be set on-demand with activated java-script */
   function getOnDemandFlags ()
   {
-    $result = array();
+    $result = [];
     foreach ($this->timeParams as $value) {
       if (!isset($this->ctx[$value]) || (isset($this->ctx[$value]) && $this->ctx[$value] == 0)) {
         $result[$value."Mode"] = "disabled";
diff --git a/sinaps/config/sinaps/class_sinapsConfig.inc b/sinaps/config/sinaps/class_sinapsConfig.inc
index 56d952e901..1d7cb4c70e 100644
--- a/sinaps/config/sinaps/class_sinapsConfig.inc
+++ b/sinaps/config/sinaps/class_sinapsConfig.inc
@@ -20,28 +20,28 @@
 
 class sinapsConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSinapsPluginConf');
+  var $objectclasses  = ['fdSinapsPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('SINAPS configuration'),
       'plDescription'   => _('FusionDirectory SINAPS plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
     global $config;
 
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Sinaps'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Enable SINAPS integration'), _('Whether to enable the SINAPS integration'),
             'fdSinapsEnabled', FALSE,
@@ -66,17 +66,17 @@ class sinapsConfig extends simplePlugin
             'fdSinapsUuidPrefix', TRUE,
             'LDAPUUID'
           ),
-        )
-      ),
-      'diffusion' => array(
+        ]
+      ],
+      'diffusion' => [
         'name'  => _('Diffusion'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new StringAttribute(
               _('Applications identifiers to sync'), _('List of applications identifiers for which cross references should be synced from SINAPS'),
               'fdSinapsIdentifiantApplicationSync', FALSE
             ),
-            array('SAP')
+            ['SAP']
           ),
           new StringAttribute(
             _('User base'), _('Base in which users should be created when receiving a SINAPS diffusion'),
@@ -98,13 +98,13 @@ class sinapsConfig extends simplePlugin
               _('User roles'), _('Roles which means a user still exists if present'),
               'fdSinapsUserRole', TRUE
             ),
-            array('PR', 'EXT/PRA')
+            ['PR', 'EXT/PRA']
           ),
           new OrderedArrayAttribute(
             new PipeSeparatedCompositeAttribute(
               _('Which field to sync in diffusion'),
               'fdSinapsUserDiffusionMap',
-              array(
+              [
                 new StringAttribute(
                   '', _('XPath for the XML value to fetch'),
                   'fdSinapsUserDiffusionMap_sinaps', TRUE
@@ -117,25 +117,25 @@ class sinapsConfig extends simplePlugin
                   '', _('Name of the FD field'),
                   'fdSinapsUserDiffusionMap_field', TRUE
                 ),
-              ),
+              ],
               '',
               _('User field mapping')
             ),
             // no order
             FALSE,
-            array(
+            [
               'civilite|supannAccount|supannCivilite',
               'nomUsage|user|sn',
               'dateNaissance|personalInfo|dateOfBirth',
               'sexe|personalInfo|gender'
-            ),
+            ],
             TRUE
           ),
           new OrderedArrayAttribute(
             new PipeSeparatedCompositeAttribute(
               _('Which field to sync in diffusion'),
               'fdSinapsStructureDiffusionMap',
-              array(
+              [
                 new StringAttribute(
                   '', _('XPath for the XML value to fetch'),
                   'fdSinapsStructureDiffusionMap_sinaps', TRUE
@@ -148,27 +148,27 @@ class sinapsConfig extends simplePlugin
                   '', _('Name of the FD field'),
                   'fdSinapsStructureDiffusionMap_field', TRUE
                 ),
-              ),
+              ],
               '',
               _('Structure field mapping')
             ),
             // no order
             FALSE,
-            array(
+            [
               'libelle20|entite|ou',
               'descriptifLong|entite|description',
               'codeStructure|entite|supannCodeEntite',
               'codeSousType|entite|supannTypeEntite',
               'dateDebutValidite|supannStructureExt|fdSupannStartDate',
               'dateFinValidite|supannStructureExt|fdSupannEndDate',
-            ),
+            ],
             TRUE
           ),
-        )
-      ),
-      'acquisition' => array(
+        ]
+      ],
+      'acquisition' => [
         'name'  => _('Sinaps Acquisition'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Acquisition URL'), _('Full URL to which acquisition events should be sent'),
             'fdSinapsAcquisitionURL', FALSE
@@ -191,7 +191,7 @@ class sinapsConfig extends simplePlugin
             new PipeSeparatedCompositeAttribute(
               _('Which field to sync as contact methods in acquisition'),
               'fdSinapsAcquisitionContactMethodMap',
-              array(
+              [
                 new StringAttribute (
                   '', _('Name of an LDAP attribute'),
                   'fdSinapsAcquisitionContactMethodMap_ldap', TRUE
@@ -200,18 +200,18 @@ class sinapsConfig extends simplePlugin
                   '', _('Name of the Sinaps attribute'),
                   'fdSinapsAcquisitionContactMethodMap_sinaps', TRUE
                 ),
-              ),
+              ],
               '',
               _('Contact methods')
             ),
             // no order
             FALSE,
-            array('telephoneNumber|TELPRO','facsimileTelephoneNumber|FAXPRO','mail|MAILPRO','mobile|TELMOBILEPRO'),
+            ['telephoneNumber|TELPRO','facsimileTelephoneNumber|FAXPRO','mail|MAILPRO','mobile|TELMOBILEPRO'],
             TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -224,8 +224,8 @@ class sinapsConfig extends simplePlugin
 
     parent::__construct($dn, $object, $parent, $mainTab, $attributesInfo);
 
-    $this->attributesAccess['fdSinapsAcquisitionContactMethodMap']->setHeaders(array(_('LDAP'), _('Sinaps')));
-    $this->attributesAccess['fdSinapsUserDiffusionMap']->setHeaders(array(_('XPath'), _('Tab'), _('Field')));
-    $this->attributesAccess['fdSinapsStructureDiffusionMap']->setHeaders(array(_('XPath'), _('Tab'), _('Field')));
+    $this->attributesAccess['fdSinapsAcquisitionContactMethodMap']->setHeaders([_('LDAP'), _('Sinaps')]);
+    $this->attributesAccess['fdSinapsUserDiffusionMap']->setHeaders([_('XPath'), _('Tab'), _('Field')]);
+    $this->attributesAccess['fdSinapsStructureDiffusionMap']->setHeaders([_('XPath'), _('Tab'), _('Field')]);
   }
 }
diff --git a/sinaps/contrib/test/testAcquisition.php b/sinaps/contrib/test/testAcquisition.php
index a89e71102d..3a26354b88 100644
--- a/sinaps/contrib/test/testAcquisition.php
+++ b/sinaps/contrib/test/testAcquisition.php
@@ -12,7 +12,7 @@ require_once('include/class_sinapsRequestAcquisition.inc');
 require_once('include/class_sinapsDiffusionHandlerJob.inc');
 
 
-function usage($error = '')
+function usage ($error = '')
 {
   global $argv;
   if ($error) {
@@ -24,7 +24,7 @@ function usage($error = '')
 
 $options = getopt(
   'Ph',
-  array(
+  [
     'help',
     'url:',
     'ca:',
@@ -32,7 +32,7 @@ $options = getopt(
     'password:',
     'server:',
     'dn:',
-  )
+  ]
 );
 
 if (isset($options['h']) || isset($options['help'])) {
@@ -64,17 +64,17 @@ if (isset($options['url'])) {
   $options['url'] = 'https://localhost/fusiondirectory/jsonrpc.php';
 }
 
-$ssl_options = array(
-);
-$http_options = array(
+$ssl_options = [
+];
+$http_options = [
   'timeout' => 10
-);
+];
 
 if (isset($options['ca'])) {
   $ssl_options['cafile'] = $options['ca'];
 }
 
-function codeEntiteToldapUuidCallback($codeEntite)
+function codeEntiteToldapUuidCallback ($codeEntite)
 {
   global $client, $session_id, $configuration;
 
@@ -84,7 +84,7 @@ function codeEntiteToldapUuidCallback($codeEntite)
   $entites = $client->ls(
     $session_id,
     'entite',
-    array('supannRefId' => '*', 'supannTypeEntite' => 1, 'dn' => 'raw'),
+    ['supannRefId' => '*', 'supannTypeEntite' => 1, 'dn' => 'raw'],
     NULL,
     '(supannCodeEntite='.$codeEntite.')'
   );
@@ -115,7 +115,7 @@ try {
   $configurations = $client->ls(
     $session_id,
     'configuration',
-    array(
+    [
       'fdSinapsEnabled'                     => 1,
       'fdSinapsAcquisitionURL'              => 1,
       'fdSinapsLogin'                       => 1,
@@ -123,7 +123,7 @@ try {
       'fdSinapsUuidPrefix'                  => 1,
       'fdSinapsAcquisitionTypeExterne'      => 1,
       'fdSinapsAcquisitionContactMethodMap' => '*',
-    )
+    ]
   );
   $configuration = reset($configurations);
   if (isset($configuration['fdSinapsEnabled']) && ($configuration['fdSinapsEnabled'] == 'FALSE')) {
@@ -147,7 +147,7 @@ try {
 
   $attributes = sinapsRequestAcquisition::$attributes;
 
-  $mapping = array();
+  $mapping = [];
   foreach ($configuration['fdSinapsAcquisitionContactMethodMap'] as $field) {
     list($ldapField, $sinapsType) = explode('|', $field, 2);
 
diff --git a/sinaps/contrib/test/testEndPoint.php b/sinaps/contrib/test/testEndPoint.php
index cbfb08db62..a89779bf81 100644
--- a/sinaps/contrib/test/testEndPoint.php
+++ b/sinaps/contrib/test/testEndPoint.php
@@ -9,17 +9,17 @@ sendPost(
   file_get_contents($argv[2])
 );
 
-function sendPost($url, $xml)
+function sendPost ($url, $xml)
 {
   // performs the HTTP(S) POST
-  $opts = array (
-    'http' => array (
+  $opts = [
+    'http' => [
       'method'  => 'POST',
       'header'  => 'Content-type: application/xml',
       'content' => $xml,
-    ),
+    ],
     'ssl' => []
-  );
+  ];
 
   $context  = stream_context_create($opts);
   $fp = fopenWithErrorHandling($url, 'r', FALSE, $context);
@@ -41,9 +41,9 @@ function sendPost($url, $xml)
 }
 
 /* Calls fopen, gives errors as an array if any, file handle if successful */
-function fopenWithErrorHandling(...$args)
+function fopenWithErrorHandling (...$args)
 {
-  $errors = array();
+  $errors = [];
   set_error_handler(
     function ($errno, $errstr, $errfile, $errline, $errcontext) use (&$errors)
     {
diff --git a/sinaps/html/sinaps.php b/sinaps/html/sinaps.php
index 957c3c7ec4..1e118a9f93 100644
--- a/sinaps/html/sinaps.php
+++ b/sinaps/html/sinaps.php
@@ -32,12 +32,12 @@ class sinapsHandler extends standAlonePage
 
   protected $request;
 
-  function readLdapConfig()
+  function readLdapConfig ()
   {
     global $config;
 
     $this->dumpFolder             = $config->get_cfg_value('SinapsDumpFolder');
-    $this->tokens                 = $config->get_cfg_value('SinapsFDToken', array());
+    $this->tokens                 = $config->get_cfg_value('SinapsFDToken', []);
 
     if ($config->get_cfg_value('SinapsEnabled') != 'TRUE') {
       $this->returnError(400, 1, 'SINAPS integration is disabled'."\n");
@@ -49,7 +49,7 @@ class sinapsHandler extends standAlonePage
     return TRUE;
   }
 
-  function execute()
+  function execute ()
   {
     global $config;
 
@@ -82,7 +82,7 @@ class sinapsHandler extends standAlonePage
     }
   }
 
-  function dumpFile($fileName, $fileContent)
+  function dumpFile ($fileName, $fileContent)
   {
     if (empty($this->dumpFolder)) {
       return;
@@ -104,7 +104,7 @@ class sinapsHandler extends standAlonePage
     }
   }
 
-  function returnError($responseCode, $codeAcquittement, $errorText, $dump = TRUE)
+  function returnError ($responseCode, $codeAcquittement, $errorText, $dump = TRUE)
   {
     $acquittement = sinapsRequest::acquittementFonctionnel($responseCode, $codeAcquittement, $errorText);
     echo "$acquittement\n";
@@ -120,7 +120,7 @@ class sinapsHandler extends standAlonePage
     exit();
   }
 
-  function outputAcquittementTechnique($acquittement)
+  function outputAcquittementTechnique ($acquittement)
   {
     echo "$acquittement\n";
     $this->dumpFile(
diff --git a/sinaps/include/class_sinapsDiffusionHandlerJob.inc b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
index 2f23f40090..fc87d6bf5f 100644
--- a/sinaps/include/class_sinapsDiffusionHandlerJob.inc
+++ b/sinaps/include/class_sinapsDiffusionHandlerJob.inc
@@ -32,7 +32,7 @@ class sinapsDiffusionHandlerJob
 
   protected $request;
 
-  function __construct(sinapsRequest $request)
+  function __construct (sinapsRequest $request)
   {
     global $config;
 
@@ -46,31 +46,31 @@ class sinapsDiffusionHandlerJob
     $this->identifiantApplication     = $config->get_cfg_value('SinapsIdentifiantApplication');
     $this->userBase                   = $config->get_cfg_value('SinapsUserBase', $config->current['BASE']);
     $this->userTemplate               = $config->get_cfg_value('SinapsUserTemplate');
-    $this->identifiantApplicationSync = $config->get_cfg_value('SinapsIdentifiantApplicationSync', array());
-    $this->userRoles                  = $config->get_cfg_value('SinapsUserRole', array('PR', 'EXT/PRA'));
+    $this->identifiantApplicationSync = $config->get_cfg_value('SinapsIdentifiantApplicationSync', []);
+    $this->userRoles                  = $config->get_cfg_value('SinapsUserRole', ['PR', 'EXT/PRA']);
 
-    $this->userMapping = array();
-    foreach ($config->get_cfg_value('SinapsUserDiffusionMap', array()) as $line) {
+    $this->userMapping = [];
+    foreach ($config->get_cfg_value('SinapsUserDiffusionMap', []) as $line) {
       list($sinaps, $tab, $field) = explode('|', $line);
-      $this->userMapping[$sinaps] = array($tab,$field);
+      $this->userMapping[$sinaps] = [$tab,$field];
     }
-    $this->structureMapping = array();
-    foreach ($config->get_cfg_value('SinapsStructureDiffusionMap', array()) as $line) {
+    $this->structureMapping = [];
+    foreach ($config->get_cfg_value('SinapsStructureDiffusionMap', []) as $line) {
       list($sinaps, $tab, $field) = explode('|', $line);
-      $this->structureMapping[$sinaps] = array($tab,$field);
+      $this->structureMapping[$sinaps] = [$tab,$field];
     }
   }
 
-  function handleRequest()
+  function handleRequest ()
   {
     if ($this->request->codeOperation() != 'DIFFUSION') {
       throw new FusionDirectoryException('Invalid operation '.$this->request->codeOperation());
     }
 
     if ($this->request->codeDomaine() == 'STRUCTURE') {
-      $this->handleStructureDiffusion($this->request->getSupannEntiteValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite'), $this->structureMapping));
+      $this->handleStructureDiffusion($this->request->getSupannEntiteValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, [$this, 'ldapUuidToCodeEntite'], $this->structureMapping));
     } elseif ($this->request->codeDomaine() == 'PERSONNE') {
-      $this->handlePersonneDiffusion($this->request->getUserValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, array($this, 'ldapUuidToCodeEntite'), $this->userRoles, $this->userMapping));
+      $this->handlePersonneDiffusion($this->request->getUserValues($this->identifiantApplication, $this->identifiantApplicationSync, $this->uuidPrefix, [$this, 'ldapUuidToCodeEntite'], $this->userRoles, $this->userMapping));
     } else {
       throw new FusionDirectoryException('Invalid domain '.$this->request->codeDomaine());
     }
@@ -84,7 +84,7 @@ class sinapsDiffusionHandlerJob
     if (!preg_match('/^{'.$this->uuidPrefix.'}/', $uuid)) {
       $uuid = '{'.$this->uuidPrefix.'}'.$uuid;
     }
-    $entites = objects::ls(array('entite','etablissement'), array('supannCodeEntite' => 1, 'supannTypeEntite' => 1), NULL, '(supannRefId='.$uuid.')');
+    $entites = objects::ls(['entite','etablissement'], ['supannCodeEntite' => 1, 'supannTypeEntite' => 1], NULL, '(supannRefId='.$uuid.')');
     if (empty($entites)) {
       $error = 'Could not find entite '.$uuid;
       $this->sendAcquittementFonctionnel(sinapsRequest::acquittementFonctionnel(200, 10, $error));
@@ -105,7 +105,7 @@ class sinapsDiffusionHandlerJob
     }
   }
 
-  public static function dumpFile($fileName, $fileContent)
+  public static function dumpFile ($fileName, $fileContent)
   {
     global $config;
     $dumpFolder = $config->get_cfg_value('SinapsDumpFolder');
@@ -130,11 +130,11 @@ class sinapsDiffusionHandlerJob
     }
   }
 
-  function handleStructureDiffusion($values)
+  function handleStructureDiffusion ($values)
   {
     $uuid     = $values['entite']['supannRefId'][0];
     $idObjApp = preg_replace('/^{'.$this->uuidPrefix.'}/', '', $uuid);
-    $entites  = objects::ls('entite', array('supannRefId' => '*'), NULL, '(supannRefId='.$uuid.')');
+    $entites  = objects::ls('entite', ['supannRefId' => '*'], NULL, '(supannRefId='.$uuid.')');
     $message  = 'Entite created';
     if (empty($entites)) {
       $dn = '';
@@ -162,11 +162,11 @@ class sinapsDiffusionHandlerJob
     }
   }
 
-  function handlePersonneDiffusion($values)
+  function handlePersonneDiffusion ($values)
   {
     $uuid     = $values['supannAccount']['supannRefId'][0];
     $idObjApp = preg_replace('/^{'.$this->uuidPrefix.'}/', '', $uuid);
-    $users    = objects::ls('user', array('supannRefId' => '*'), NULL, '(supannRefId='.$uuid.')');
+    $users    = objects::ls('user', ['supannRefId' => '*'], NULL, '(supannRefId='.$uuid.')');
     $message  = 'User created';
     if (!empty($users)) {
       if (count($users) > 1) {
@@ -209,7 +209,7 @@ class sinapsDiffusionHandlerJob
     }
   }
 
-  function fillObject($type, $values, &$dn)
+  function fillObject ($type, $values, &$dn)
   {
     global $config;
 
@@ -234,7 +234,7 @@ class sinapsDiffusionHandlerJob
         $template = new template($type, $this->userTemplate);
         $error    = $template->deserialize($values);
         if ($error !== TRUE) {
-          return array($error);
+          return [$error];
         }
         $tabobject  = $template->apply();
         $errors     = $tabobject->save();
@@ -258,7 +258,7 @@ class sinapsDiffusionHandlerJob
     }
     foreach ($values as $tab => $tabvalues) {
       if (!isset($tabobject->by_object[$tab])) {
-        return array('This tab does not exists: "'.$tab.'"');
+        return ['This tab does not exists: "'.$tab.'"'];
       }
       if ($tabvalues === FALSE) {
         if (is_subclass_of($tabobject->by_object[$tab], 'simplePlugin') &&
@@ -307,14 +307,14 @@ class sinapsDiffusionHandlerJob
     return TRUE;
   }
 
-  protected function lockUser($dn)
+  protected function lockUser ($dn)
   {
     global $config;
 
     // Try to lock the entry
     $ldap   = $config->get_ldap_link();
-    $errors = array();
-    $ldap->cat($dn, array('userPassword'));
+    $errors = [];
+    $ldap->cat($dn, ['userPassword']);
     if ($ldap->count() == 1) {
       // We can't lock empty passwords.
       $val = $ldap->fetch();
@@ -349,7 +349,7 @@ class sinapsDiffusionHandlerJob
     return $errors;
   }
 
-  function sendAcquittementFonctionnel($xml)
+  function sendAcquittementFonctionnel ($xml)
   {
     static::dumpFile(
       $this->request->identifiantTransaction().'-acquittement.xml',
@@ -359,14 +359,14 @@ class sinapsDiffusionHandlerJob
     exit();
   }
 
-  public static function sendPostRequest($url, $user, $password, $data)
+  public static function sendPostRequest ($url, $user, $password, $data)
   {
     $ch = curl_init();
 
     curl_setopt($ch, CURLOPT_URL,         $url);
     curl_setopt($ch, CURLOPT_POST,        1);
     curl_setopt($ch, CURLOPT_POSTFIELDS,  $data);
-    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
+    curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: text/xml']);
     curl_setopt($ch, CURLOPT_USERPWD, "$user:$password");
     curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
 
diff --git a/sinaps/include/class_sinapsRequest.inc b/sinaps/include/class_sinapsRequest.inc
index 1079b3ad9c..b547c8cdae 100644
--- a/sinaps/include/class_sinapsRequest.inc
+++ b/sinaps/include/class_sinapsRequest.inc
@@ -26,7 +26,7 @@ class sinapsRequest
 {
   protected $data;
 
-  public function __construct($xml)
+  public function __construct ($xml)
   {
     $this->data = new SimpleXMLElement($xml);
     if (!isset($this->data->domaine)) {
@@ -46,37 +46,37 @@ class sinapsRequest
     }
   }
 
-  public function codeDomaine()
+  public function codeDomaine ()
   {
     return $this->data->domaine['code'];
   }
 
-  public function codeOperation()
+  public function codeOperation ()
   {
     return $this->data->domaine->donnees->operation['codeOperation'];
   }
 
-  public function operationVersion()
+  public function operationVersion ()
   {
     return $this->data->domaine->donnees->operation['version'];
   }
 
-  public function identifiantTransaction()
+  public function identifiantTransaction ()
   {
     return $this->data->domaine->identifiantTransaction;
   }
 
-  public function getOperationStructure()
+  public function getOperationStructure ()
   {
     return $this->data->domaine->donnees->operation->structure;
   }
 
-  public function getOperationPersonne()
+  public function getOperationPersonne ()
   {
     return $this->data->domaine->donnees->operation->personne;
   }
 
-  public static function acquittementFonctionnel($responseCode = 200, $codeAcquittement = 0, $message = '', $identifiantObjApp = NULL, $synchrone = TRUE)
+  public static function acquittementFonctionnel ($responseCode = 200, $codeAcquittement = 0, $message = '', $identifiantObjApp = NULL, $synchrone = TRUE)
   {
     $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?>
     <Acquittement xmlns:acq="http://referentiels.SINAPS.amue.fr/acquittementFonctionnel">
@@ -93,8 +93,8 @@ class sinapsRequest
     if ($synchrone) {
       /* Hack because SINAPS API makes no sense and needs a prefix for Acquittement only for synchrone mode */
       return preg_replace(
-        array('|<Acquittement |',   '|</Acquittement>$|'),
-        array('<acq:Acquittement ', '</acq:Acquittement>'),
+        ['|<Acquittement |',   '|</Acquittement>$|'],
+        ['<acq:Acquittement ', '</acq:Acquittement>'],
         $xml->asXML(),
         1
       );
@@ -103,7 +103,7 @@ class sinapsRequest
     }
   }
 
-  public function acquittementTechnique($responseCode = 200, $message = '')
+  public function acquittementTechnique ($responseCode = 200, $message = '')
   {
     $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?>
     <WebServiceHTTPResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="acquittementTechnique.xsd">
@@ -115,17 +115,17 @@ class sinapsRequest
     return $xml->asXML();
   }
 
-  public function getSupannEntiteValues($identifiantApplication, $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $mapping)
+  public function getSupannEntiteValues ($identifiantApplication, $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $mapping)
   {
     $structure  = $this->getOperationStructure();
     $now        = new DateTime();
-    $values = array(
-      'entite' => array(
-        'supannRefId'               => array(),
+    $values = [
+      'entite' => [
+        'supannRefId'               => [],
         'postalAddress'             => '',
-        'supannCodeEntiteParent'    => array(),
-      ),
-    );
+        'supannCodeEntiteParent'    => [],
+      ],
+    ];
 
     $uuid = '';
 
@@ -196,32 +196,32 @@ class sinapsRequest
     return $values;
   }
 
-  public function getUserValues($identifiantApplication, array $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $userRoles, array $mapping)
+  public function getUserValues ($identifiantApplication, array $identifiantApplicationSync, $uuidPrefix, $ldapUuidToCodeEntiteCallback, array $userRoles, array $mapping)
   {
     $personne   = $this->getOperationPersonne();
     $now        = new DateTime();
-    $values = array(
+    $values = [
       'lock'          => FALSE,
-      'user'          => array(
+      'user'          => [
         'homePhone'                 => '',
         'postalAddress'             => '',
         'homePostalAddress'         => '',
         'employeeNumber'            => '',
-      ),
-      'supannAccount' => array(
-        'supannRefId'                       => array(),
-        'supannEntiteAffectation'           => array(),
-        'supannRoleGenerique'               => array(),
-        'supannTypeEntiteAffectation'       => array(),
-        'supannRoleEntite'                  => array(),
-        'supannActivite'                    => array(),
+      ],
+      'supannAccount' => [
+        'supannRefId'                       => [],
+        'supannEntiteAffectation'           => [],
+        'supannRoleGenerique'               => [],
+        'supannTypeEntiteAffectation'       => [],
+        'supannRoleEntite'                  => [],
+        'supannActivite'                    => [],
         'supannEmpCorps'                    => '',
         'supannEntiteAffectationPrincipale' => '',
-      ),
-      'personalInfo'  => array(
-        'fdPrivateMail' => array(),
-      ),
-    );
+      ],
+      'personalInfo'  => [
+        'fdPrivateMail' => [],
+      ],
+    ];
 
     $uuid = '';
 
@@ -245,7 +245,7 @@ class sinapsRequest
     array_unshift($values['supannAccount']['supannRefId'], '{'.$uuidPrefix.'}'.$uuid);
 
     /* Check if the user still has at least one role which means he exists, otherwise this is a deletion */
-    $userRoleExists = array();
+    $userRoleExists = [];
     foreach ($userRoles as $typeRole) {
       if (preg_match('|^([^/]+)/(.+)$|', $typeRole, $m)) {
         $userRoleExists[$m[1]][] = $m[2];
@@ -416,14 +416,14 @@ class sinapsRequest
       }
     }
 
-    foreach (array('supannRefId','supannEntiteAffectation','supannRoleGenerique','supannTypeEntiteAffectation','supannRoleEntite','supannActivite') as $arrayattribute) {
+    foreach (['supannRefId','supannEntiteAffectation','supannRoleGenerique','supannTypeEntiteAffectation','supannRoleEntite','supannActivite'] as $arrayattribute) {
       $values['supannAccount'][$arrayattribute] = array_values(array_unique($values['supannAccount'][$arrayattribute]));
     }
 
     return $values;
   }
 
-  protected function convertAddress(SimpleXMLElement $address)
+  protected function convertAddress (SimpleXMLElement $address)
   {
     $adresse = '';
     if (!empty($address->adresseFR)) {
@@ -477,7 +477,7 @@ class sinapsRequest
     return $adresse;
   }
 
-  protected function checkValidite(SimpleXMLElement $object, DateTime $now)
+  protected function checkValidite (SimpleXMLElement $object, DateTime $now)
   {
     if ($object->dateDebutValidite) {
       $dateDebutValidite = new DateTime($object->dateDebutValidite);
@@ -496,7 +496,7 @@ class sinapsRequest
     return TRUE;
   }
 
-  protected function getUUIDFromReferenceCroisee($identifiantApplication, $referenceCroisee)
+  protected function getUUIDFromReferenceCroisee ($identifiantApplication, $referenceCroisee)
   {
     foreach ($referenceCroisee->identifiantsExternes as $ref) {
       if ($ref->identifiantApplication == $identifiantApplication) {
@@ -507,7 +507,7 @@ class sinapsRequest
     return '';
   }
 
-  public static function genUUID()
+  public static function genUUID ()
   {
     //UUID v4
     return sprintf(
diff --git a/sinaps/include/class_sinapsRequestAcquisition.inc b/sinaps/include/class_sinapsRequestAcquisition.inc
index 376c080ac9..adb4df591f 100644
--- a/sinaps/include/class_sinapsRequestAcquisition.inc
+++ b/sinaps/include/class_sinapsRequestAcquisition.inc
@@ -23,12 +23,12 @@ class sinapsRequestAcquisition
   protected $data;
   protected $identifiantTransaction;
 
-  public static $attributes = array(
+  public static $attributes = [
     'supannRefId'                       => '*',
     'supannEntiteAffectationPrincipale' => 1,
-  );
+  ];
 
-  public function __construct()
+  public function __construct ()
   {
     $this->identifiantTransaction = sinapsRequest::genUUID();
     $xml = '<?xml version="1.0" encoding="UTF-8" ?>
@@ -46,7 +46,7 @@ class sinapsRequestAcquisition
     $this->data = new SimpleXMLElement($xml);
   }
 
-  public function fill(array $user, string $uuidPrefix, string $typeExterne, array $methodeContactMapping, $codeEntiteToldapUuidCallback, $contractEnded = FALSE)
+  public function fill (array $user, string $uuidPrefix, string $typeExterne, array $methodeContactMapping, $codeEntiteToldapUuidCallback, $contractEnded = FALSE)
   {
     $personne = $this->data->domaine->donnees->operation->personne;
 
@@ -87,7 +87,7 @@ class sinapsRequestAcquisition
     $personne->rattachements->rattachement->roles->role->externe->typeExterne   = $typeExterne;
   }
 
-  public function getXML()
+  public function getXML ()
   {
     return $this->data->asXML();
   }
diff --git a/sinaps/personal/sinaps/class_sinapsUser.inc b/sinaps/personal/sinaps/class_sinapsUser.inc
index b8040d320a..7785d5ed5f 100644
--- a/sinaps/personal/sinaps/class_sinapsUser.inc
+++ b/sinaps/personal/sinaps/class_sinapsUser.inc
@@ -21,29 +21,29 @@
 
 class sinapsUser extends simplePlugin
 {
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Sinaps'),
       'plTitle'         => _('Sinaps'),
       'plDescription'   => _('Used to send acquisition request for users'),
       'plSelfModify'    => FALSE,
-      'plObjectClass'   => array(),
-      'plObjectType'    => array('user'),
+      'plObjectClass'   => [],
+      'plObjectType'    => ['user'],
       'plIcon'        => 'geticon.php?context=applications&icon=sinaps&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=sinaps&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Sinaps'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new DisplayAttribute (
             '', '',
             'sinaps_explanation', FALSE,
@@ -53,9 +53,9 @@ class sinapsUser extends simplePlugin
             _('Force Sinaps Acquisition'), _('Send Acquisition data even if data was not modified in FusionDirectory'),
             'force_acquisition', FALSE
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -73,8 +73,8 @@ class sinapsUser extends simplePlugin
      * This is done here to make sure sinapsRequestAcquisition does not perform LDAP searches by itself
      * */
     $entites = objects::ls(
-      array('entite','etablissement'),
-      array('supannRefId' => '*', 'dn' => 'raw'),
+      ['entite','etablissement'],
+      ['supannRefId' => '*', 'dn' => 'raw'],
       NULL,
       '(supannCodeEntite='.$codeEntite.')'
     );
@@ -107,11 +107,11 @@ class sinapsUser extends simplePlugin
     }
 
     if ($config->get_cfg_value('SinapsEnabled', 'FALSE') == 'FALSE') {
-      return array();
+      return [];
     }
 
     if ($config->get_cfg_value('SinapsAcquisitionURL', '') == '') {
-      return array('Sinaps acquisition URL is not filled in FusionDirectory configuration');
+      return ['Sinaps acquisition URL is not filled in FusionDirectory configuration'];
     }
 
     $contractEnded = FALSE;
@@ -130,8 +130,8 @@ class sinapsUser extends simplePlugin
 
     $attributes = sinapsRequestAcquisition::$attributes;
 
-    $mapping = array();
-    foreach ($config->get_cfg_value('SinapsAcquisitionContactMethodMap', array()) as $field) {
+    $mapping = [];
+    foreach ($config->get_cfg_value('SinapsAcquisitionContactMethodMap', []) as $field) {
       list($ldapField, $sinapsType) = explode('|', $field, 2);
 
       $mapping[$ldapField]    = $sinapsType;
@@ -153,7 +153,7 @@ class sinapsUser extends simplePlugin
         }
       }
       if (!$sync) {
-        return array();
+        return [];
       }
     }
 
@@ -168,7 +168,7 @@ class sinapsUser extends simplePlugin
 
     try {
       $request = new sinapsRequestAcquisition();
-      $request->fill($user, $config->get_cfg_value('SinapsUuidPrefix', 'LDAPUUID'), $config->get_cfg_value('SinapsAcquisitionTypeExterne', 'FD'), $mapping, array($this, 'codeEntiteToldapUuidCallback'), $contractEnded);
+      $request->fill($user, $config->get_cfg_value('SinapsUuidPrefix', 'LDAPUUID'), $config->get_cfg_value('SinapsAcquisitionTypeExterne', 'FD'), $mapping, [$this, 'codeEntiteToldapUuidCallback'], $contractEnded);
       $xml = $request->getXml();
       $date = date('Y-m-d_H-i-s');
       sinapsDiffusionHandlerJob::dumpFile($date.'_acquittement.xml', $xml);
diff --git a/sogo/admin/sogo/class_sogoManagement.inc b/sogo/admin/sogo/class_sogoManagement.inc
index 6716fecd79..5673288f45 100644
--- a/sogo/admin/sogo/class_sogoManagement.inc
+++ b/sogo/admin/sogo/class_sogoManagement.inc
@@ -21,26 +21,26 @@
 class sogoManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('sogoResource');
+  protected $objectTypes  = ['sogoResource'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = TRUE;
   protected $baseMode               = TRUE;
 
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('SOGo'),
       'plDescription' => _('SOGo management'),
       'plIcon'        => 'geticon.php?context=applications&icon=sogo&size=48',
       'plSection'     => 'systems',
       'plPriority'    => 50,
-      'plCategory'    => array('sogo' => array('description'  => _('SOGo'),
-                                              'objectClass'  => array('sogoResource'))),
-      'plManages'     => array('sogoResource'),
+      'plCategory'    => ['sogo' => ['description'  => _('SOGo'),
+                                              'objectClass'  => ['sogoResource']]],
+      'plManages'     => ['sogoResource'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/sogo/admin/sogo/class_sogoResource.inc b/sogo/admin/sogo/class_sogoResource.inc
index 13d4401994..6723ec069b 100644
--- a/sogo/admin/sogo/class_sogoResource.inc
+++ b/sogo/admin/sogo/class_sogoResource.inc
@@ -22,36 +22,36 @@ class sogoResource extends simplePlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('inetOrgPerson','top','CalendarResource');
+  var $objectclasses = ['inetOrgPerson','top','CalendarResource'];
 
   /* Return plugin information for acl handling */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('SOGo resource'),
       'plDescription' => _('SOGo resource'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('sogoResource' => array(
+      'plObjectType'  => ['sogoResource' => [
         'name'        => _('SOGo resource'),
         'filter'      => 'objectClass=CalendarResource',
         'aclCategory' => 'sogo',
         'ou'          => get_ou('sogoRDN'),
         'icon'        => 'geticon.php?context=applications&icon=sogo&size=16',
         'mainAttr'    => 'uid'
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('SOGo resource'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('sogoRDN')),
           new HostNameAttribute (
             _('Entry name'), _('Account name'),
@@ -75,11 +75,11 @@ class sogoResource extends simplePlugin
           new SelectAttribute (
             _('Kind'), _('Kind'),
             'Kind', FALSE,
-            array('location', 'thing', 'group')
+            ['location', 'thing', 'group']
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -92,7 +92,7 @@ class sogoResource extends simplePlugin
     $this->attributesAccess['cn']->setValue($this->attributesAccess['uid']->getValue());
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->attributesAccess['sn']->setValue($this->attributesAccess['uid']->getValue());
diff --git a/sogo/config/sogo/class_sogoConfig.inc b/sogo/config/sogo/class_sogoConfig.inc
index abe378d86e..5cdc2f90fa 100644
--- a/sogo/config/sogo/class_sogoConfig.inc
+++ b/sogo/config/sogo/class_sogoConfig.inc
@@ -20,35 +20,35 @@
 
 class sogoConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSogoPluginConf');
+  var $objectclasses  = ['fdSogoPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('SOGo configuration'),
       'plDescription'   => _('FusionDirectory sogo plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('SOGo'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('SOGo RDN'), _('Branch in which SOGo objects will be stored'),
             'fdSogoRDN', TRUE,
             'ou=resources'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
index 74eee4c225..005b64338b 100644
--- a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
+++ b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
@@ -23,17 +23,17 @@
 class serviceSpamAssassin extends simpleService {
 
   /* This plugin only writes its objectClass */
-  var $objectclasses = array('goSpamServer');
+  var $objectclasses = ['goSpamServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Spamassassin service'),
       'plDescription' => _('Spamassassin service').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=spamassassin&size=16',
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -41,10 +41,10 @@ class serviceSpamAssassin extends simpleService {
   */
   static function getAttributesInfo ()
   {
-    return array (
-      'section1' => array (
+    return  [
+      'section1' => [
         'name'  => _('Spam tagging'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('Rewrite header'), _('Rewrite header'),
             'saRewriteHeader'
@@ -52,7 +52,7 @@ class serviceSpamAssassin extends simpleService {
           new SelectAttribute (
             _('Required score'), _('Select required score to tag mail as spam'),
             'saRequiredScore', FALSE,
-            array (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)
+             [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
           ),
           new SetAttribute (
             new StringAttribute (
@@ -60,11 +60,11 @@ class serviceSpamAssassin extends simpleService {
               'saTrustedNetworks'
             )
           )
-        )
-      ),
-      'section2' => array (
+        ]
+      ],
+      'section2' => [
         'name'  => _('Flags'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Enable use of bayes filtering'), '',
             'flag_enable_bayes', FALSE,
@@ -95,35 +95,35 @@ class serviceSpamAssassin extends simpleService {
             'flag_enable_pyzor', FALSE,
             FALSE, '', 'P', ''
           ),
-          new FlagsAttribute ('saFlags', array(
+          new FlagsAttribute ('saFlags', [
             'flag_enable_bayes',
             'flag_bayes_autolearn',
             'flag_enable_rblcheck',
             'flag_enable_razor',
             'flag_enable_ddc',
             'flag_enable_pyzor'
-          ))
-        )
-      ),
-      'section3' => array (
+          ])
+        ]
+      ],
+      'section3' => [
         'name' => _('Rules'),
-        'attrs' => array (
+        'attrs' => [
           new SetAttribute (
             new CompositeAttribute (
               _('Edit spam rule'),
               'saRule',
-              array (
+               [
                 new StringAttribute (_('Name'), '', 'ruleName'),
                 new TextAreaAttribute (_('Rule'), '', 'ruleDesc'),
-              ),
+              ],
               '/^([^:]*):(.*)$/',
               '%s:%s',
               '', _('Edit spam rule')
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 }
 
diff --git a/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc b/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
index 6370806577..d171a92904 100644
--- a/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
+++ b/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
@@ -21,56 +21,56 @@
 class spamAssassinAccount extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('fdSpamAssassinUser');
+  var $objectclasses = ['fdSpamAssassinUser'];
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Spam rules'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
         //~ A user object will have multiple spamassassin attributes, one for each preference setting.
         //~ The attributes themselves should be stored in the database. A spamassassin LDAP attribute should be set to the name of a SpamAssassin configuration directive followed by the value for the directive, separated by a space.
           new SetAttribute (
             new CompositeAttribute (
               _('SpamAssassin user preferences settings'),
             'fdSpamAssassinRules',
-              array(
+              [
                 new SelectAttribute (
                   _('Directive'),    _('The name of a SpamAssassin configuration directive'),
                   'fdSpamAssassinRules_directive', TRUE,
-                  array('score', 'whitelist_from', 'required_score')
+                  ['score', 'whitelist_from', 'required_score']
                 ),
                 new StringAttribute (
                   _('Value'), _('The value for the directive'),
                   'fdSpamAssassinRules_value'
                 ),
-              ),
+              ],
               '/^(\S*) (.*)$/',
               '%s %s',
               '',
               _('SpamAssassin user rules')
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('SpamAssassin'),
       'plDescription'   => _('Edit user\'s spam rules'),
       'plSelfModify'    => TRUE,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=applications&icon=spamassassin&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=spamassassin&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/squid/personal/squid/class_proxyAccount.inc b/squid/personal/squid/class_proxyAccount.inc
index 3c5d2f4d91..02e2f34408 100644
--- a/squid/personal/squid/class_proxyAccount.inc
+++ b/squid/personal/squid/class_proxyAccount.inc
@@ -29,7 +29,7 @@ class workingTime extends CompositeAttribute
   /*!
    * \brief Write working time values
    */
-  function writeValues($values)
+  function writeValues ($values)
   {
     return $values[0] * 60 + $values[1];
   }
@@ -37,9 +37,9 @@ class workingTime extends CompositeAttribute
   /*!
    * \brief Read working time values
    */
-  function readValues($val)
+  function readValues ($val)
   {
-    $tab = array();
+    $tab = [];
     $val = intval($val);
     $tab[1] = $val % 60;
     $tab[0] = ($val - $tab[1]) / 60;
@@ -52,26 +52,26 @@ class proxyAccount extends simplePlugin
 {
   /* Definitions */
   var $displayHeader    = TRUE;
-  var $objectclasses    = array("gosaProxyAccount");
+  var $objectclasses    = ["gosaProxyAccount"];
 
   /*!
    * \brief  Static  Function returning an ACL information array.
    *
    * \return Array   Returns an ACL array
    */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Proxy'),
       'plDescription'   => _('This allow to store basic squid settings in ldap for each user'),
       'plIcon'          => 'geticon.php?context=applications&icon=squid&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=squid&size=16',
       'plSelfModify'    => TRUE,
       'plPriority'      => 9,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -79,13 +79,13 @@ class proxyAccount extends simplePlugin
    */
   static function getAttributesInfo ()
   {
-    return array(
-      'section1' => array(
+    return [
+      'section1' => [
         'name'      => _('Proxy account'),
         'template'  => get_template_path('proxyAccount.tpl', TRUE, dirname(__FILE__)),
-        'class'     => array('fullwidth'),
+        'class'     => ['fullwidth'],
 
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute(
             _('Filter unwanted content (i.e. pornographic or violence related)'),
             _('filterF'),
@@ -96,10 +96,10 @@ class proxyAccount extends simplePlugin
           new workingTime (
             _('Working Start'),
             'gosaProxyWorkingStart',
-            array (
-              new SelectAttribute ( '',  _('HourStart'),   'hourstart',   TRUE, array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24), 1, array('01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24')),
-              new SelectAttribute ( ':', _('MinuteStart'), 'minutestart', TRUE, array('00','15','30','45'))
-            ),
+             [
+              new SelectAttribute ( '',  _('HourStart'),   'hourstart',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
+              new SelectAttribute ( ':', _('MinuteStart'), 'minutestart', TRUE, ['00','15','30','45'])
+            ],
             // read format (not used)
             '',
             // write format (not used)
@@ -111,20 +111,20 @@ class proxyAccount extends simplePlugin
           new workingTime (
             _('Working Stop'),
             'gosaProxyWorkingStop',
-            array (
-              new SelectAttribute ( _('-'), _('HourStart'), 'hourstop',   TRUE, array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24), 1, array('01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24')),
-              new SelectAttribute ( _(':'), _('MinuteStop'), 'minutestop', TRUE, array('00','15','30','45'))
-            ),
+             [
+              new SelectAttribute ( _('-'), _('HourStart'), 'hourstop',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
+              new SelectAttribute ( _(':'), _('MinuteStop'), 'minutestop', TRUE, ['00','15','30','45'])
+            ],
             '',
             ''
           ),
           new CompositeAttribute (
             _('Restrict proxy usage by quota'),
             'gosaProxyQuota',
-            array(
+            [
               new IntAttribute    ('',  _('Up'), 'quota_size', FALSE, 0, FALSE, 21),
-              new SelectAttribute ('', '', 'quota_unit', FALSE, array('k','m','g'), '', array('KB','MB','GB')),
-            ),
+              new SelectAttribute ('', '', 'quota_unit', FALSE, ['k','m','g'], '', ['KB','MB','GB']),
+            ],
             '/^(\\d+)(.)$/',
             '%d%s',
              // acl
@@ -136,7 +136,7 @@ class proxyAccount extends simplePlugin
             _('per'),
             'gosaProxyQuotaPeriod',
             FALSE,
-            array ('h','d','w','m'), "", array (_("hour"),_("day"),_("week"),_("month"))
+             ['h','d','w','m'], "",  [_("hour"),_("day"),_("week"),_("month")]
           ),
           new BooleanAttribute (
             _('Start Working Hours'),
@@ -156,9 +156,9 @@ class proxyAccount extends simplePlugin
              // acl
             'gosaProxyQuota'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -170,26 +170,26 @@ class proxyAccount extends simplePlugin
     $this->attributesInfo['section1']['attrs']['enableWorkingTime']->setValue(isset($this->attrs['gosaProxyWorkingStart']));
     $this->attributesInfo['section1']['attrs']['enableWorkingTime']->setInLdap(FALSE);
     $this->attributesInfo['section1']['attrs']['enableWorkingTime']->setManagedAttributes(
-      array(
-        'erase' => array(
-          FALSE => array(
+      [
+        'erase' => [
+          FALSE => [
             'gosaProxyWorkingStart',
             'gosaProxyWorkingStop',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
     $this->attributesInfo['section1']['attrs']['enableQuota']->setValue(isset($this->attrs['gosaProxyQuota']));
     $this->attributesInfo['section1']['attrs']['enableQuota']->setInLdap(FALSE);
     $this->attributesInfo['section1']['attrs']['enableQuota']->setManagedAttributes(
-      array(
-        'erase' => array(
-          FALSE => array(
+      [
+        'erase' => [
+          FALSE => [
             'gosaProxyQuota',
             'gosaProxyQuotaPeriod',
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 }
diff --git a/ssh/personal/ssh/class_sshAccount.inc b/ssh/personal/ssh/class_sshAccount.inc
index d75c7bed07..9ce341bef0 100644
--- a/ssh/personal/ssh/class_sshAccount.inc
+++ b/ssh/personal/ssh/class_sshAccount.inc
@@ -43,16 +43,16 @@ class SSHPublicKeyAttribute extends FileTextAreaAttribute
           $type = $match[3];
           break;
       }
-      return array(
+      return [
         $type,
         $fingerprint,
         $comment
-      );
+      ];
     }
     return parent::getArrayValue();
   }
 
-  function readFile($handle)
+  function readFile ($handle)
   {
     $line = fgets($handle);
     if (preg_match($this->format, $line)) {
@@ -63,7 +63,7 @@ class SSHPublicKeyAttribute extends FileTextAreaAttribute
     @fclose($handle);
   }
 
-  function fingerprint($data)
+  function fingerprint ($data)
   {
     $result = md5($data);
     $result = preg_replace('/(..)/', '\1:', $result);
@@ -74,17 +74,17 @@ class SSHPublicKeyAttribute extends FileTextAreaAttribute
 class sshAccount extends simplePlugin
 {
   var $displayHeader = TRUE;
-  var $objectclasses = array('ldapPublicKey');
+  var $objectclasses = ['ldapPublicKey'];
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('SSH Keys'),
         'icon'  => 'geticon.php?context=status&icon=dialog-password&size=16',
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new OrderedArrayAttribute(
             new SSHPublicKeyAttribute(
               '', _('SSH public keys for this user'),
@@ -92,36 +92,36 @@ class sshAccount extends simplePlugin
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit enabled
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('SSH'),
       'plDescription'   => _('Edit user\'s SSH public keys'),
       'plSelfModify'    => TRUE,
-      'plDepends'       => array('posixAccount'),
+      'plDepends'       => ['posixAccount'],
       'plPriority'      => 6,
-      'plObjectType'    => array('user'),
+      'plObjectType'    => ['user'],
       'plIcon'          => 'geticon.php?context=applications&icon=ssh&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=ssh&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
-  function check()
+  function check ()
   {
     $message = parent::check();
 
-    $fingerprints = array();
+    $fingerprints = [];
     $values = $this->attributesAccess['sshPublicKey']->getValue();
     foreach ($values as $value) {
       $this->attributesAccess['sshPublicKey']->attribute->setValue($value);
diff --git a/subcontracting/personal/subcontracting/class_subContracting.inc b/subcontracting/personal/subcontracting/class_subContracting.inc
index d9e3789248..13d7272c84 100644
--- a/subcontracting/personal/subcontracting/class_subContracting.inc
+++ b/subcontracting/personal/subcontracting/class_subContracting.inc
@@ -25,27 +25,27 @@ class subContractingAccount extends simplePlugin
   var $displayHeader = TRUE;
 
   // Here we indicate which LDAP classes our plugin is using.
-  var $objectclasses = array('fdSubcontractingPerson');
+  var $objectclasses = ['fdSubcontractingPerson'];
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Subcontracting'),
       'plDescription' => _('Information needed for sub contracts'),
-      'plObjectType'  => array('user'),
+      'plObjectType'  => ['user'],
       'plIcon'        => 'geticon.php?context=applications&icon=subcontracting&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=subcontracting&size=16',
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('SubContracting Information'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Intermediate'),
             _('Contact to the final customer'),
@@ -81,9 +81,9 @@ class subContractingAccount extends simplePlugin
             FALSE,
             ''
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/sudo/admin/sudo/class_sudoGeneric.inc b/sudo/admin/sudo/class_sudoGeneric.inc
index deca9c970e..7b8a51fb44 100644
--- a/sudo/admin/sudo/class_sudoGeneric.inc
+++ b/sudo/admin/sudo/class_sudoGeneric.inc
@@ -37,7 +37,7 @@ class SudoUsersGroupsAttribute extends DialogAttribute
 
   function getFilterBlackList ()
   {
-    $used = array();
+    $used = [];
     foreach ($this->value as $name) {
       $str = preg_replace("/^!/", "", $name);
       if (preg_match("/^%/", $str)) {
@@ -57,12 +57,12 @@ class SudoSystemsAttribute extends SystemsAttribute
     $id = $this->getHtmlId();
     $buttons  = $this->renderInputField(
       'submit', 'add'.$id.'_ALL',
-      array('value' => 'ALL')
+      ['value' => 'ALL']
     );
     return $buttons.parent::renderButtons();
   }
 
-  public function htmlIds()
+  public function htmlIds ()
   {
     $id = $this->getHtmlId();
     $ids = parent::htmlIds();
@@ -75,7 +75,7 @@ class SudoSystemsAttribute extends SystemsAttribute
     parent::loadPostValue();
     if ($this->isVisible()) {
       if (isset($_POST['add'.$this->getHtmlId().'_ALL'])) {
-        $this->value = array('ALL');
+        $this->value = ['ALL'];
       }
     }
   }
@@ -114,47 +114,47 @@ class defaultRoleAttribute extends BooleanAttribute
  */
 class sudo extends simplePlugin
 {
-  public $objectclasses = array('sudoRole');
+  public $objectclasses = ['sudoRole'];
   var $mainTab          = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
     $posixGroupClass = (class_available('mixedGroup') ? 'ogroup' : 'posixGroup');
-    return array(
+    return [
       'plShortName'   => _('Sudo'),
       'plDescription' => _('Sudo role'),
       'plIcon'        => 'geticon.php?context=applications&icon=sudo&size=48',
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('sudo' => array(
+      'plObjectType'  => ['sudo' => [
         'name'      => _('Sudo role'),
         'filter'    => 'objectClass=sudoRole',
         'icon'      => 'geticon.php?context=applications&icon=sudo&size=16',
         'ou'        => get_ou('sudoRDN'),
         'tabClass'  => 'sudotabs',
-      )),
-      'plForeignKeys'  => array(
-        'sudoUser'   => array(
-          array('user', 'uid', '(sudoUser=%oldvalue%)'),
-          array($posixGroupClass, 'cn', '(sudoUser=%|%%oldvalue%)'),
-        ),
-        'sudoHost'   => array(
-          array('serverGeneric', 'cn'),
-          array('workstationGeneric', 'cn'),
-          array('terminalGeneric', 'cn'),
-        ),
-      ),
+      ]],
+      'plForeignKeys'  => [
+        'sudoUser'   => [
+          ['user', 'uid', '(sudoUser=%oldvalue%)'],
+          [$posixGroupClass, 'cn', '(sudoUser=%|%%oldvalue%)'],
+        ],
+        'sudoHost'   => [
+          ['serverGeneric', 'cn'],
+          ['workstationGeneric', 'cn'],
+          ['terminalGeneric', 'cn'],
+        ],
+      ],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array (
-      'section1' => array (
+    return  [
+      'section1' => [
         'name'  => _('Role settings'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new defaultRoleAttribute (FALSE),
           new BaseSelectorAttribute (get_ou('sudoRDN')),
           new StringAttribute (
@@ -179,7 +179,7 @@ class sudo extends simplePlugin
               _('User(s) impersonated by sudo'),
               'sudoRunAsUser', FALSE
             ),
-            array('ALL')
+            ['ALL']
           ),
           new SetAttribute (
             new StringAttribute (
@@ -187,12 +187,12 @@ class sudo extends simplePlugin
               _('Group(s) impersonated by sudo'),
               'sudoRunAsGroup', FALSE
             ),
-            array('ALL')
+            ['ALL']
           ),
           new SudoSystemsAttribute (
             _('Systems'), _('A host name, IP address or IP network'),
             'sudoHost', FALSE,
-            array('ALL')
+            ['ALL']
           ),
           new SudoUsersGroupsAttribute (
             _('Users and groups'),
@@ -214,9 +214,9 @@ class sudo extends simplePlugin
             'sudoNotAfter', FALSE,
             ''
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -224,9 +224,9 @@ class sudo extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab);
     $this->attributesAccess['isDefaultRole']->setValue($this->is_default());
     $this->attributesAccess['isDefaultRole']->setManagedAttributes(
-      array(
-        'erase' => array(
-          TRUE => array(
+      [
+        'erase' => [
+          TRUE => [
             'base',
             'sudoUser',
             'sudoCommand',
@@ -234,24 +234,24 @@ class sudo extends simplePlugin
             'sudoRunAsUser',
             'sudoRunAsGroup',
             'sudoOrder',
-          )
-        ),
-        'disable' => array(
-          TRUE => array(
+          ]
+        ],
+        'disable' => [
+          TRUE => [
             'cn'
-          )
-        )
-      )
+          ]
+        ]
+      ]
     );
   }
 
 
-  public function set_default($state)
+  public function set_default ($state)
   {
     $this->attributesAccess['isDefaultRole']->setValue($state);
   }
 
-  public function is_default()
+  public function is_default ()
   {
     return preg_match("/^defaults$/i", $this->attributesAccess['cn']->getValue());
   }
@@ -265,7 +265,7 @@ class sudo extends simplePlugin
     }
   }
 
-  function foreignKeyUpdate($field, $oldvalue, $newvalue, $source)
+  function foreignKeyUpdate ($field, $oldvalue, $newvalue, $source)
   {
     if (($field == 'sudoUser') && (($source['CLASS'] == 'posixGroup') || ($source['CLASS'] == 'ogroup'))) {
       return parent::foreignKeyUpdate($field, '%'.$oldvalue, '%'.$newvalue, $source);
diff --git a/sudo/admin/sudo/class_sudoManagement.inc b/sudo/admin/sudo/class_sudoManagement.inc
index c1013cac5a..123bb53678 100644
--- a/sudo/admin/sudo/class_sudoManagement.inc
+++ b/sudo/admin/sudo/class_sudoManagement.inc
@@ -21,39 +21,39 @@
 
 class sudoManagement extends simpleManagement
 {
-  protected $objectTypes = array('sudo');
+  protected $objectTypes = ['sudo'];
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'sudoUser', 'sudoHost');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'sudoUser', 'sudoHost'];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _("Sudo"),
       'plDescription' => _("Sudo management"),
       'plIcon'        => 'geticon.php?context=applications&icon=sudo&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 45,
-      'plManages'     => array('sudo'),
+      'plManages'     => ['sudo'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function configureHeadpage ()
   {
     parent::configureHeadpage();
     $this->registerAction('new_default', 'newEntry');
-    $this->headpage->xmlData['actionmenu']['action'][0]['action'][] = array(
+    $this->headpage->xmlData['actionmenu']['action'][0]['action'][] = [
       'name'  => 'new_default',
       'type'  => 'entry',
       'image' => 'geticon.php?context=applications&icon=sudo&size=16',
       'label' => 'Default',
       'acl'   => 'sudo/sudo[c]',
-    );
+    ];
   }
 
-  function newEntry($action, array $target, array $all)
+  function newEntry ($action, array $target, array $all)
   {
     $str = parent::newEntry('new_SUDO', $target, $all);
 
diff --git a/sudo/admin/sudo/class_sudoOption.inc b/sudo/admin/sudo/class_sudoOption.inc
index 8dd6f1c037..25b5b216fd 100644
--- a/sudo/admin/sudo/class_sudoOption.inc
+++ b/sudo/admin/sudo/class_sudoOption.inc
@@ -23,7 +23,7 @@ class UsedOptionAttribute extends CompositeAttribute
 {
   function __construct ($description, $ldapName, $acl = "")
   {
-    parent::__construct($description, $ldapName, array(), "", "", $acl);
+    parent::__construct($description, $ldapName, [], "", "", $acl);
   }
 
   function addOption ($name, $params, $value = NULL)
@@ -67,7 +67,7 @@ class UsedOptionAttribute extends CompositeAttribute
          */
         $value = $this->plugin->unescape_command($value);
 
-        $opt = preg_replace(array('/\-$/','/\+$/'), array('_moins','_plus'), $opt);
+        $opt = preg_replace(['/\-$/','/\+$/'], ['_moins','_plus'], $opt);
 
         /* Check if the given value is part of our options list.
            If it is not, add it as type STRING and display a warning.
@@ -79,7 +79,7 @@ class UsedOptionAttribute extends CompositeAttribute
             WARNING_DIALOG
           );
         } else {
-          $this->addOption($opt, sudoOptions::get($opt), array('negate' => $negation,'value' => $value));
+          $this->addOption($opt, sudoOptions::get($opt), ['negate' => $negation,'value' => $value]);
         }
       }
     }
@@ -134,7 +134,7 @@ class AvailableSudoOptionAttribute extends SelectAttribute
     $outputs = array_map(
       function ($choice)
       {
-        $opt = preg_replace(array('/_moins$/','/_plus$/'), array('-','+'), $choice);
+        $opt = preg_replace(['/_moins$/','/_plus$/'], ['-','+'], $choice);
         return sprintf(_("%s (%s)"), $opt, sudoOptions::get($choice)['TYPE']);
       },
       $choices
@@ -159,17 +159,17 @@ class ListSudoOptionAttribute extends SetAttribute
 {
   function __construct ($name, $desc, $defaultValue, $acl = "")
   {
-    parent::__construct(new StringAttribute(preg_replace(array('/_moins$/','/_plus$/'), array('-','+'), $name), $desc, $name, FALSE, $defaultValue, $acl));
+    parent::__construct(new StringAttribute(preg_replace(['/_moins$/','/_plus$/'], ['-','+'], $name), $desc, $name, FALSE, $defaultValue, $acl));
   }
 
   function getValue ()
   {
     if (count($this->value) <= 0) {
-      return preg_replace(array('/_moins$/','/_plus$/'), array('-','+'), $this->getLdapName()).'=';
+      return preg_replace(['/_moins$/','/_plus$/'], ['-','+'], $this->getLdapName()).'=';
     } elseif (count($this->value) > 1) {
-      return preg_replace(array('/_moins$/','/_plus$/'), array('-','+'), $this->getLdapName()).'="'.implode(' ', $this->value).'"';
+      return preg_replace(['/_moins$/','/_plus$/'], ['-','+'], $this->getLdapName()).'="'.implode(' ', $this->value).'"';
     } else {
-      return preg_replace(array('/_moins$/','/_plus$/'), array('-','+'), $this->getLdapName()).'='.$this->value[0];
+      return preg_replace(['/_moins$/','/_plus$/'], ['-','+'], $this->getLdapName()).'='.$this->value[0];
     }
   }
 
@@ -183,12 +183,12 @@ class ListSudoOptionAttribute extends SetAttribute
     if (isset($value['value'])) {
       $value = $value['value'];
       if ($value == "") {
-        $value = array();
+        $value = [];
       } elseif ($value[0] != '"') {
-        $value = array($value);
+        $value = [$value];
       } else {
         $value = preg_split('/ /',
-          preg_replace(array('/^"/','/"$/'), '', $value)
+          preg_replace(['/^"/','/"$/'], '', $value)
         );
       }
     }
@@ -202,15 +202,15 @@ class SudoOptionAttribute extends Attribute
 
   function __construct ($name, $desc, $type, $defaultValue, $acl = "")
   {
-    parent::__construct($name, $desc, $name, FALSE, array('negate' => FALSE, 'value' => $defaultValue), $acl);
+    parent::__construct($name, $desc, $name, FALSE, ['negate' => FALSE, 'value' => $defaultValue], $acl);
     $this->type = $type;
   }
 
   function loadPostValue ()
   {
-    if (in_array($this->type, array('STRING','INTEGER','BOOLEAN'))) {
+    if (in_array($this->type, ['STRING','INTEGER','BOOLEAN'])) {
       if (isset($_POST[$this->getLdapName()])) {
-        $this->setPostValue(array('negate' => FALSE, 'value' => $_POST[$this->getLdapName()]));
+        $this->setPostValue(['negate' => FALSE, 'value' => $_POST[$this->getLdapName()]]);
       }
     } else {
       if (isset($_POST[$this->getLdapName().'_selection'])) {
@@ -221,9 +221,9 @@ class SudoOptionAttribute extends Attribute
         }
 
         if ($sel == "FALSE" || $sel == "TRUE") {
-          $this->setPostValue(array('negate' => FALSE, 'value' => $sel));
+          $this->setPostValue(['negate' => FALSE, 'value' => $sel]);
         } else {
-          $this->setPostValue(array('negate' => $this->postValue['negate'], 'value' => $val));
+          $this->setPostValue(['negate' => $this->postValue['negate'], 'value' => $val]);
         }
       }
     }
@@ -246,9 +246,9 @@ class SudoOptionAttribute extends Attribute
     $id = $this->getLdapName();
     $value = htmlentities($this->value['value'], ENT_COMPAT, 'UTF-8');
     $smarty = get_smarty();
-    $smarty->assign("boolStringOptions", array("FALSE","TRUE","STRING"));
-    $smarty->assign("boolIntOptions", array("FALSE","TRUE","INTEGER"));
-    $smarty->assign("booleanOptions", array("FALSE","TRUE"));
+    $smarty->assign("boolStringOptions", ["FALSE","TRUE","STRING"]);
+    $smarty->assign("boolIntOptions", ["FALSE","TRUE","INTEGER"]);
+    $smarty->assign("booleanOptions", ["FALSE","TRUE"]);
     if ($this->type == "STRING") {
       $display = '<input type="text" name="'.$id.'" id="'.$id.'" value="'.$value.'" />';
     } elseif ($this->type == "LISTS") {
@@ -294,7 +294,7 @@ class SudoOptionAttribute extends Attribute
       if ($value == "FALSE") {
         $option = "!".$option;
       }
-    } elseif (in_array($this->type, array("STRING","INTEGER","LISTS"))) {
+    } elseif (in_array($this->type, ["STRING","INTEGER","LISTS"])) {
       if ($value == "") {
         $option = $name;
       } else {
@@ -303,7 +303,7 @@ class SudoOptionAttribute extends Attribute
       if ($neg) {
         $option = "!".$option;
       }
-    } elseif (in_array($this->type, array("STRING_BOOL","BOOL_INTEGER"))) {
+    } elseif (in_array($this->type, ["STRING_BOOL","BOOL_INTEGER"])) {
       if ($value == "FALSE") {
         $option = "!".$name;
       } elseif ($value == "TRUE") {
@@ -330,29 +330,29 @@ class SudoOptionAttribute extends Attribute
 class sudoOption extends simplePlugin
 {
   var $displayHeader = FALSE;
-  var $objectclasses = array();
+  var $objectclasses = [];
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'available_options' => array(
+      'available_options' => [
         'name'  => _('Available options'),
-        'attrs' => array(
+        'attrs' => [
           new AvailableSudoOptionAttribute (
             _('Option'), _('Add a new sudo option'), 'availableSudoOptions'
           ),
-        )
-      ),
-      'used_options' => array(
+        ]
+      ],
+      'used_options' => [
         'name'  => _('Used sudo role options'),
-        'attrs' => array(
+        'attrs' => [
           new UsedOptionAttribute (_('Used sudo role options'), 'sudoOption')
-        ),
+        ],
         'template' => get_template_path('usedoptions_section.tpl', TRUE, dirname(__FILE__))
-      ),
-    );
+      ],
+    ];
   }
 
   function execute ()
@@ -381,7 +381,7 @@ SCRIPT;
   /*!  \brief   Escape special chars in function parameters.
        @param   String the string to that must be escaped.
    */
-  public function escape_command($str)
+  public function escape_command ($str)
   {
     /* Check if given value is a command (/[a-z]/ ..)
      */
@@ -396,7 +396,7 @@ SCRIPT;
   /*!  \brief   Unescape special chars in function parameters.
        @param   String the string to that must be unescaped.
    */
-  public function unescape_command($str)
+  public function unescape_command ($str)
   {
     /* Check if given value is a command (/[a-z]/ ..)
      */
@@ -404,8 +404,8 @@ SCRIPT;
       $cmd = preg_replace("/^([^ ]*).*$/", "\\1", $str);
       $val = preg_replace("/^[^ ]*(.*)$/", "\\1", $str);
       $val = preg_replace(
-        array("/\\\\\\\\/", "/\\\\,/", "/\\\\:/", "/\\\\=/"),
-        array("\\",",",":","="), $val
+        ["/\\\\\\\\/", "/\\\\,/", "/\\\\:/", "/\\\\=/"],
+        ["\\",",",":","="], $val
       );
       $str = $cmd.$val;
     }
@@ -414,15 +414,15 @@ SCRIPT;
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Options'),
       'plDescription' => _('Sudo options'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('sudo'),
+      'plObjectType'  => ['sudo'],
       'plPriority'    => 2,
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/sudo/admin/sudo/class_sudoOptions.inc b/sudo/admin/sudo/class_sudoOptions.inc
index 5c29fcaa39..82eeb2e0dc 100644
--- a/sudo/admin/sudo/class_sudoOptions.inc
+++ b/sudo/admin/sudo/class_sudoOptions.inc
@@ -22,355 +22,355 @@ class sudoOptions
 {
   private static $options = NULL;
 
-  public static function exists($option)
+  public static function exists ($option)
   {
     static::initOptionsArray();
     return isset(static::$options[$option]);
   }
 
-  public static function get($option)
+  public static function get ($option)
   {
     static::initOptionsArray();
     return static::$options[$option];
   }
 
-  public static function listOptions()
+  public static function listOptions ()
   {
     static::initOptionsArray();
     return array_keys(static::$options);
   }
 
-  private static function initOptionsArray()
+  private static function initOptionsArray ()
   {
     if (static::$options !== NULL) {
       return;
     }
-    static::$options = array(
-      'long_otp_prompt'       => array(
+    static::$options = [
+      'long_otp_prompt'       => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('When validating with a One Time Password (OTP) scheme such as S/Key or OPIE, a two-line prompt is used to make it easier to cut and paste the challenge to a local window')
-      ),
-      'ignore_dot'            => array(
+      ],
+      'ignore_dot'            => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, sudo will ignore \'.\' or \'\' (current dir) in the PATH environment variable')
-      ),
-      'mail_always'           => array(
+      ],
+      'mail_always'           => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('Send mail to the mailto user every time a users runs sudo')
-      ),
-      'mail_badpass'          => array(
+      ],
+      'mail_badpass'          => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('Send mail to the mailto user if the user running sudo does not enter the correct password')
-      ),
-      'mail_no_user'          => array(
+      ],
+      'mail_no_user'          => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, mail will be sent to the mailto user if the invoking user is not in the sudoers file')
-      ),
-      'mail_no_host'          => array(
+      ],
+      'mail_no_host'          => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, mail will be sent to the mailto user if the invoking user exists in the sudoers file, but is not allowed to run commands on the current host')
-      ),
-      'mail_no_perms'         => array(
+      ],
+      'mail_no_perms'         => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, mail will be sent to the mailto user if the invoking user is allowed to use sudo but not for this command')
-      ),
-      'tty_tickets'           => array(
+      ],
+      'tty_tickets'           => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, users must authenticate on a per-tty basis')
-      ),
-      'authenticate'          => array(
+      ],
+      'authenticate'          => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, users must authenticate themselves via a password (or other means of authentication)')
-      ),
-      'root_sudo'             => array(
+      ],
+      'root_sudo'             => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, root is allowed to run sudo too')
-      ),
-      'log_host'              => array(
+      ],
+      'log_host'              => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, the host name will be logged in the (non-syslog) sudo log file')
-      ),
-      'log_year'              => array(
+      ],
+      'log_year'              => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, the four-digit year will be logged in the (non-syslog) sudo log file')
-      ),
-      'shell_noargs'          => array(
+      ],
+      'shell_noargs'          => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set and sudo is invoked with no arguments it acts as if the -s option had been given')
-      ),
-      'set_home'              => array(
+      ],
+      'set_home'              => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If enabled and sudo is invoked with the -s option the HOME environment variable will be set to the home directory of the target user (usually root)')
-      ),
-      'always_set_home'       => array(
+      ],
+      'always_set_home'       => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If enabled, sudo will set the HOME environment variable to the home directory of the target user (usually root)')
-      ),
-      'path_info'             => array(
+      ],
+      'path_info'             => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If the executable is simply not in the user\'s PATH, sudo will tell the user that they are not allowed to run it')
-      ),
-      'preserve_groups'       => array(
+      ],
+      'preserve_groups'       => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, the user\'s existing group vector is left unaltered')
-      ),
-      'fqdn'                  => array(
+      ],
+      'fqdn'                  => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('Set this flag if you want to put fully qualified host names in the sudoers file')
-      ),
-      'insults'               => array(
+      ],
+      'insults'               => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will insult users when they enter an incorrect password')
-      ),
-      'requiretty'            => array(
+      ],
+      'requiretty'            => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will only run when the user is logged in to a real tty')
-      ),
-      'env_editor'            => array(
+      ],
+      'env_editor'            => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, visudo will use the value of the EDITOR or VISUAL environment variables before falling back on the default editor list')
-      ),
-      'rootpw'                => array(
+      ],
+      'rootpw'                => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will prompt for the root password instead of the password of the invoking user')
-      ),
-      'runaspw'               => array(
+      ],
+      'runaspw'               => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will prompt for the password of the user defined by the runas_default option (defaults to root) instead of the password of the invoking user')
-      ),
-      'targetpw'              => array(
+      ],
+      'targetpw'              => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will prompt for the password of the user specified by the -u option (defaults to root) instead of the password of the invoking user')
-      ),
-      'set_logname'           => array(
+      ],
+      'set_logname'           => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, sudo will set the LOGNAME environment variables to the name of the target user')
-      ),
-      'stay_setuid'           => array(
+      ],
+      'stay_setuid'           => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => ''
-      ),
-      'env_reset'             => array(
+      ],
+      'env_reset'             => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'TRUE',
         'DESC'    => _('If set, sudo will run the command in a minimal environment containing the TERM, PATH, HOME, MAIL, SHELL, LOGNAME, USER, USERNAME and SUDO_ variables')
-      ),
-      'use_loginclass'        => array(
+      ],
+      'use_loginclass'        => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, sudo will apply the defaults specified for the target user\'s login class if one exists')
-      ),
-      'noexec'                => array(
+      ],
+      'noexec'                => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, all commands run via sudo will behave as if the NOEXEC tag has been set, unless overridden by a EXEC tag')
-      ),
-      'ignore_local_sudoers'  => array(
+      ],
+      'ignore_local_sudoers'  => [
         'TYPE'    => 'BOOLEAN',
         'DEFAULT' => 'FALSE',
         'DESC'    => _('If set, parsing of /etc/sudoers file will be skipped.')
-      ),
-      'passwd_tries'          => array(
+      ],
+      'passwd_tries'          => [
         'TYPE'    => 'INTEGER',
         'DEFAULT' => 3,
         'DESC'    => _('The number of tries a user gets to enter his/her password before sudo logs the failure and exits')
-      ),
-      'loglinelen'            => array(
+      ],
+      'loglinelen'            => [
         'TYPE'    => 'BOOL_INTEGER',
         'DEFAULT' => 80,
         'DESC'    => _('Number of characters per line for the file log')
-      ),
-      'timestamp_timeout'     => array(
+      ],
+      'timestamp_timeout'     => [
         'TYPE'    => 'BOOL_INTEGER',
         'DEFAULT' => 0,
         'DESC'    => _('Number of minutes that can elapse before sudo will ask for a passwd again')
-      ),
-      'passwd_timeout'        => array(
+      ],
+      'passwd_timeout'        => [
         'TYPE'    => 'BOOL_INTEGER',
         'DEFAULT' => 15,
         'DESC'    => _('Number of minutes before the sudo password prompt times out, or 0 for no timeout')
-      ),
-      'umask'                 => array(
+      ],
+      'umask'                 => [
         'TYPE'    => 'BOOL_INTEGER',
         'DEFAULT' => "0022",
         'DESC'    => _('Umask to use when running the command. Set to FALSE to preserve the user\'s umask')
-      ),
-      'mailsub'               => array(
+      ],
+      'mailsub'               => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '*** SECURITY information for %h ***',
         'DESC'    => _('Subject of the mail sent to the mailto user. The escape %h will expand to the host name of the machine')
-      ),
-      'badpass_message'       => array(
+      ],
+      'badpass_message'       => [
         'TYPE'    => 'STRING',
         'DEFAULT' => 'Sorry, try again',
         'DESC'    => _('Message that is displayed if a user enters an incorrect password')
-      ),
-      'timestampdir'          => array(
+      ],
+      'timestampdir'          => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '/var/run/sudo',
         'DESC'    => _('The directory in which sudo stores its timestamp files')
-      ),
-      'timestampowner'        => array(
+      ],
+      'timestampowner'        => [
         'TYPE'    => 'STRING',
         'DEFAULT' => 'root',
         'DESC'    => _('The owner of the timestamp directory and the timestamps stored therein')
-      ),
-      'passprompt'            => array(
+      ],
+      'passprompt'            => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '[sudo] password for %p: ',
         'DESC'    => _('The default prompt to use when asking for a password; can be overridden via the -p option or the SUDO_PROMPT environment variable')
-      ),
-      'runas_default'         => array(
+      ],
+      'runas_default'         => [
         'TYPE'    => 'STRING',
         'DEFAULT' => 'root',
         'DESC'    => _('The default user to run commands as if the -u option is not specified on the command line')
-      ),
-      'syslog_goodpri'        => array(
+      ],
+      'syslog_goodpri'        => [
         'TYPE'    => 'STRING',
         'DEFAULT' => 'notice',
         'DESC'    => _('Syslog priority to use when user authenticates successfully')
-      ),
-      'syslog_badpri'         => array(
+      ],
+      'syslog_badpri'         => [
         'TYPE'    => 'STRING',
         'DEFAULT' => 'alert',
         'DESC'    => _('Syslog priority to use when user authenticates unsuccessfully')
-      ),
-      'editor'                => array(
+      ],
+      'editor'                => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '/usr/bin/vi',
         'DESC'    => _('A colon separated list of editors allowed to be used with visudo')
-      ),
-      'noexec_file'           => array(
+      ],
+      'noexec_file'           => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '/usr/lib/sudo/sudo_noexec.so',
         'DESC'    => ''
-      ),
-      'secure_path'           => array(
+      ],
+      'secure_path'           => [
         'TYPE'    => 'STRING',
         'DEFAULT' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
         'DESC'    => _('Path used for every command run from sudo. If you don\'t trust the people running sudo to have a sane PATH environment variable you may want to use this.')
-      ),
-      'lecture'               => array(
+      ],
+      'lecture'               => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'once',
         'DESC'    => _('This option controls when a short lecture will be printed along with the password prompt')
-      ),
-      'lecture_file'          => array(
+      ],
+      'lecture_file'          => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => '',
         'DESC'    => _('Path to a file containing an alternate sudo lecture that will be used in place of the standard lecture')
-      ),
-      'logfile'               => array(
+      ],
+      'logfile'               => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'syslog',
         'DESC'    => _('Path to the sudo log file (not the syslog log file)')
-      ),
-      'syslog'                => array(
+      ],
+      'syslog'                => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'authpriv',
         'DESC'    => _('Syslog facility if syslog is being used for logging')
-      ),
-      'mailerpath'            => array(
+      ],
+      'mailerpath'            => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => '',
         'DESC'    => _('Path to mail program used to send warning mail')
-      ),
-      'mailerflags'           => array(
+      ],
+      'mailerflags'           => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => '-t',
         'DESC'    => _('Flags to use when invoking mailer')
-      ),
-      'mailto'                => array(
+      ],
+      'mailto'                => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'root',
         'DESC'    => _('Address to send warning and error mail to')
-      ),
-      'exempt_group'          => array(
+      ],
+      'exempt_group'          => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'root',
         'DESC'    => _('Users in this group are exempt from password and PATH requirements')
-      ),
-      'verifypw'              => array(
+      ],
+      'verifypw'              => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'all',
         'DESC'    => _('This option controls when a password will be required when a user runs sudo with the -v option')
-      ),
-      'listpw'                => array(
+      ],
+      'listpw'                => [
         'TYPE'    => 'STRING_BOOL',
         'DEFAULT' => 'any',
         'DESC'    => _('This option controls when a password will be required when a user runs sudo with the -l option')
-      ),
-      'env_check'             => array(
+      ],
+      'env_check'             => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment if the variable\'s value contains % or / characters')
-      ),
-      'env_delete'            => array(
+      ],
+      'env_delete'            => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment when the env_reset option is not in effect')
-      ),
-      'env_keep'              => array(
+      ],
+      'env_keep'              => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be preserved in the user\'s environment when the env_reset option is in effect')
-      ),
-      'env_check_moins'       => array(
+      ],
+      'env_check_moins'       => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment if the variable\'s value contains % or / characters')
-      ),
-      'env_delete_moins'      => array(
+      ],
+      'env_delete_moins'      => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment when the env_reset option is not in effect')
-      ),
-      'env_keep_moins'        => array(
+      ],
+      'env_keep_moins'        => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be preserved in the user\'s environment when the env_reset option is in effect')
-      ),
-      'env_check_plus'        => array(
+      ],
+      'env_check_plus'        => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment if the variable\'s value contains % or / characters')
-      ),
-      'env_delete_plus'       => array(
+      ],
+      'env_delete_plus'       => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be removed from the user\'s environment when the env_reset option is not in effect')
-      ),
-      'env_keep_plus'         => array(
+      ],
+      'env_keep_plus'         => [
         'TYPE'    => 'LISTS',
         'DEFAULT' => '',
         'DESC'    => _('Environment variables to be preserved in the user\'s environment when the env_reset option is in effect')
-      )
-    );
+      ]
+    ];
   }
 }
diff --git a/sudo/admin/sudo/tabs_sudo.inc b/sudo/admin/sudo/tabs_sudo.inc
index 938b414cd7..8484d1d4f7 100644
--- a/sudo/admin/sudo/tabs_sudo.inc
+++ b/sudo/admin/sudo/tabs_sudo.inc
@@ -20,7 +20,7 @@
 
 class sudotabs extends simpleTabs
 {
-  function set_default($state)
+  function set_default ($state)
   {
     if (isset($this->by_object['sudo'])) {
       $this->by_object['sudo']->set_default($state);
diff --git a/sudo/config/sudo/class_sudoConfig.inc b/sudo/config/sudo/class_sudoConfig.inc
index d4da8efd7d..2a82444cf5 100644
--- a/sudo/config/sudo/class_sudoConfig.inc
+++ b/sudo/config/sudo/class_sudoConfig.inc
@@ -20,35 +20,35 @@
 
 class sudoConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSudoPluginConf');
+  var $objectclasses  = ['fdSudoPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Sudo configuration'),
       'plDescription'   => _('FusionDirectory sudo plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Sudo'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Sudo RDN'), _('Branch in which sudoers will be stored'),
             'fdSudoRDN', TRUE,
             'ou=sudoers'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/supann-ext/admin/supannStructures/class_supannStructureExt.inc b/supann-ext/admin/supannStructures/class_supannStructureExt.inc
index a0425811fb..99210736a0 100644
--- a/supann-ext/admin/supannStructures/class_supannStructureExt.inc
+++ b/supann-ext/admin/supannStructures/class_supannStructureExt.inc
@@ -20,29 +20,29 @@
 
 class supannStructureExt extends simplePlugin
 {
-  var $objectclasses = array('fdSupannExt');
+  var $objectclasses = ['fdSupannExt'];
 
   var $mainTab = TRUE;
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('SUPANN-Ext'),
       'plDescription' => _('SUPANN Non-Official Extension'),
-      'plObjectType'  => array('entite', 'etablissement'),
+      'plObjectType'  => ['entite', 'etablissement'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'validity' => array(
+    return [
+      'validity' => [
         'name'  => _('Validity'),
-        'attrs' => array(
+        'attrs' => [
           new GeneralizedTimeDateAttribute(
             _('Start date'), _('The date from which this structure will be valid'),
             'fdSupannStartDate', FALSE,
@@ -53,12 +53,12 @@ class supannStructureExt extends simplePlugin
             'fdSupannEndDate', FALSE,
             ''
           ),
-        )
-      ),
-      'relation' => array(
+        ]
+      ],
+      'relation' => [
         'name'  => _('Relations'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           /* These attributes are handled by the SupannOrderedArrayAttribute */
           new HiddenAttribute('fdSupannRelationEntiteType'),
           new HiddenAttribute('fdSupannRelationEntiteRole'),
@@ -67,7 +67,7 @@ class supannStructureExt extends simplePlugin
             new SupannCompositeAttribute(
               _('fdSupannRelationEntite'),
               'fdSupannRelationEntite',
-              array(
+              [
                 new SupannPrefixedSelectAttribute(
                   _('Role'), _('Role'),
                   'fdSupannRelationEntiteRole_role', TRUE,
@@ -82,20 +82,20 @@ class supannStructureExt extends simplePlugin
                   _('Entity'), _('Entity'),
                   'fdSupannRelationEntiteCode_code', FALSE
                 ),
-              ),
+              ],
               '',
               // no label
               ''
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // no edit button
             FALSE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -105,10 +105,10 @@ class supannStructureExt extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=supannEntite)', array('supannCodeEntite', 'ou', 'o','supannEtablissement'));
+    $ldap->search('(objectClass=supannEntite)', ['supannCodeEntite', 'ou', 'o','supannEtablissement']);
 
-    $code_entites   = array();
-    $label_entites  = array();
+    $code_entites   = [];
+    $label_entites  = [];
     while ($attrs = $ldap->fetch()) {
       if (isset($attrs['supannCodeEntite'][0])) {
         $code_entites[] = $attrs['supannCodeEntite'][0];
diff --git a/supann/admin/supannStructures/class_entite.inc b/supann/admin/supannStructures/class_entite.inc
index af14f346f7..6b03330933 100644
--- a/supann/admin/supannStructures/class_entite.inc
+++ b/supann/admin/supannStructures/class_entite.inc
@@ -21,36 +21,36 @@
 
 class entite extends simplePlugin
 {
-  var $objectclasses = array('top','supannEntite','organizationalUnit');
+  var $objectclasses = ['top','supannEntite','organizationalUnit'];
 
   var $mainTab = TRUE;
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Entity'),
       'plDescription' => _('SupAnn Entity Settings'),
-      'plObjectType'  => array('entite' => array(
+      'plObjectType'  => ['entite' => [
         'name'        => _('SupAnn Entity'),
         'filter'      => '(&(objectClass=supannEntite)(objectClass=organizationalUnit))',
         'ou'          => get_ou('supannStructuresRDN'),
         'mainAttr'    => 'supannCodeEntite',
         'icon'        => 'geticon.php?context=applications&icon=supann-entite&size=16',
         'nameAttr'    => 'ou',
-      )),
+      ]],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Entity'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Name'), _('The name to write in the ou attribute for this entity'),
             'ou', TRUE
@@ -59,11 +59,11 @@ class entite extends simplePlugin
             _('Description'), _('Short description of this entity'),
             'description', FALSE
           ),
-        )
-      ),
-      'admin' => array(
+        ]
+      ],
+      'admin' => [
         'name'  => _('Administrative information'),
-        'attrs' => array(
+        'attrs' => [
           new PhoneNumberAttribute(
             _('Telephone'), _('Phone number of this entity'),
             'telephoneNumber', FALSE
@@ -76,11 +76,11 @@ class entite extends simplePlugin
             _('Postal address'), _('Postal address of this entity'),
             'postalAddress', FALSE
           ),
-        )
-      ),
-      'supann' => array(
+        ]
+      ],
+      'supann' => [
         'name'  => _('SupAnn information'),
-        'attrs' => array(
+        'attrs' => [
           new SupannPrefixedSelectAttribute(
             _('Entity type'), _('The SupAnn type that best fits this entity'),
             'supannTypeEntite', FALSE, 'entite'
@@ -105,9 +105,9 @@ class entite extends simplePlugin
               '/^{[^}]+}.+$/'
             )
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -117,10 +117,10 @@ class entite extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=supannEntite)', array('supannCodeEntite','ou','o'));
+    $ldap->search('(objectClass=supannEntite)', ['supannCodeEntite','ou','o']);
 
-    $entity_codes   = array('');
-    $entity_labels  = array('');
+    $entity_codes   = [''];
+    $entity_labels  = [''];
     while ($attrs = $ldap->fetch()) {
       if (isset($attrs['supannCodeEntite'][0])) {
         $entity_codes[] = $attrs['supannCodeEntite'][0];
diff --git a/supann/admin/supannStructures/class_etablissement.inc b/supann/admin/supannStructures/class_etablissement.inc
index 3ce4e3ec6e..3d4a4d1d8b 100644
--- a/supann/admin/supannStructures/class_etablissement.inc
+++ b/supann/admin/supannStructures/class_etablissement.inc
@@ -21,36 +21,36 @@
 
 class etablissement extends simplePlugin
 {
-  var $objectclasses = array('top','supannEntite','organization','supannOrg','eduOrg');
+  var $objectclasses = ['top','supannEntite','organization','supannOrg','eduOrg'];
 
   var $mainTab = TRUE;
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Establishment'),
       'plDescription' => _('SupAnn Establishment Settings'),
-      'plObjectType'  => array('etablissement' => array(
+      'plObjectType'  => ['etablissement' => [
         'name'        => _('SupAnn Establishment'),
         'filter'      => '(&(objectClass=supannEntite)(objectClass=organization))',
         'ou'          => get_ou('supannStructuresRDN'),
         'mainAttr'    => 'supannCodeEntite',
         'icon'        => 'geticon.php?context=applications&icon=supann-etablissement&size=16',
         'nameAttr'    => 'o',
-      )),
+      ]],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute(
             _('Root establishment'), _('Set this establishment as the root one'),
             'set_root'
@@ -63,11 +63,11 @@ class etablissement extends simplePlugin
             _('Description'), _('A short description of this establishment'),
             'description', FALSE
           )
-        )
-      ),
-      'location' => array(
+        ]
+      ],
+      'location' => [
         'name'  => _('Location'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Location'), _('Usually the city where this establishment is'),
             'l', FALSE
@@ -84,11 +84,11 @@ class etablissement extends simplePlugin
             _('Fax'), _('Fax number of this establishment'),
             'facsimileTelephoneNumber', FALSE
           ),
-        )
-      ),
-      'supann' => array(
+        ]
+      ],
+      'supann' => [
         'name'  => _('SupAnn properties'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Establishment code'), _('The code of this establishment (must have a prefix between {})'),
             'supannEtablissement', TRUE,
@@ -134,9 +134,9 @@ class etablissement extends simplePlugin
             _('White pages URI'), _('The URI of this establishment white pages'),
             'eduOrgWhitePagesURI', FALSE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -186,10 +186,10 @@ class etablissement extends simplePlugin
         msg_dialog::display(_('LDAP error'), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_DEL, get_class()));
       }
     }
-    return array();
+    return [];
   }
 
-  function ldap_save()
+  function ldap_save ()
   {
     global $config;
 
@@ -230,7 +230,7 @@ class etablissement extends simplePlugin
       if ($root_mode == 'delete') {
         $ldap->rmdir($dn);
       } else {
-        $root_attrs['objectClass'] = array('top','dcObject','organization','supannOrg','eduOrg');
+        $root_attrs['objectClass'] = ['top','dcObject','organization','supannOrg','eduOrg'];
         $root_attrs['dc'] = $root_attrs['o'];
         unset($root_attrs['supannTypeEntite']);
         unset($root_attrs['supannCodeEntite']);
@@ -247,13 +247,13 @@ class etablissement extends simplePlugin
     return $errors;
   }
 
-  function get_root_code()
+  function get_root_code ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
 
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=supannOrg)', array('*'), 'one');
+    $ldap->search('(objectClass=supannOrg)', ['*'], 'one');
 
     if ($ldap->count() > 1) {
       msg_dialog::display(_('LDAP error'), 'There are several establishments at root!');
diff --git a/supann/admin/supannStructures/class_supann.inc b/supann/admin/supannStructures/class_supann.inc
index c7cefb4d9a..792691945d 100644
--- a/supann/admin/supannStructures/class_supann.inc
+++ b/supann/admin/supannStructures/class_supann.inc
@@ -20,13 +20,13 @@
 
 class supann
 {
-  static $choices_for = array();
+  static $choices_for = [];
 
-  static function get_prefixed_choices_for($shortname)
+  static function get_prefixed_choices_for ($shortname)
   {
     $dir  = @opendir(SUPANN_DIR);
-    $m    = array();
-    $res  = array();
+    $m    = [];
+    $res  = [];
 
     while ($file = readdir($dir)) {
       if (preg_match('/^'.$shortname.'_(.+)$/', $file, $m)) {
@@ -39,13 +39,13 @@ class supann
     return $res;
   }
 
-  static function &get_choices_for($type, $prefix = '')
+  static function &get_choices_for ($type, $prefix = '')
   {
     if (isset(static::$choices_for[$prefix.$type])) {
       return static::$choices_for[$prefix.$type];
     }
-    $entity_codes   = array();
-    $entity_labels  = array();
+    $entity_codes   = [];
+    $entity_labels  = [];
     if (file_exists(SUPANN_DIR.'/'.$type)) {
       $entiteList = fopen(SUPANN_DIR.'/'.$type, 'r');
       if ($entiteList === FALSE) {
@@ -54,7 +54,7 @@ class supann
           sprintf(_("Cannot read file: '%s'"), SUPANN_DIR.'/'.$type),
           ERROR_DIALOG
         );
-        return array(array(), array());
+        return [[], []];
       }
       while (($line = fgets($entiteList)) !== FALSE) {
         $line = trim($line);
@@ -68,12 +68,12 @@ class supann
       fclose($entiteList);
     }
     array_multisort($entity_labels, $entity_codes);
-    static::$choices_for[$prefix.$type] = array($entity_codes, $entity_labels);
+    static::$choices_for[$prefix.$type] = [$entity_codes, $entity_labels];
     return static::$choices_for[$prefix.$type];
   }
 
   /* return the 64 first chars and "…" after if text is longer */
-  static function truncate_label($str, $len = 50)
+  static function truncate_label ($str, $len = 50)
   {
     if (mb_strlen($str) > $len) {
       return mb_substr($str, 0, $len).'…';
diff --git a/supann/admin/supannStructures/class_supannStructuresManagement.inc b/supann/admin/supannStructures/class_supannStructuresManagement.inc
index c5b3ab1f59..3187b4e676 100644
--- a/supann/admin/supannStructures/class_supannStructuresManagement.inc
+++ b/supann/admin/supannStructures/class_supannStructuresManagement.inc
@@ -20,49 +20,49 @@
 
 class supannStructuresManagement extends simpleManagement
 {
-  protected $objectTypes = array('etablissement', 'entite');
+  protected $objectTypes = ['etablissement', 'entite'];
 
-  protected $autoFilterAttributes = array('dn', 'ou', 'o', 'description', 'supannCodeEntite', 'supannCodeEntiteParent');
+  protected $autoFilterAttributes = ['dn', 'ou', 'o', 'description', 'supannCodeEntite', 'supannCodeEntiteParent'];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
   protected $baseMode               = FALSE;
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('SupAnn structures'),
       'plDescription' => _('SupAnn structures management'),
       'plIcon'        => 'geticon.php?context=applications&icon=supann&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 40,
-      'plManages'     => array('etablissement', 'entite'),
+      'plManages'     => ['etablissement', 'entite'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 
   function parseXML ($file)
   {
     $data = parent::parseXML($file);
     $data['list']['table']['layout'] = '|20px;c|||||150px;r|';
-    $columns = array (
-      array(
+    $columns = [
+      [
         'label'         => 'supannCodeEntite',
         'sortAttribute' => 'supannCodeEntite',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",supannCodeEntite)}',
         'export'        => 'true',
-      ),
-      array(
+      ],
+      [
         'label'         => 'supannCodeEntiteParent',
         'sortAttribute' => 'supannCodeEntiteParent',
         'sortType'      => 'string',
         'value'         => '%{filter:link(row,dn,"%s",supannCodeEntiteParent)}',
         'export'        => 'true',
-      ),
-    );
+      ],
+    ];
     array_splice($data['list']['table']['column'], 2, 0, $columns);
     return $data;
   }
diff --git a/supann/config/supann/class_supannConfig.inc b/supann/config/supann/class_supannConfig.inc
index a92584f607..1ee4353e60 100644
--- a/supann/config/supann/class_supannConfig.inc
+++ b/supann/config/supann/class_supannConfig.inc
@@ -20,26 +20,26 @@
 
 class supannConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSupannPluginConf');
+  var $objectclasses  = ['fdSupannPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('SupAnn configuration'),
       'plDescription'   => _('FusionDirectory SupAnn plugin configuration'),
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('SupAnn'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('SupAnn RDN'), _('Branch in which SupAnn structures will be stored'),
             'fdSupannStructuresRDN', TRUE,
@@ -50,9 +50,9 @@ class supannConfig extends simplePlugin
             'fdSupannPasswordRecovery', FALSE,
             TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/supann/personal/supann/class_supannAccount.inc b/supann/personal/supann/class_supannAccount.inc
index 2c1ed44f5a..c3002ee20b 100644
--- a/supann/personal/supann/class_supannAccount.inc
+++ b/supann/personal/supann/class_supannAccount.inc
@@ -23,17 +23,17 @@ class SupannPrefixedSelectAttribute extends CompositeAttribute
 {
   protected $prefixedChoices;
 
-  function __construct($label, $description, $ldapName, $required, $filename, $acl = "")
+  function __construct ($label, $description, $ldapName, $required, $filename, $acl = "")
   {
-    $attributes = array(
+    $attributes = [
       new SelectAttribute('', '', $ldapName.'_prefix', $required),
       new SelectAttribute('', '', $ldapName.'_content', $required)
-    );
+    ];
     parent::__construct($description, $ldapName, $attributes, '/^{(.*)}(.*)$/', '{%s}%s', $acl, $label);
     $this->setLinearRendering(TRUE);
     $this->prefixedChoices = supann::get_prefixed_choices_for($filename);
     if (!$required) {
-      $this->prefixedChoices[''] = array(array(''), array(_('None')));
+      $this->prefixedChoices[''] = [[''], [_('None')]];
     }
     $this->attributes[0]->setChoices(array_keys($this->prefixedChoices));
     $this->attributes[0]->setSubmitForm(TRUE);
@@ -41,17 +41,17 @@ class SupannPrefixedSelectAttribute extends CompositeAttribute
     $this->setRequired($required);
   }
 
-  protected function supannUpdateSelect()
+  protected function supannUpdateSelect ()
   {
     $prefix = $this->attributes[0]->getValue();
     if (!isset($this->prefixedChoices[$prefix])) {
-      $this->prefixedChoices[$prefix] = array(array(), array());
+      $this->prefixedChoices[$prefix] = [[], []];
     }
     $this->attributes[1]->setChoices($this->prefixedChoices[$prefix][0], $this->prefixedChoices[$prefix][1]);
     $this->attributes[1]->setRequired($prefix != '');
   }
 
-  function applyPostValue()
+  function applyPostValue ()
   {
     parent::applyPostValue();
     $this->supannUpdateSelect();
@@ -83,7 +83,7 @@ class SupannPrefixedSelectAttribute extends CompositeAttribute
     }
   }
 
-  function displayValue($values)
+  function displayValue ($values)
   {
     if (!is_array($values)) {
       $values = $this->inputValue($values);
@@ -102,36 +102,36 @@ class SupannPrefixedSelectAttribute extends CompositeAttribute
 
 class SupannCursusAnneeAttribute extends SupannPrefixedSelectAttribute
 {
-  function __construct($label, $description, $ldapName, $required, $acl = "")
+  function __construct ($label, $description, $ldapName, $required, $acl = "")
   {
-    $attributes = array(
+    $attributes = [
       new SelectAttribute('', '', $ldapName.'_prefix', $required),
       new SelectAttribute('', '', $ldapName.'_content', FALSE)
-    );
+    ];
     CompositeAttribute::__construct($description, $ldapName, $attributes, '/^{SUPANN}(.)(\\d+)$/', '{SUPANN}%s%d', $acl, $label);
     $this->setLinearRendering(TRUE);
 
     $this->attributes[0]->setChoices(
-      array('L','M','D','X','B'),
-      array(_('Licence'),_('Master'),_('Ph.D.'),_('Another class of degree'),_('Post-graduate year'))
+      ['L','M','D','X','B'],
+      [_('Licence'),_('Master'),_('Ph.D.'),_('Another class of degree'),_('Post-graduate year')]
     );
-    $yearLabels = array(
+    $yearLabels = [
       _('None'),_('1st year'),_('2nd year'),_('3rd year'),
       _('4th year'),_('5th year'),_('6th year'),
       _('7th year'),_('8th year'),_('9th year'),
-    );
-    $this->prefixedChoices = array(
-      'L' => array(range(0, 3),array_slice($yearLabels, 0, 3 + 1)),
-      'M' => array(range(0, 2),array_slice($yearLabels, 0, 2 + 1)),
-      'D' => array(range(0, 9),array_slice($yearLabels, 0, 10)),
-      'X' => array(range(0, 9),array_slice($yearLabels, 0, 10)),
-      'B' => array(range(0, 20),range(0, 20)),
-    );
+    ];
+    $this->prefixedChoices = [
+      'L' => [range(0, 3),array_slice($yearLabels, 0, 3 + 1)],
+      'M' => [range(0, 2),array_slice($yearLabels, 0, 2 + 1)],
+      'D' => [range(0, 9),array_slice($yearLabels, 0, 10)],
+      'X' => [range(0, 9),array_slice($yearLabels, 0, 10)],
+      'B' => [range(0, 20),range(0, 20)],
+    ];
     $this->attributes[0]->setSubmitForm(TRUE);
     $this->supannUpdateSelect();
     $this->setRequired($required);
   }
-  protected function supannUpdateSelect()
+  protected function supannUpdateSelect ()
   {
     $prefix = $this->attributes[0]->getValue();
     $this->attributes[1]->setChoices($this->prefixedChoices[$prefix][0], $this->prefixedChoices[$prefix][1]);
@@ -140,15 +140,15 @@ class SupannCursusAnneeAttribute extends SupannPrefixedSelectAttribute
 
 class SupannCompositeAttribute extends CompositeAttribute
 {
-  function __construct($description, $ldapName, $attributes, $acl = "", $label = "Composite attribute")
+  function __construct ($description, $ldapName, $attributes, $acl = "", $label = "Composite attribute")
   {
     parent::__construct($description, $ldapName, $attributes, '', '', $acl, $label);
   }
 
-  function readValues($value)
+  function readValues ($value)
   {
-    $values = array();
-    $m = array();
+    $values = [];
+    $m = [];
     foreach ($this->attributes as &$attribute) {
       $shortname = preg_replace('/^[^_]+_/', '', $attribute->getLdapName());
       if (preg_match("/\\[$shortname=([^\\]]+)\\]/", $value, $m)) {
@@ -162,7 +162,7 @@ class SupannCompositeAttribute extends CompositeAttribute
     return $values;
   }
 
-  function writeValues($values)
+  function writeValues ($values)
   {
     $value  = '';
     $i      = 0;
@@ -177,13 +177,13 @@ class SupannCompositeAttribute extends CompositeAttribute
     return $value;
   }
 
-  function supannGetValues(&$values)
+  function supannGetValues (&$values)
   {
     foreach ($this->attributes as &$attribute) {
       $shortname = preg_replace('/^([^_]+)_.*$/', '\\1', $attribute->getLdapName());
       $value = $attribute->getValue();
       if (!isset($values[$shortname])) {
-        $values[$shortname] = array();
+        $values[$shortname] = [];
       }
       if ($value == "") {
         continue;
@@ -196,9 +196,9 @@ class SupannCompositeAttribute extends CompositeAttribute
 
 class SupannOrderedArrayAttribute extends OrderedArrayAttribute
 {
-  function supannPrepareSave()
+  function supannPrepareSave ()
   {
-    $values = array();
+    $values = [];
     foreach ($this->value as $value) {
       $this->attribute->setValue($value);
       $this->attribute->supannGetValues($values);
@@ -214,37 +214,37 @@ class SupannOrderedArrayAttribute extends OrderedArrayAttribute
 
 class supannAccount extends simplePlugin
 {
-  var $objectclasses = array('eduPerson', 'supannPerson');
+  var $objectclasses = ['eduPerson', 'supannPerson'];
 
   var $displayHeader = TRUE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('SupAnn'),
       'plDescription' => _('SupAnn information management plugin'),
       'plIcon'        => 'geticon.php?context=applications&icon=supann&size=48',
       'plSmallIcon'   => 'geticon.php?context=applications&icon=supann&size=16',
       'plSelfModify'  => TRUE,
       'plPriority'    => 14,
-      'plObjectType'  => array('user'),
+      'plObjectType'  => ['user'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
     $year = intval(date('Y'));
-    return array(
-      'identity' => array(
+    return [
+      'identity' => [
         'name'  => _('Identity'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Civilite'), _('supannCivilite - Civility for this person'),
             'supannCivilite', FALSE,
-            array('', 'M.', 'Mme', 'Mlle')
+            ['', 'M.', 'Mme', 'Mlle']
           ),
           new StringAttribute(
             _('Alias login'), _('supannAliasLogin - An alias for the login of this user'),
@@ -267,11 +267,11 @@ class supannAccount extends simplePlugin
               '/^{[^}]+}.+$/'
             )
           ),
-        )
-      ),
-      'contact' => array(
+        ]
+      ],
+      'contact' => [
         'name'  => _('Contact'),
-        'attrs' => array(
+        'attrs' => [
           new SetAttribute(
             new PhoneNumberAttribute(
               _('Other phone numbers'), _('supannAutreTelephone - Other phone numbers for this user'),
@@ -294,11 +294,11 @@ class supannAccount extends simplePlugin
             _('Red list'), _('supannListeRouge - Should this person be on the red list'),
             'supannListeRouge', TRUE
           )
-        )
-      ),
-      'affectation' => array(
+        ]
+      ],
+      'affectation' => [
         'name'  => _('Assignment'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Primary assignment'), _('supannEntiteAffectationPrincipale - Main assignment of the person'),
             'supannEntiteAffectationPrincipale', FALSE
@@ -315,11 +315,11 @@ class supannAccount extends simplePlugin
               'supannTypeEntiteAffectation', FALSE, 'entite'
             )
           ),
-        )
-      ),
-      'affiliation' => array(
+        ]
+      ],
+      'affiliation' => [
         'name'  => _('Affiliation'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Primary affiliation'), _('eduPersonPrimaryAffiliation - Main status of the person'),
             'eduPersonPrimaryAffiliation', FALSE
@@ -336,11 +336,11 @@ class supannAccount extends simplePlugin
               'supannEtablissement', FALSE
             )
           ),
-        )
-      ),
-      'student' => array(
+        ]
+      ],
+      'student' => [
         'name'  => _('Student profile'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('INE code'), _('supannCodeINE - INE code of this student'),
             'supannCodeINE', FALSE
@@ -349,13 +349,13 @@ class supannAccount extends simplePlugin
             _('Student ID'), _('supannEtuId - Scolarity id'),
             'supannEtuId', FALSE
           ),
-        )
-      ),
-      'student2' => array(
+        ]
+      ],
+      'student2' => [
         'name'      => _('Student registrations'),
-        'class'     => array('fullwidth'),
+        'class'     => ['fullwidth'],
         'template'  => get_template_path('student_subscription.tpl', TRUE, dirname(__FILE__)),
-        'attrs'     => array(
+        'attrs'     => [
           /* These attributes are handled by the SupannOrderedArrayAttribute */
           new HiddenAttribute('supannEtuAnneeInscription'),
           new HiddenAttribute('supannEtuRegimeInscription'),
@@ -369,7 +369,7 @@ class supannAccount extends simplePlugin
             new SupannCompositeAttribute(
               _('supannEtuInscription - Registrations for this student'),
               'supannEtuInscription',
-              array(
+              [
                 new SelectAttribute(
                   _('Establishment'), _('supannEtablissement - Etablissement in which this registration was done'),
                   'supannEtablissement_etab', TRUE
@@ -411,19 +411,19 @@ class supannAccount extends simplePlugin
                   _('educational element'), _('supannEtuElementPedagogique - Generic description of the content of education with a high level of granularity'),
                   'supannEtuElementPedagogique_eltpedago', FALSE, 'etuelementpedagogique'
                 ),
-              )
+              ]
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // no edit button
             FALSE
           )
-        )
-      ),
-      'personnal' => array(
+        ]
+      ],
+      'personnal' => [
         'name'  => _('Personal profile'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute(
             _('Personal ID'), _('supannEmpId - Employee identifier'),
             'supannEmpId', FALSE
@@ -438,19 +438,19 @@ class supannAccount extends simplePlugin
               'supannActivite', FALSE, 'activite'
             )
           )
-        )
-      ),
-      'personnal2' => array(
+        ]
+      ],
+      'personnal2' => [
         'name'      => _('Roles'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           /* These attributes are handled by the SupannOrderedArrayAttribute */
           new HiddenAttribute('supannRoleGenerique'),
           new SupannOrderedArrayAttribute(
             new SupannCompositeAttribute(
               _('supannRoleEntite'),
               'supannRoleEntite',
-              array(
+              [
                 new SupannPrefixedSelectAttribute(
                   _('Generic role'), _('supannRoleGenerique - Generic role of the person in the facility'),
                   'supannRoleGenerique_role', TRUE, 'role'
@@ -463,20 +463,20 @@ class supannAccount extends simplePlugin
                   _('Entity'), _('supannEntiteAffectation - Represents assignments of the person in an institution, a component, service, etc.'),
                   'supannEntiteAffectation_code', FALSE
                 ),
-              ),
+              ],
               '',
               // no label
               ''
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // no edit button
             FALSE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -487,12 +487,12 @@ class supannAccount extends simplePlugin
     /* list of entity stored in LDAP tree */
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=supannEntite)', array('supannCodeEntite', 'ou', 'o','supannEtablissement'));
+    $ldap->search('(objectClass=supannEntite)', ['supannCodeEntite', 'ou', 'o','supannEtablissement']);
 
-    $code_entites   = array();
-    $label_entites  = array();
-    $code_etablissements  = array();
-    $label_etablissements = array();
+    $code_entites   = [];
+    $label_entites  = [];
+    $code_etablissements  = [];
+    $label_etablissements = [];
     while ($attrs = $ldap->fetch()) {
       if (isset($attrs['supannCodeEntite'][0])) {
         $code_entites[] = $attrs['supannCodeEntite'][0];
@@ -515,7 +515,7 @@ class supannAccount extends simplePlugin
     $this->supannInit();
   }
 
-  function supannInit()
+  function supannInit ()
   {
     list ($codes, $labels) = supann::get_choices_for('affiliation');
     $this->attributesAccess['eduPersonAffiliation']->attribute->setChoices($codes, $labels);
@@ -534,7 +534,7 @@ class supannAccount extends simplePlugin
   }
 
   /* Update choices of fields which depends on other fields values */
-  function updateFieldsChoices()
+  function updateFieldsChoices ()
   {
     $code_ent   = $this->attributesAccess['supannEntiteAffectation']->getValue();
     $label_ent  = $this->attributesAccess['supannEntiteAffectation']->getDisplayValues();
@@ -560,7 +560,7 @@ class supannAccount extends simplePlugin
     );
   }
 
-  function check()
+  function check ()
   {
     $message = parent::check();
 
@@ -572,13 +572,13 @@ class supannAccount extends simplePlugin
     return $message;
   }
 
-  function save_object()
+  function save_object ()
   {
     parent::save_object();
     $this->updateFieldsChoices();
   }
 
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     parent::adapt_from_template($attrs, $skip);
     $this->updateFieldsChoices();
diff --git a/sympa/admin/sympa/class_sympaAlias.inc b/sympa/admin/sympa/class_sympaAlias.inc
index 8e12fb69fa..29f3c5631d 100644
--- a/sympa/admin/sympa/class_sympaAlias.inc
+++ b/sympa/admin/sympa/class_sympaAlias.inc
@@ -20,34 +20,34 @@
 
 class sympaAlias extends simplePlugin
 {
-  var $objectclasses = array('sympaAlias');
+  var $objectclasses = ['sympaAlias'];
 
   /* Return plugin information for acl handling */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Sympa list alias'),
       'plDescription' => _('Sympa list alias'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('sympaAlias' => array(
+      'plObjectType'  => ['sympaAlias' => [
         'name'        => _('Sympa list alias'),
         'filter'      => 'objectClass=sympaAlias',
         'icon'        => 'geticon.php?context=applications&icon=sympa&size=16',
         'ou'          => get_ou('sympaRDN'),
-      )),
+      ]],
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('Sympa list alias'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute (get_ou('sympaRDN')),
           new StringAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
           new TextAreaAttribute (
@@ -63,11 +63,11 @@ class sympaAlias extends simplePlugin
           new SelectAttribute (
             _('Sympa server'), _('Sympa server for this alias'),
             'sympaServerURL', TRUE,
-            array()
+            []
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -77,8 +77,8 @@ class sympaAlias extends simplePlugin
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(objectClass=sympaServer)', array('sympaServerURL'));
-    $server = array();
+    $ldap->search('(objectClass=sympaServer)', ['sympaServerURL']);
+    $server = [];
     while ($attrs = $ldap->fetch()) {
         $server[] = $attrs['sympaServerURL'][0];
     }
diff --git a/sympa/admin/sympa/class_sympaManagement.inc b/sympa/admin/sympa/class_sympaManagement.inc
index 06c56f2e78..a906fba680 100644
--- a/sympa/admin/sympa/class_sympaManagement.inc
+++ b/sympa/admin/sympa/class_sympaManagement.inc
@@ -22,23 +22,23 @@
 class sympaManagement extends simpleManagement
 {
   // Tab definition
-  protected $objectTypes  = array('sympaAlias');
+  protected $objectTypes  = ['sympaAlias'];
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description'];
 
   /* Return plugin information for acl handling  */
-  public static function plInfo()
+  public static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Sympa'),
       'plDescription' => _('Sympa management'),
       'plIcon'        => 'geticon.php?context=applications&icon=sympa&size=48',
       'plSection'     => 'accounts',
       'plPriority'    => 26,
-      'plManages'     => array('sympaAlias'),
+      'plManages'     => ['sympaAlias'],
 
-      'plProvidedAcls' => array()
-    );
+      'plProvidedAcls' => []
+    ];
   }
 }
 ?>
diff --git a/sympa/admin/systems/services/sympa/class_serviceSympa.inc b/sympa/admin/systems/services/sympa/class_serviceSympa.inc
index 0c6047c888..fc66c5d9c1 100644
--- a/sympa/admin/systems/services/sympa/class_serviceSympa.inc
+++ b/sympa/admin/systems/services/sympa/class_serviceSympa.inc
@@ -22,18 +22,18 @@
 class serviceSympa extends simpleService
 {
   /* This plugin only writes its objectClass */
-  var $objectclasses  = array("sympaServer");
+  var $objectclasses  = ["sympaServer"];
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Sympa Server'),
       'plDescription' => _('Sympa Server').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=sympa&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
     /*!
@@ -41,10 +41,10 @@ class serviceSympa extends simpleService
    */
   static function getAttributesInfo ()
   {
-    return array (
-      'main' => array (
+    return  [
+      'main' => [
         'name'  => _('Sympa server'),
-        'attrs' => array (
+        'attrs' => [
           new StringAttribute (
             _('URL'), _('URL to access the sympa server'),
             'sympaServerURL', TRUE
@@ -57,9 +57,9 @@ class serviceSympa extends simpleService
             _('Password'), _('Password to access sympa server SOAP API.'),
             'sympaServerPassword', FALSE
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/sympa/config/sympa/class_sympaConfig.inc b/sympa/config/sympa/class_sympaConfig.inc
index 0420b85a45..5c9792fa05 100644
--- a/sympa/config/sympa/class_sympaConfig.inc
+++ b/sympa/config/sympa/class_sympaConfig.inc
@@ -20,35 +20,35 @@
 
 class sympaConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdSympaPluginConf');
+  var $objectclasses  = ['fdSympaPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Sympa configuration'),
       'plDescription'   => _('FusionDirectory sympa plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Sympa'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Sympa RDN'), _('Branch in which Sympa objects will be stored'),
             'fdSympaRDN', TRUE,
             'ou=sympa'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/systems/addons/dashboard/class_dashBoardNetwork.inc b/systems/addons/dashboard/class_dashBoardNetwork.inc
index 741cd75927..e122156c0e 100644
--- a/systems/addons/dashboard/class_dashBoardNetwork.inc
+++ b/systems/addons/dashboard/class_dashBoardNetwork.inc
@@ -22,32 +22,32 @@
 class dashboardNetwork extends simplePlugin
 {
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Network'),
       'plDescription' => _('Statistics and various information'),
-      'plObjectType'  => array('dashboard'),
+      'plObjectType'  => ['dashboard'],
       'plPriority'    => 22,
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  static function getAttributesInfo()
+  static function getAttributesInfo ()
   {
-    return array(
-      'dhcp' => array(
+    return [
+      'dhcp' => [
         'name'  => _('DHCP'),
-        'attrs' => array(new FakeAttribute('dhcp_infos')),
+        'attrs' => [new FakeAttribute('dhcp_infos')],
         'template' => get_template_path('network_dhcp.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'dns' => array(
+      ],
+      'dns' => [
         'name'  => _('DNS'),
-        'attrs' => array(new FakeAttribute('dns_infos')),
+        'attrs' => [new FakeAttribute('dns_infos')],
         'template' => get_template_path('network_dhcp.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -65,18 +65,18 @@ class dashboardNetwork extends simplePlugin
     }
   }
 
-  function dhcp_infos()
+  function dhcp_infos ()
   {
     global $config, $ui;
 
     if (!class_available('dhcpService')) {
-      return array();
+      return [];
     }
 
     try {
-      $objects = objects::ls('server', array('cn' => 'raw', 'dhcpServiceDN' => 1), NULL, '(objectClass=dhcpServer)', TRUE);
+      $objects = objects::ls('server', ['cn' => 'raw', 'dhcpServiceDN' => 1], NULL, '(objectClass=dhcpServer)', TRUE);
     } catch (FusionDirectoryException $e) {
-      $objects = array();
+      $objects = [];
       msg_dialog::display(
         _('Error'),
         sprintf(_('Statistics for DHCP could not be computed because of the following error: %s'), $e->getMessage()),
@@ -84,51 +84,51 @@ class dashboardNetwork extends simplePlugin
       );
     }
 
-    $servers = array();
+    $servers = [];
     foreach ($objects as $dn => $attrs) {
-      $zones = array();
+      $zones = [];
       if (strpos($ui->get_permissions($attrs['dhcpServiceDN'], 'dhcpConfiguration/dhcpSubnet', 'dhcpNetMask'), 'r') !== FALSE) {
         $ldap_zone = $config->get_ldap_link();
         $ldap_zone->cd($attrs['dhcpServiceDN']);
-        $ldap_zone->search('(objectClass=dhcpSubnet)', array('cn','dhcpNetMask'));
+        $ldap_zone->search('(objectClass=dhcpSubnet)', ['cn','dhcpNetMask']);
         while ($attrs_zone = $ldap_zone->fetch()) {
-          $zones[] = array(
+          $zones[] = [
             'text' => $attrs_zone['cn'][0]."/".$attrs_zone['dhcpNetMask'][0]
-          );
+          ];
         }
       }
 
-      $servers[] = array(
+      $servers[] = [
         'name'  => $attrs['cn'][0],
         'link'  => objects::link($dn, 'server', 'service_serviceDHCP', $attrs, FALSE),
         'zones' => $zones
-      );
+      ];
     }
 
     return $servers;
   }
 
-  function dns_infos()
+  function dns_infos ()
   {
     if (!class_available('dnsZone')) {
-      return array();
+      return [];
     }
-    $servers  = array();
-    $zones    = objects::ls('dnsZone', array('zoneName' => 1, 'sOARecord' => 1), NULL, '', TRUE);
+    $servers  = [];
+    $zones    = objects::ls('dnsZone', ['zoneName' => 1, 'sOARecord' => 1], NULL, '', TRUE);
     foreach ($zones as $zonedn => $zone) {
       list ($fqdn)  = explode(' ', $zone['sOARecord']);
       $search = dnsManagement::findServerByFQDN($fqdn, $zonedn);
       foreach ($search as $dn => $name) {
         if (!isset($servers[$dn])) {
-          $servers[$dn] = array(
+          $servers[$dn] = [
             'name'  => $name,
             'link'  => objects::link($dn, 'server', 'tab_dnsHost', $name, FALSE),
-            'zones' => array()
-          );
+            'zones' => []
+          ];
         }
-        $servers[$dn]['zones'][] = array(
+        $servers[$dn]['zones'][] = [
           'link' => objects::link($zonedn, 'dnsZone', '', $zone['zoneName'], FALSE)
-        );
+        ];
       }
     }
 
diff --git a/systems/addons/dashboard/class_dashBoardSystems.inc b/systems/addons/dashboard/class_dashBoardSystems.inc
index dec3a11c3c..a806b7dff8 100644
--- a/systems/addons/dashboard/class_dashBoardSystems.inc
+++ b/systems/addons/dashboard/class_dashBoardSystems.inc
@@ -24,42 +24,42 @@ class dashboardSystems extends simplePlugin
   /* default values */
   var $default_start_computer_id = 0;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Systems'),
       'plDescription' => _('Statistics and information about systems'),
-      'plObjectType'  => array('dashboard'),
+      'plObjectType'  => ['dashboard'],
       'plPriority'    => 20,
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  static function getAttributesInfo()
+  static function getAttributesInfo ()
   {
-    return array(
-      'stats' => array(
+    return [
+      'stats' => [
         'name'  => _('Statistics'),
-        'attrs' => array(new FakeAttribute('stats')),
+        'attrs' => [new FakeAttribute('stats')],
         'template' => get_template_path('systems_stats.tpl', TRUE, dirname(__FILE__)),
-      ),
-      'pc_ids' => array(
+      ],
+      'pc_ids' => [
         'name'  => _('Computer name to use by unit'),
-        'attrs' => array(new FakeAttribute('pc_ids')),
+        'attrs' => [new FakeAttribute('pc_ids')],
         'template' => get_template_path('systems_pcids.tpl', TRUE, dirname(__FILE__)),
-      ),
-    );
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
   {
     parent::__construct($dn, $object, $parent, $mainTab);
 
-    $this->stats = array(
+    $this->stats = [
       'systems' => $this->systems_stats(),
       'argonaut' => $this->argonaut_stats(),
-    );
+    ];
     $this->pc_ids = $this->computer_ids_rules();
   }
 
@@ -69,40 +69,40 @@ class dashboardSystems extends simplePlugin
     $ldap = $config->get_ldap_link();
 
     /* Statistics */
-    $stats = array(
-      array('name'  => _('Workstations'),
+    $stats = [
+      ['name'  => _('Workstations'),
             'type'  => 'workstation',
             'img'   => 'geticon.php?context=devices&icon=computer&size=16'
-      ),
-      array('name'  => _('Servers'),
+      ],
+      ['name'  => _('Servers'),
             'type'  => 'server',
             'img'   => 'geticon.php?context=devices&icon=server&size=16'
-      ),
-      array('name'    => _('Windows Workstations'),
+      ],
+      ['name'    => _('Windows Workstations'),
             'type'    => 'workstation',
             'filter'  => '(objectClass=sambaSamAccount)',
             'img'     => 'geticon.php?context=devices&icon=computer-windows&size=16'
-      ),
-      array('name'  => _('Terminals'),
+      ],
+      ['name'  => _('Terminals'),
             'type'  => 'terminal',
             'img'   => 'geticon.php?context=devices&icon=terminal&size=16'
-      ),
-      array('name'  => _('Printers'),
+      ],
+      ['name'  => _('Printers'),
             'type'  => 'printer',
             'img'   => 'geticon.php?context=devices&icon=printer&size=16'
-      ),
-      array('name'  => _('Phones'),
+      ],
+      ['name'  => _('Phones'),
             'type'  => 'phone',
             'img'   => 'geticon.php?context=devices&icon=telephone&size=16'
-      ),
-      array('name'  => _('Components'),
+      ],
+      ['name'  => _('Components'),
             'type'  => 'component',
             'img'   => 'geticon.php?context=devices&icon=network-device&size=16'
-      ),
-      array('name'  => _('Mobile phones'),
+      ],
+      ['name'  => _('Mobile phones'),
             'type'  => 'mobilePhone',
-            'img'   => 'geticon.php?context=devices&icon=phone&size=16'),
-    );
+            'img'   => 'geticon.php?context=devices&icon=phone&size=16'],
+    ];
 
     foreach ($stats as $key => &$stat) {
       try {
@@ -134,16 +134,16 @@ class dashboardSystems extends simplePlugin
 
     $argonaut_servers = objects::ls(
       'server',
-      array('cn' => 'raw','ipHostNumber' => 'raw','argonautProtocol' => 'raw','argonautPort' => 'raw'),
+      ['cn' => 'raw','ipHostNumber' => 'raw','argonautProtocol' => 'raw','argonautPort' => 'raw'],
       NULL,
       '(objectClass=argonautServer)',
       TRUE
     );
     $nb_argonaut_server = count($argonaut_servers);
-    $argonaut_server    = array();
+    $argonaut_server    = [];
     if ($nb_argonaut_server == 1) {
       $attrs = reset($argonaut_servers);
-      foreach (array('cn','ipHostNumber','argonautProtocol','argonautPort') as $key) {
+      foreach (['cn','ipHostNumber','argonautProtocol','argonautPort'] as $key) {
         $argonaut_server[$key] = $attrs[$key][0];
       }
       $argonaut_server['link'] = objects::link(key($argonaut_servers), 'server', 'service_serviceArgonaut', $attrs);
@@ -154,15 +154,15 @@ class dashboardSystems extends simplePlugin
     } else {
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search('(objectClass=argonautClient)', array('cn'));
+      $ldap->search('(objectClass=argonautClient)', ['cn']);
       $nb_argonaut_clients = $ldap->count();
     }
 
-    return array(
+    return [
       'nb_servers'  => $nb_argonaut_server,
       'server'      => $argonaut_server,
       'nb_clients'  => $nb_argonaut_clients,
-    );
+    ];
   }
 
   protected function computer_ids_rules ()
@@ -182,9 +182,9 @@ class dashboardSystems extends simplePlugin
     */
 
     $output_next_computer_ids = "";
-    $computer_ids_rules = $config->get_cfg_value('dashboardPrefix', array('PC'));
+    $computer_ids_rules = $config->get_cfg_value('dashboardPrefix', ['PC']);
     if (!is_array($computer_ids_rules)) {
-      $computer_ids_rules = array($computer_ids_rules);
+      $computer_ids_rules = [$computer_ids_rules];
     }
 
     $nb_digits = $config->get_cfg_value('dashboardNumberOfDigit', 3);
@@ -192,9 +192,9 @@ class dashboardSystems extends simplePlugin
     /* running all the table */
     foreach ($computer_ids_rules as $rule) {
       /* aray initialization*/
-      $array_complete_list  = array();
-      $array_real_list      = array();
-      $unused_computer_ids  = array();
+      $array_complete_list  = [];
+      $array_real_list      = [];
+      $unused_computer_ids  = [];
       /* get computer ids configuration */
       $config_ids = explode("=", $rule);
       /* fist is is the prefix */
@@ -217,7 +217,7 @@ class dashboardSystems extends simplePlugin
 
       /* request of all computer beginning by the prefix */
       $request = '(&(cn='.$prefix.'*)(ou:dn:=systems))';
-      $ldap->search($request, array("cn"));
+      $ldap->search($request, ["cn"]);
       while ($attrs = $ldap->fetch()) {
         /* if a computer is a windows host, we have to delete the $ at the end */
         $computer_id        = str_replace("$", "", $attrs["cn"][0]);
diff --git a/systems/admin/systems/class_componentGeneric.inc b/systems/admin/systems/class_componentGeneric.inc
index 3de4d2cc4a..13bb85a1e5 100644
--- a/systems/admin/systems/class_componentGeneric.inc
+++ b/systems/admin/systems/class_componentGeneric.inc
@@ -22,26 +22,26 @@ class componentGeneric extends ipHostPlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('device', 'ieee802Device');
+  var $objectclasses = ['device', 'ieee802Device'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Component'),
       'plDescription' => _('Component information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array(
-        'component' => array(
+      'plObjectType'  => [
+        'component' => [
           'name'        => _('Network device'),
           'description' => _('Network device'),
           'filter'      => '(&(objectClass=ieee802Device)(objectClass=device))',
           'icon'        => 'geticon.php?context=devices&icon=network-device&size=16',
           'ou'          => get_ou('componentRDN'),
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -49,10 +49,10 @@ class componentGeneric extends ipHostPlugin
    */
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new HostNameAttribute (
             _('Name'), _('The name of the component'),
             'cn', TRUE
@@ -62,12 +62,12 @@ class componentGeneric extends ipHostPlugin
             'description', FALSE
           ),
           new BaseSelectorAttribute(get_ou("componentRDN")),
-        )
-      ),
-      'network' => array(
+        ]
+      ],
+      'network' => [
         'name'      => _('Network settings'),
         'icon'      => 'geticon.php?context=categories&icon=applications-internet&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new IPAttribute(
             _('IP address'), _('IP address this system uses'),
             'ipHostNumber', TRUE
@@ -76,9 +76,9 @@ class componentGeneric extends ipHostPlugin
             _('Mac address'), _('Mac address of this system'),
             'macAddress', FALSE
           ),
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 }
 
diff --git a/systems/admin/systems/class_filterServerService.inc b/systems/admin/systems/class_filterServerService.inc
index 4554283a1f..3c9a8dccf8 100644
--- a/systems/admin/systems/class_filterServerService.inc
+++ b/systems/admin/systems/class_filterServerService.inc
@@ -21,23 +21,23 @@
 
 class filterServerService
 {
-  static function query($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = "")
+  static function query ($parent, $base, $scope, $filter, $attributes, $category, $objectStorage = "")
   {
     $plugins  = ServerService::getServiceList();
-    $list     = array();
+    $list     = [];
     foreach ($plugins as $name => $obj) {
       if ($obj->is_account) {
         $data = $plugins[$name]->getListEntry();
-        $data['objectClass']  = array('FAKE_OC_ServerService');
+        $data['objectClass']  = ['FAKE_OC_ServerService'];
         $data['name']         = $name;
-        foreach (array('AllowStatus','AllowStart','AllowStop','AllowRestart','AllowRemove','AllowEdit') as $key) {
+        foreach (['AllowStatus','AllowStart','AllowStop','AllowRestart','AllowRemove','AllowEdit'] as $key) {
           if ($data[$key]) {
             $data['objectClass'][] = $key;
           }
         }
         foreach ($data as $key => $value) {
           if (!is_array($value)) {
-            $value = array($value);
+            $value = [$value];
           }
           $list[$name][]              = $key;
           $list[$name][$key]          = $value;
diff --git a/systems/admin/systems/class_ipHostPlugin.inc b/systems/admin/systems/class_ipHostPlugin.inc
index b4f4c616f0..75efb182f5 100644
--- a/systems/admin/systems/class_ipHostPlugin.inc
+++ b/systems/admin/systems/class_ipHostPlugin.inc
@@ -32,7 +32,7 @@ class ipHostPlugin extends simplePlugin
     parent::__construct($dn, $object, $parent, $mainTab);
 
     $this->attributesAccess['ipHostNumber']->setRequired(
-      in_array(get_class($this), $config->get_cfg_value('mandatoryIpClasses', array()))
+      in_array(get_class($this), $config->get_cfg_value('mandatoryIpClasses', []))
     );
     $this->attributesAccess['ipHostNumber']->setUnique('whole', '(objectClass=ipHost)');
     if (isset($this->attributesAccess['macAddress'])) {
@@ -41,11 +41,11 @@ class ipHostPlugin extends simplePlugin
   }
 
   /* Used by prepare_save and template::apply */
-  public function mergeObjectClasses(array $oc)
+  public function mergeObjectClasses (array $oc)
   {
     $objectclasses = $oc;
     if (empty($this->ipHostNumber)) {
-      $objectclasses = array_remove_entries_ics(array('ipHost'), $objectclasses);
+      $objectclasses = array_remove_entries_ics(['ipHost'], $objectclasses);
     } else {
       $objectclasses[] = 'ipHost';
     }
diff --git a/systems/admin/systems/class_mobilePhoneGeneric.inc b/systems/admin/systems/class_mobilePhoneGeneric.inc
index 998919d6df..bdf7463dd9 100644
--- a/systems/admin/systems/class_mobilePhoneGeneric.inc
+++ b/systems/admin/systems/class_mobilePhoneGeneric.inc
@@ -22,28 +22,28 @@ class mobilePhoneGeneric extends ipHostPlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdMobilePhone', 'ieee802Device');
+  var $objectclasses = ['fdMobilePhone', 'ieee802Device'];
 
-  var $inheritance = array("gosaGroupOfNames" => "member");
+  var $inheritance = ["gosaGroupOfNames" => "member"];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Mobile phone'),
       'plDescription' => _('Mobile phone information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array(
-        'mobilePhone' => array(
+      'plObjectType'  => [
+        'mobilePhone' => [
           'name'        => _('Mobile phone'),
           'description' => _('Mobile phone'),
           'filter'      => 'objectClass=fdMobilePhone',
           'icon'        => 'geticon.php?context=devices&icon=phone&size=16',
           'ou'          => get_ou('mobilePhoneRDN'),
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -51,10 +51,10 @@ class mobilePhoneGeneric extends ipHostPlugin
    */
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('mobilePhoneRDN')),
           new HostNameAttribute (
             _('Name'), _('The name of the mobile phone'),
@@ -64,11 +64,11 @@ class mobilePhoneGeneric extends ipHostPlugin
             _('Description'), _('A short description of the mobile phone'),
             'description', FALSE
           ),
-        )
-      ),
-      'phone' => array(
+        ]
+      ],
+      'phone' => [
         'name'  => _('Phone'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Serial Number'), _('The serial number of the mobile phone'),
             'serialNumber', FALSE
@@ -82,11 +82,11 @@ class mobilePhoneGeneric extends ipHostPlugin
             _('OS'), _('The Operating System installed on this phone'),
             'fdMobileOS', FALSE
           ),
-        )
-      ),
-      'simcard' => array(
+        ]
+      ],
+      'simcard' => [
         'name'  => _('SimCard'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Telephone Number'), _('The telephone number of the mobile phone'),
             'telephoneNumber', FALSE
@@ -96,12 +96,12 @@ class mobilePhoneGeneric extends ipHostPlugin
             'fdMobilePUK', FALSE, '', '',
             '/[[:digit:]]+/'
           ),
-        )
-      ),
-      'network' => array(
+        ]
+      ],
+      'network' => [
         'name'      => _('Network settings'),
         'icon'      => 'geticon.php?context=categories&icon=applications-internet&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new IPAttribute(
             _('IP address'), _('IP address this system uses'),
             'ipHostNumber', FALSE
@@ -110,9 +110,9 @@ class mobilePhoneGeneric extends ipHostPlugin
             _('Mac address'), _('Mac address of this system'),
             'macAddress', FALSE
           ),
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 }
 ?>
diff --git a/systems/admin/systems/class_phoneGeneric.inc b/systems/admin/systems/class_phoneGeneric.inc
index efa9b894a1..346c3f48d6 100644
--- a/systems/admin/systems/class_phoneGeneric.inc
+++ b/systems/admin/systems/class_phoneGeneric.inc
@@ -22,35 +22,35 @@ class phoneGeneric extends ipHostPlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdPhone', 'ieee802Device');
+  var $objectclasses = ['fdPhone', 'ieee802Device'];
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Phone'),
       'plDescription' => _('Phone information'),
-      'plObjectType'  => array(
-        'phone' => array(
+      'plObjectType'  => [
+        'phone' => [
           'name'        => _('Phone'),
           'description' => _('Phone hardware'),
           'filter'      => 'objectClass=fdPhone',
           'icon'        => 'geticon.php?context=devices&icon=telephone&size=16',
           'ou'          => get_ou('phoneRDN'),
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('phoneRDN')),
           new HostNameAttribute (
             _('Name'), _('The name of the phone'),
@@ -60,11 +60,11 @@ class phoneGeneric extends ipHostPlugin
             _('Description'), _('A short description of the phone'),
             'description', FALSE
           ),
-        )
-      ),
-      'phone' => array(
+        ]
+      ],
+      'phone' => [
         'name'  => _('Phone'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Serial Number'), _('The serial number of the phone'),
             'serialNumber', FALSE
@@ -73,12 +73,12 @@ class phoneGeneric extends ipHostPlugin
             _('Telephone Number'), _('The telephone number of the phone'),
             'telephoneNumber', FALSE
           ),
-        )
-      ),
-      'network' => array(
+        ]
+      ],
+      'network' => [
         'name'      => _('Network settings'),
         'icon'      => 'geticon.php?context=categories&icon=applications-internet&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new SetAttribute(
             new IPAttribute(
               _('IP address'), _('IP addresses this system uses (v4 or v6)'),
@@ -91,9 +91,9 @@ class phoneGeneric extends ipHostPlugin
               'macAddress', FALSE
             )
           ),
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 }
 ?>
diff --git a/systems/admin/systems/class_printGeneric.inc b/systems/admin/systems/class_printGeneric.inc
index 8eede26aa9..0244e38161 100644
--- a/systems/admin/systems/class_printGeneric.inc
+++ b/systems/admin/systems/class_printGeneric.inc
@@ -21,31 +21,31 @@
 
 class printGeneric extends ipHostPlugin
 {
-  var $objectclasses  = array('fdPrinter', 'ieee802Device');
+  var $objectclasses  = ['fdPrinter', 'ieee802Device'];
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Printer'),
       'plDescription' => _('Printer information'),
       'plPriority'    => 10,
-      'plObjectType'  => array('printer' =>
-        array(
+      'plObjectType'  => ['printer' =>
+        [
           'name'        => _('Printer'),
           'description' => _('Printer'),
           'filter'      => 'objectClass=fdPrinter',
           'icon'        => 'geticon.php?context=devices&icon=printer&size=16',
           'ou'          => get_ou('printerRDN'),
-        )
-      ),
-      'plForeignKeys'  => array(
+        ]
+      ],
+      'plForeignKeys'  => [
         'fdPrinterUsers'      => 'user',
         'fdPrinterAdminUsers' => 'user',
-      ),
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -53,10 +53,10 @@ class printGeneric extends ipHostPlugin
    */
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute(get_ou('printerRDN')),
           new HostNameAttribute (
             _('Name'), _('The name of the printer'),
@@ -66,11 +66,11 @@ class printGeneric extends ipHostPlugin
             _('Description'), _('A short description of the printer'),
             'description', FALSE
           ),
-        )
-      ),
-      'details' => array(
+        ]
+      ],
+      'details' => [
         'name'  => _('Details'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Printer location'), _('The location of the printer'),
             'l', FALSE
@@ -79,30 +79,30 @@ class printGeneric extends ipHostPlugin
             _('Printer URL'), _('The URL of the printer'),
             'labeledURI', TRUE
           ),
-        )
-      ),
-      'users' => array(
+        ]
+      ],
+      'users' => [
         'name'  => _('Users which are allowed to use this printer'),
-        'attrs' => array(
+        'attrs' => [
           new UsersAttribute(
             '', _('Users which are allowed to use this printer'),
             'fdPrinterUsers', FALSE
           )
-        )
-      ),
-      'admins' => array(
+        ]
+      ],
+      'admins' => [
         'name'  => _('Users which are allowed to administrate this printer'),
-        'attrs' => array(
+        'attrs' => [
           new UsersAttribute(
             '', _('Users which are allowed to administrate this printer'),
             'fdPrinterAdminUsers', FALSE
           )
-        )
-      ),
-      'network' => array(
+        ]
+      ],
+      'network' => [
         'name'      => _('Network settings'),
         'icon'      => 'geticon.php?context=categories&icon=applications-internet&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new SetAttribute(
             new IPAttribute(
               _('IP address'), _('IP address this system uses'),
@@ -115,12 +115,12 @@ class printGeneric extends ipHostPlugin
               'macAddress', FALSE
             )
           ),
-        ),
-      ),
-      'windows' => array(
+        ],
+      ],
+      'windows' => [
         'name'      => _('Windows paths'),
         'icon'      => 'geticon.php?context=devices&icon=computer-windows&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new StringAttribute (
             _('Inf file'), _('Path to windows inf file for this printer'),
             'fdPrinterWindowsInfFile', FALSE
@@ -133,9 +133,9 @@ class printGeneric extends ipHostPlugin
             _('Driver name'), _('Windows name of the printer driver'),
             'fdPrinterWindowsDriverName', FALSE
           ),
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 }
 ?>
diff --git a/systems/admin/systems/class_serverGeneric.inc b/systems/admin/systems/class_serverGeneric.inc
index e30a5031fe..120f0ab8b8 100644
--- a/systems/admin/systems/class_serverGeneric.inc
+++ b/systems/admin/systems/class_serverGeneric.inc
@@ -20,7 +20,7 @@
 
 class serverGeneric extends workstationGeneric
 {
-  var $objectclasses = array('fdServer', 'ieee802Device');
+  var $objectclasses = ['fdServer', 'ieee802Device'];
 
   static function getAttributesInfo ($word = NULL, $rdn = NULL)
   {
@@ -33,24 +33,24 @@ class serverGeneric extends workstationGeneric
     return parent::getAttributesInfo($word, $rdn);
   }
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Server'),
       'plDescription' => _('Server information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array(
-        'server' => array(
+      'plObjectType'  => [
+        'server' => [
           'name'        => _('Server'),
           'description' => _('Server'),
           'filter'      => 'objectClass=fdServer',
           'icon'        => 'geticon.php?context=devices&icon=server&size=16',
           'ou'          => get_ou('serverRDN'),
           'tabClass'    => 'servtabs',
-        )
-      ),
+        ]
+      ],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/systems/admin/systems/class_serverService.inc b/systems/admin/systems/class_serverService.inc
index 7ddfc5f0c0..6d460d4cb9 100644
--- a/systems/admin/systems/class_serverService.inc
+++ b/systems/admin/systems/class_serverService.inc
@@ -21,12 +21,12 @@
 
 class ServerService extends simpleManagement
 {
-  static public $actionStatus = array(
+  static public $actionStatus = [
     'start'   => 'running',
     'stop'    => 'stopped',
     'restart' => 'running',
     'status'  => '',
-  );
+  ];
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
@@ -39,7 +39,7 @@ class ServerService extends simpleManagement
   var $skipFooter       = TRUE;
   var $skipHeader       = TRUE;
   var $skipCpHandler    = TRUE;
-  var $plugins          = array();
+  var $plugins          = [];
   var $current          = "";
   var $dialog           = FALSE;
   var $read_only        = FALSE;
@@ -55,18 +55,18 @@ class ServerService extends simpleManagement
   var $is_account;
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Services'),
       'plDescription' => _('Server services'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('server'),
+      'plObjectType'  => ['server'],
       'plPrority'     => 5,
       'plSubTabs'     => 'SERVERSERVICE',
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
   function __construct ($dn, $object, $parent = NULL)
@@ -138,9 +138,9 @@ class ServerService extends simpleManagement
     $this->updateActionMenu();
   }
 
-  function updateActionMenu()
+  function updateActionMenu ()
   {
-    $this->headpage->xmlData['actionmenu']['action'][0]['action'] = array();
+    $this->headpage->xmlData['actionmenu']['action'][0]['action'] = [];
     $available_services = $this->getAllUnusedServices();
     foreach ($available_services as $class => $label) {
       $icon = 'geticon.php?context=actions&icon=document-new&size=16';
@@ -148,18 +148,18 @@ class ServerService extends simpleManagement
       if (isset($infos['plIcon'])) {
         $icon = $infos['plIcon'];
       }
-      $this->headpage->xmlData['actionmenu']['action'][0]['action'][] = array(
+      $this->headpage->xmlData['actionmenu']['action'][0]['action'][] = [
         'name' => 'new_'.$class,
         'type' => 'entry',
         'image' => $icon,
         'label' => $label,
-      );
+      ];
     }
   }
 
   /*! \brief    Filter extra POST and GET variables for this plugin.
    */
-  function detectPostActions()
+  function detectPostActions ()
   {
     $action = parent::detectPostActions();
     if (isset($_POST['SaveService'])) {
@@ -173,7 +173,7 @@ class ServerService extends simpleManagement
   /*! \brief  Edit an existing service here.
    *          Somebody clicked on the paper and pencil icon.
    */
-  function editEntry($action, array $target, array $all)
+  function editEntry ($action, array $target, array $all)
   {
     $s_entry = array_pop($target);
     if ($this->plugins[$s_entry]->acl_is_readable("")) {
@@ -187,7 +187,7 @@ class ServerService extends simpleManagement
   /*! \brief  Editing an object was caneled.
    *          Close dialogs/tabs and remove locks.
    */
-  protected function cancelEdit()
+  protected function cancelEdit ()
   {
     if (($this->backup == NULL) && $this->current) {
       $this->plugins[$this->current] = new $this->current($this->dn, $this);
@@ -205,7 +205,7 @@ class ServerService extends simpleManagement
 
   /*! \brief  Let the user create a new service
    */
-  function newService($action = '')
+  function newService ($action = '')
   {
     $this->closeDialogs();
     $serv = preg_replace('/^new_/', '', $action);
@@ -217,7 +217,7 @@ class ServerService extends simpleManagement
 
   /*! \brief  Save the currently edited service.
    */
-  function saveService()
+  function saveService ()
   {
     $this->dialogObject->save_object();
     $msgs = $this->dialogObject->check();
@@ -236,7 +236,7 @@ class ServerService extends simpleManagement
   /*!\brief   Close all opened dialogs
    *          And reset "dialog open" flags to display bottom buttons again.
    */
-  function closeDialogs()
+  function closeDialogs ()
   {
     parent::closeDialogs();
     $this->dialog = FALSE;
@@ -247,7 +247,7 @@ class ServerService extends simpleManagement
 
   /*! \brief    Remove the selected service(s)
    */
-  protected function removeService($action, array $target)
+  protected function removeService ($action, array $target)
   {
     foreach ($target as $s_entry) {
       $new_obj = new $s_entry($this->dn, $this);
@@ -263,7 +263,7 @@ class ServerService extends simpleManagement
     }
   }
 
-  function renderList()
+  function renderList ()
   {
     /* Save services in session, will be used by filterServerService when updating list */
     session::set('ServerService', $this->plugins);
@@ -272,7 +272,7 @@ class ServerService extends simpleManagement
 
   function updateServicesVars ($service)
   {
-    foreach (array('cn','dn') as $var) {
+    foreach (['cn','dn'] as $var) {
       if (isset($this->$var)) {
         $this->plugins[$service]->$var = $this->$var;
       }
@@ -281,7 +281,7 @@ class ServerService extends simpleManagement
 
   /*! \brief    Updates the status for a list of services.
    */
-  function updateServiceStatus($action, array $target)
+  function updateServiceStatus ($action, array $target)
   {
     /* Skip if this is a new server */
     if ($this->dn == 'new') {
@@ -304,7 +304,7 @@ class ServerService extends simpleManagement
   /*! \brief    Updates the status of a service and
    *             calls an external hook if specified in fusiondirectory.conf
    */
-  private function updateSingleServiceStatus($action, $service)
+  private function updateSingleServiceStatus ($action, $service)
   {
     if ($this->plugins[$service]->is_account) {
       $this->updateServicesVars($service);
@@ -328,7 +328,7 @@ class ServerService extends simpleManagement
           $target = $target[0];
         }
         if ($action == 'status') {
-          $res = $s_daemon->append_call('Service.is_running', $target, array('args' => array($service)));
+          $res = $s_daemon->append_call('Service.is_running', $target, ['args' => [$service]]);
 
           if ($s_daemon->is_error()) {
             msg_dialog::display(
@@ -339,7 +339,7 @@ class ServerService extends simpleManagement
             $this->plugins[$service]->setStatus($res == 'yes' ? 'running' : 'stopped');
           }
         } else {
-          $res = $s_daemon->append_call('Service.manage', $target, array('args' => array($service, $action)));
+          $res = $s_daemon->append_call('Service.manage', $target, ['args' => [$service, $action]]);
 
           if ($s_daemon->is_error()) {
             msg_dialog::display(
@@ -358,9 +358,9 @@ class ServerService extends simpleManagement
   /*! \brief   Returns a list of all used services
    *            CLASSNAME => _($this->plugins[*]->DisplayName);
    */
-  function getAllUsedServices()
+  function getAllUsedServices ()
   {
-    $ret = array();
+    $ret = [];
     foreach ($this->plugins as $name => $obj) {
       if ($obj->is_account) {
         if (isset($obj->DisplayName)) {
@@ -375,10 +375,10 @@ class ServerService extends simpleManagement
 
   /*! \brief    Returns a list of all unused services.
    */
-  function getAllUnusedServices()
+  function getAllUnusedServices ()
   {
     $tmp = $this->getAllUsedServices();
-    $pool_of_ocs = array();
+    $pool_of_ocs = [];
     foreach ($tmp as $name => $value) {
       $pool_of_ocs[] = get_class($this->plugins[$name]);
       if (isset($this->plugins[$name]->conflicts)) {
@@ -386,14 +386,14 @@ class ServerService extends simpleManagement
       }
     }
 
-    $ret = array();
+    $ret = [];
     foreach ($this->plugins as $name => $obj) {
       if (!$obj->acl_is_createable()) {
         continue;
       }
 
       /* Skip all pluigns that will lead into conflicts */
-      $conflicts = array();
+      $conflicts = [];
       if (isset($obj->conflicts)) {
         $conflicts = $obj->conflicts;
       }
@@ -413,23 +413,23 @@ class ServerService extends simpleManagement
 
   /*! \brief    No checks here.
    */
-  function check()
+  function check ()
   {
-    return array();
+    return [];
   }
 
   /*! \brief    Keep posted form values in opened dialogs
    */
-  function save_object()
+  function save_object ()
   {
     // save_object of the dialog is called in management::execute
   }
 
   /*! \brief Remove all active services
    */
-  function remove($fulldelete = FALSE)
+  function remove ($fulldelete = FALSE)
   {
-    $errors = array();
+    $errors = [];
     foreach ($this->plugins as $name => $obj) {
       $this->updateServicesVars($name);
       if ($this->plugins[$name]->initially_was_account) {
@@ -444,9 +444,9 @@ class ServerService extends simpleManagement
 
   /*! \brief    Save all active services
    */
-  function save()
+  function save ()
   {
-    $errors = array();
+    $errors = [];
     foreach ($this->plugins as $name => $obj) {
       $this->updateServicesVars($name);
 
@@ -464,7 +464,7 @@ class ServerService extends simpleManagement
 
   /*! \brief    Prepare active services to be copied.
    */
-  function resetCopyInfos()
+  function resetCopyInfos ()
   {
     $this->dn = 'new';
     foreach ($this->plugins as &$plugin) {
@@ -475,7 +475,7 @@ class ServerService extends simpleManagement
 
   /*! \brief    Forward plugin acls
    */
-  function set_acl_base($base)
+  function set_acl_base ($base)
   {
     $this->acl_base = $base;
     foreach ($this->plugins as $name => $obj) {
@@ -485,7 +485,7 @@ class ServerService extends simpleManagement
 
   /*! \brief    Forward plugin acls
    */
-  function set_acl_category($category)
+  function set_acl_category ($category)
   {
     $this->acl_category = $category;
     foreach ($this->plugins as $name => $obj) {
@@ -501,12 +501,12 @@ class ServerService extends simpleManagement
     unset($plugin);
   }
 
-  function getRequiredAttributes()
+  function getRequiredAttributes ()
   {
-    return array();
+    return [];
   }
 
-  function adapt_from_template($attrs, $skip = array())
+  function adapt_from_template ($attrs, $skip = [])
   {
     foreach ($this->plugins as &$plugin) {
       $plugin->adapt_from_template($attrs, $skip);
@@ -518,7 +518,7 @@ class ServerService extends simpleManagement
    *            Used in the filter class for services.
    *             class_filterServerService.inc
    */
-  static function getServiceList()
+  static function getServiceList ()
   {
     return session::get('ServerService');
   }
@@ -526,7 +526,7 @@ class ServerService extends simpleManagement
   /*! \brief    Returns an image for the service status.
    *            Used in the service list class.
    */
-  static function filterServiceStatus($a, $b, $c, $d)
+  static function filterServiceStatus ($a, $b, $c, $d)
   {
     $img = '';
     if (isset($d['0'])) {
diff --git a/systems/admin/systems/class_systemImport.inc b/systems/admin/systems/class_systemImport.inc
index cd250c04ee..a42be29366 100644
--- a/systems/admin/systems/class_systemImport.inc
+++ b/systems/admin/systems/class_systemImport.inc
@@ -29,15 +29,15 @@ class ImportServerAttribute extends ObjectSelectAttribute
 
 class systemImport extends simplePlugin
 {
-  protected $types = array();
+  protected $types = [];
 
-  static function getAttributesInfo($filter = '')
+  static function getAttributesInfo ($filter = '')
   {
-    return array(
-      'import' => array(
+    return [
+      'import' => [
         'template'  => get_template_path('server_import.tpl', TRUE, dirname(__FILE__)),
         'name'      => _('Import'),
-        'attrs'     => array(
+        'attrs'     => [
           new BaseSelectorAttribute(get_ou('workstationRDN')),
           new ImportServerAttribute(
             _('Server'), _('The server you wish to import hosts from'),
@@ -46,21 +46,21 @@ class systemImport extends simplePlugin
           new SelectAttribute(
             _('Type'), _('Type of objects you wish to import'),
             'type', TRUE,
-            array(), '', NULL
+            [], '', NULL
           ),
           new SelectAttribute (
             _('Template'), _('Select a template to apply to imported entries'),
             'template_dn', FALSE,
-            array(), '', NULL
+            [], '', NULL
           ),
           new ButtonAttribute (
             '', '',
             'import',
             _('Import')
           )
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -69,7 +69,7 @@ class systemImport extends simplePlugin
     $this->messages = FALSE;
 
     $this->attributesAccess['type']->setSubmitForm('typeChanged');
-    $choices = array();
+    $choices = [];
     foreach ($this->types as $type) {
       $infos = objects::infos($type);
       $choices[$type] = $infos['name'];
@@ -90,32 +90,32 @@ class systemImport extends simplePlugin
     }
     session::global_set("CurrentMainBase", $base);
 
-    $messages = array();
-    $dhcps    = array();
+    $messages = [];
+    $dhcps    = [];
     try {
       $dns    = objects::ls('dnsZone');
     } catch (NonExistingObjectTypeException $e) {
-      $dns    = array();
+      $dns    = [];
     }
     if (!empty($template_dn)) {
       $template = new template($type, $template_dn);
     }
     foreach ($hosts as $host) {
       if (!preg_match('/^([^.]+)\.(.*)$/', $host['id'], $m)) {
-        $messages[$host['id']] = array(sprintf(_('Could not parse %s'), $host['id']));
+        $messages[$host['id']] = [sprintf(_('Could not parse %s'), $host['id'])];
         continue;
       }
       $cn   = $m[1];
       $zone = $m[2];
       if (empty($host['ipAddress'])) {
-        $host['ipAddress'] = array();
+        $host['ipAddress'] = [];
       } elseif (!is_array($host['ipAddress'])) {
-        $host['ipAddress'] = array($host['ipAddress']);
+        $host['ipAddress'] = [$host['ipAddress']];
       }
       if (empty($host['hardwareAddress'])) {
-        $host['hardwareAddress'] = array();
+        $host['hardwareAddress'] = [];
       } elseif (!is_array($host['hardwareAddress'])) {
-        $host['hardwareAddress'] = array($host['hardwareAddress']);
+        $host['hardwareAddress'] = [$host['hardwareAddress']];
       }
 
       if (empty($template_dn)) {
@@ -133,15 +133,15 @@ class systemImport extends simplePlugin
       } else {
         $template->reset();
         // For now we only need to import workstations
-        $values = array(
-          'workstationGeneric' => array(
+        $values = [
+          'workstationGeneric' => [
             'base'          => $base,
             'cn'            => $cn,
             'description'   => $host['description'],
             'ipHostNumber'  => $host['ipAddress'],
             'macAddress'    => $host['hardwareAddress'],
-          )
-        );
+          ]
+        ];
         $error = $template->deserialize($values);
         if ($error !== TRUE) {
           $messages[$host['id']] = $error;
@@ -157,7 +157,7 @@ class systemImport extends simplePlugin
           list(, $dhcpParentNodes) = dhcpSystem::getDhcpParentNodes();
           foreach ($dhcpParentNodes as $dn => $attrs) {
             if (isset($attrs['dhcpNetMask'])) {
-              $dhcps[$dn] = array($attrs['cn'][0], normalize_netmask($attrs['dhcpNetMask'][0]));
+              $dhcps[$dn] = [$attrs['cn'][0], normalize_netmask($attrs['dhcpNetMask'][0])];
             }
           }
         }
@@ -168,14 +168,14 @@ class systemImport extends simplePlugin
             foreach ($baseObject->ipHostNumber as $ipHostNumber) {
               if (tests::is_in_network($ip, $mask, $ipHostNumber)) {
                 $tabObject->by_object['dhcpSystem']->attributesAccess['dhcpHosts']->addPostValue(
-                  array($dn, $baseObject->macAddress, $ipHostNumber, '')
+                  [$dn, $baseObject->macAddress, $ipHostNumber, '']
                 );
                 $tabObject->by_object['dhcpSystem']->attributesAccess['dhcpHosts']->applyPostValue();
               }
             }
           }
           if (empty($tabObject->by_object['dhcpSystem']->dhcpHosts)) {
-            $messages[$host['id']] = array(sprintf(_('No DHCP server found for IPs %s'), implode(',', $baseObject->ipHostNumber)));
+            $messages[$host['id']] = [sprintf(_('No DHCP server found for IPs %s'), implode(',', $baseObject->ipHostNumber))];
             continue;
           }
         }
@@ -186,15 +186,15 @@ class systemImport extends simplePlugin
         foreach ($dns as $dn => $value) {
           if (preg_match('/^'.$zone.'\.?$/', $value)) {
             $tabObject->by_object['dnsHost']->is_account  = TRUE;
-            $tabObject->by_object['dnsHost']->fdDNSZoneDn = array($dn);
+            $tabObject->by_object['dnsHost']->fdDNSZoneDn = [$dn];
             foreach ($baseObject->ipHostNumber as $ipHostNumber) {
-              $tabObject->by_object['dnsHost']->addRecord($dn, array($cn, 'aRecord', $ipHostNumber, ''));
+              $tabObject->by_object['dnsHost']->addRecord($dn, [$cn, 'aRecord', $ipHostNumber, '']);
             }
             break;
           }
         }
         if ($tabObject->by_object['dnsHost']->is_account == FALSE) {
-          $messages[$host['id']] = array(sprintf(_('No DNS server found for zone %s'), $zone));
+          $messages[$host['id']] = [sprintf(_('No DNS server found for zone %s'), $zone)];
           continue;
         }
       }
@@ -225,20 +225,20 @@ class systemImport extends simplePlugin
     return $messages;
   }
 
-  function typeChanged()
+  function typeChanged ()
   {
     $templates = objects::getTemplates($this->type);
     $this->attributesAccess['template_dn']->setChoices(array_keys($templates), array_values($templates));
   }
 
-  function execute()
+  function execute ()
   {
     $smarty = get_smarty();
     $smarty->assign('importResult', $this->messages);
     return parent::execute();
   }
 
-  function save()
+  function save ()
   {
   }
 
@@ -252,14 +252,14 @@ class systemImport extends simplePlugin
     $this->messages = $this->massImport($hosts, $this->type, $this->template_dn, $this->base);
   }
 
-  protected function getHosts($server_dn)
+  protected function getHosts ($server_dn)
   {
     die('Not implemented');
   }
 
-  protected function getExtraTabs($server_dn, $host)
+  protected function getExtraTabs ($server_dn, $host)
   {
-    return array();
+    return [];
   }
 }
 ?>
diff --git a/systems/admin/systems/class_systemManagement.inc b/systems/admin/systems/class_systemManagement.inc
index 43936f54d4..26440c058f 100644
--- a/systems/admin/systems/class_systemManagement.inc
+++ b/systems/admin/systems/class_systemManagement.inc
@@ -21,7 +21,7 @@
 
 class systemManagement extends simpleManagement
 {
-  protected $objectTypes  = array('server','workstation','terminal','printer','component','phone','mobilePhone');
+  protected $objectTypes  = ['server','workstation','terminal','printer','component','phone','mobilePhone'];
 
   protected $departmentBrowser      = TRUE;
   protected $departmentRootVisible  = FALSE;
@@ -31,28 +31,28 @@ class systemManagement extends simpleManagement
   protected $autoFilter       = TRUE;
   protected $autoActions      = TRUE;
 
-  protected $autoFilterAttributes = array('dn', 'cn', 'description', 'ipHostNumber', 'macAddress', 'gotoMode', 'FAIstate', 'FAIclass');
+  protected $autoFilterAttributes = ['dn', 'cn', 'description', 'ipHostNumber', 'macAddress', 'gotoMode', 'FAIstate', 'FAIclass'];
 
   public static $skipTemplates = FALSE;
 
   protected $siActive = FALSE;
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Systems'),
       'plDescription' => _('Systems Management'),
       'plIcon'        => 'geticon.php?context=devices&icon=computer&size=48',
       'plSelfModify'  => FALSE,
-      'plSection'     => array('systems' => array('name' => _('Systems'), 'priority' => 10)),
+      'plSection'     => ['systems' => ['name' => _('Systems'), 'priority' => 10]],
       'plPriority'    => 0,
-      'plManages'     => array('server','workstation','terminal','printer','component','phone','mobilePhone'),
+      'plManages'     => ['server','workstation','terminal','printer','component','phone','mobilePhone'],
 
-      'plProvidedAcls'  => array()
-    );
+      'plProvidedAcls'  => []
+    ];
   }
 
-  function __construct()
+  function __construct ()
   {
     $this->listXMLPath    = get_template_path('system-list.xml', TRUE, dirname(__FILE__));
 
@@ -74,24 +74,24 @@ class systemManagement extends simpleManagement
 
     // Register Daemon Events
     if ($this->siActive) {
-      $this->headpage->xmlData['actionmenu']['action'][2]['action'] = array();
-      $this->headpage->xmlData['actionmenu']['action'][3]['action'] = array();
+      $this->headpage->xmlData['actionmenu']['action'][2]['action'] = [];
+      $this->headpage->xmlData['actionmenu']['action'][3]['action'] = [];
       $events = argonautEventTypes::get_event_types();
       foreach ($events as $name => $data) {
         $this->registerAction('T_'.$name, 'handleEvent');
-        $this->headpage->xmlData['actionmenu']['action'][2]['action'][] = array(
+        $this->headpage->xmlData['actionmenu']['action'][2]['action'][] = [
         'name' => 'T_'.$name,
         'type' => 'entry',
         'image' => $data['img'],
         'label' => $data['name'],
-        );
+        ];
         $this->registerAction('S_'.$name, 'handleEvent');
-        $this->headpage->xmlData['actionmenu']['action'][3]['action'][] = array(
+        $this->headpage->xmlData['actionmenu']['action'][3]['action'][] = [
         'name' => 'S_'.$name,
         'type' => 'entry',
         'image' => $data['img'],
         'label' => $data['name'],
-        );
+        ];
       }
       $this->registerAction('ping', 'pingSystems');
     } else {
@@ -113,7 +113,7 @@ class systemManagement extends simpleManagement
   /*! \brief    Handle Argonaut events
    *            All schedules and triggered events are handled here.
    */
-  function handleEvent($action, array $target)
+  function handleEvent ($action, array $target)
   {
     if (!$this->siActive) {
       return;
@@ -130,7 +130,7 @@ class systemManagement extends simpleManagement
     $event = preg_replace('/^[TS]_/', '', $action);
 
     // Now send FAI/Argonaut events here.
-    $mac = array();
+    $mac = [];
 
     // Collect target mac addresses
     foreach ($target as $dn) {
@@ -151,12 +151,12 @@ class systemManagement extends simpleManagement
     /* Skip installation or update trigerred events,
      *  if this entry is currently processing.
      */
-    if ($triggered && in_array($event, array('reinstall','update'))) {
+    if ($triggered && in_array($event, ['reinstall','update'])) {
       foreach ($mac as $key => $mac_address) {
         if ($o_queue->is_currently_installing($mac_address)) {
           msg_dialog::display(_('Action canceled'), sprintf(_('System %s is currently installing'), $dn), ERROR_DIALOG);
           unset($mac[$key]);
-          logging::log('security', 'systems/'.get_class($this), '', array(), 'Skip adding "argonautAction::'.$event.'" for mac "'.$mac_address.'", there is already a job in progress.');
+          logging::log('security', 'systems/'.get_class($this), '', [], 'Skip adding "argonautAction::'.$event.'" for mac "'.$mac_address.'", there is already a job in progress.');
         }
       }
     }
@@ -191,14 +191,14 @@ class systemManagement extends simpleManagement
 
   /*! \brief Ping those systems and show the result in the list
    */
-  function pingSystems($action, array $target)
+  function pingSystems ($action, array $target)
   {
     if (!$this->siActive) {
       return;
     }
 
     $headpage = $this->getHeadpage();
-    $macs     = array();
+    $macs     = [];
 
     // Collect target mac addresses
     foreach ($target as $dn) {
@@ -216,7 +216,7 @@ class systemManagement extends simpleManagement
 
     $o_queue  = new supportDaemon();
 
-    $res = $o_queue->append_call('ping', array_values($macs), array('fullresult' => 1));
+    $res = $o_queue->append_call('ping', array_values($macs), ['fullresult' => 1]);
     if ($o_queue->is_error()) {
       msg_dialog::display(_('Infrastructure service'), msgPool::siError($o_queue->get_error()), ERROR_DIALOG);
     } else {
@@ -243,7 +243,7 @@ class systemManagement extends simpleManagement
   /*! \brief  Save event dialogs.
    *          And append the new Argonaut event.
    */
-  function saveEventDialog()
+  function saveEventDialog ()
   {
     $this->dialogObject->save_object();
     $msgs = $this->dialogObject->check();
@@ -264,7 +264,7 @@ class systemManagement extends simpleManagement
   /*! \brief  Detects actions/events send by the ui
    *           and the corresponding targets.
    */
-  function detectPostActions()
+  function detectPostActions ()
   {
     $action = parent::detectPostActions();
     if (isset($_POST['save_event_dialog'])) {
@@ -275,7 +275,7 @@ class systemManagement extends simpleManagement
     return $action;
   }
 
-  function handleSubAction($all)
+  function handleSubAction ($all)
   {
     if (parent::handleSubAction($all)) {
       return TRUE;
@@ -283,7 +283,7 @@ class systemManagement extends simpleManagement
       $service = $m[1];
       if (isset($this->tabObject->by_object['ServerService'])) {
         $this->tabObject->current = 'ServerService';
-        $all = array('action'  => 'edit', 'targets' => array($service));
+        $all = ['action'  => 'edit', 'targets' => [$service]];
         $this->tabObject->by_object['ServerService']->editEntry($all['action'], $all['targets'], $all);
       } else {
         trigger_error("Unknown tab: ServerService");
@@ -293,7 +293,7 @@ class systemManagement extends simpleManagement
     return FALSE;
   }
 
-  static function systemRelease($a, $b, $c, $objectclasses = NULL, $class = NULL)
+  static function systemRelease ($a, $b, $c, $objectclasses = NULL, $class = NULL)
   {
     global $config;
 
@@ -319,7 +319,7 @@ class systemManagement extends simpleManagement
     // Load information if needed
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search('(&(objectClass=gosaGroupOfNames)(FAIclass=*)(member='.$b.'))', array('FAIclass','cn'));
+    $ldap->search('(&(objectClass=gosaGroupOfNames)(FAIclass=*)(member='.$b.'))', ['FAIclass','cn']);
     while ($attrs = $ldap->fetch()) {
       $rel = htmlentities(preg_replace('/^.*:/', '', $attrs['FAIclass'][0]), ENT_COMPAT, 'UTF-8');
       $sys = htmlentities(sprintf(_('Inherited from %s'), $attrs['cn'][0]), ENT_COMPAT, 'UTF-8');
@@ -332,10 +332,10 @@ class systemManagement extends simpleManagement
     return '&nbsp;';
   }
 
-  static function listServices($row, $dn, $attrs)
+  static function listServices ($row, $dn, $attrs)
   {
     global $config;
-    static $services = array();
+    static $services = [];
     if (empty($services)) {
       foreach ($config->data['TABS']['SERVERSERVICE'] as $plug) {
         if (class_available($plug['CLASS'])) {
@@ -347,7 +347,7 @@ class systemManagement extends simpleManagement
     }
 
     // Load information if needed
-    $services_imgs = array();
+    $services_imgs = [];
     if (!empty($attrs)) {
       foreach ($services as $class => $service) {
         if ($service->is_this_account($attrs)) {
diff --git a/systems/admin/systems/class_terminalGeneric.inc b/systems/admin/systems/class_terminalGeneric.inc
index f010b304d3..5816277218 100644
--- a/systems/admin/systems/class_terminalGeneric.inc
+++ b/systems/admin/systems/class_terminalGeneric.inc
@@ -20,7 +20,7 @@
 
 class terminalGeneric extends workstationGeneric
 {
-  var $objectclasses = array('fdTerminal', 'ieee802Device');
+  var $objectclasses = ['fdTerminal', 'ieee802Device'];
 
   /*!
    *  \brief The main function : information about attributes
@@ -37,24 +37,24 @@ class terminalGeneric extends workstationGeneric
   }
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Terminal'),
       'plDescription' => _('Terminal information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('terminal' =>
-        array(
+      'plObjectType'  => ['terminal' =>
+        [
           'name'        => _('Terminal'),
           'description' => _('Terminal'),
           'filter'      => 'objectClass=fdTerminal',
           'icon'        => 'geticon.php?context=devices&icon=terminal&size=16',
           'ou'          => get_ou('terminalRDN'),
-        )
-      ),
+        ]
+      ],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 
diff --git a/systems/admin/systems/class_terminalStartup.inc b/systems/admin/systems/class_terminalStartup.inc
index 364125aeaf..3d6a9067c5 100644
--- a/systems/admin/systems/class_terminalStartup.inc
+++ b/systems/admin/systems/class_terminalStartup.inc
@@ -21,23 +21,23 @@
 
 class terminalStartup extends simplePlugin
 {
-  var $objectclasses = array('fdTerminalStartup');
+  var $objectclasses = ['fdTerminalStartup'];
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
   /* Return plugin information */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Startup'),
       'plDescription'   => _('Terminal startup'),
       'plSelfModify'    => FALSE,
       'plPriority'      => 2,
-      'plCategory'      => array('terminal'),
-      'plObjectType'    => array('terminal', 'ogroup-dynamic'),
+      'plCategory'      => ['terminal'],
+      'plObjectType'    => ['terminal', 'ogroup-dynamic'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   /*!
@@ -45,10 +45,10 @@ class terminalStartup extends simplePlugin
    */
   static function getAttributesInfo ()
   {
-    return array(
-      'startup' => array (
+    return [
+      'startup' => [
         'name' => _('Startup parameters'),
-        'attrs' => array (
+        'attrs' => [
           new SelectAttribute(
             _('Root server'), _('The root server the terminal should be using'),
             'gotoTerminalPath', FALSE
@@ -57,27 +57,27 @@ class terminalStartup extends simplePlugin
             _('Swap server'), _('The swap server the terminal should be using'),
             'gotoSwapServer', FALSE
           ),
-        )
-      ),
-      'remote_desktop' => array(
+        ]
+      ],
+      'remote_desktop' => [
         'name'  => _('Remote desktop'),
         'icon'  => 'geticon.php?context=devices&icon=server&size=16',
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute(
             _('Connect method'), _('Connect method'),
             'gotoXMethod', FALSE,
-            array('XDMCP', 'LDM', 'SHELL', 'TELNET', 'RDP'),
+            ['XDMCP', 'LDM', 'SHELL', 'TELNET', 'RDP'],
             '',
-            array(_('XDMCP'), _('LDM'), _('Shell'), _('Telnet'), _('Windows RDP'))
+            [_('XDMCP'), _('LDM'), _('Shell'), _('Telnet'), _('Windows RDP')]
           ),
           new SelectAttribute(
             _('Terminal server'), _('Terminal server'),
             'gotoXdmcpServer', FALSE,
-            array()
+            []
           )
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -87,9 +87,9 @@ class terminalStartup extends simplePlugin
     $this->attributesAccess['gotoXMethod']->setSubmitForm('updateServerList');
 
     /* Get NFS and NBD server lists */
-    $nfs = array();
-    $nbd = array();
-    $shareServers = objects::ls('server', array('cn' => 1, 'goExportEntry' => '*'), NULL, '(&(objectClass=goShareServer)(goExportEntry=*))');
+    $nfs = [];
+    $nbd = [];
+    $shareServers = objects::ls('server', ['cn' => 1, 'goExportEntry' => '*'], NULL, '(&(objectClass=goShareServer)(goExportEntry=*))');
     foreach ($shareServers as $server) {
       foreach ($server['goExportEntry'] as $entry) {
         $parts = explode('|', $entry);
@@ -125,7 +125,7 @@ class terminalStartup extends simplePlugin
   }
 
   /*! \brief Create a list of useable servers for the currently selected protocol */
-  function updateServerList()
+  function updateServerList ()
   {
     $servers = objects::ls('server', NULL, NULL, '(&(objectClass=goTerminalServer)(gotoSessionType='.strtoupper($this->gotoXMethod).'))');
     $this->attributesAccess['gotoXdmcpServer']->setChoices($servers);
diff --git a/systems/admin/systems/class_workstationGeneric.inc b/systems/admin/systems/class_workstationGeneric.inc
index e292998400..8d4b39e5d0 100644
--- a/systems/admin/systems/class_workstationGeneric.inc
+++ b/systems/admin/systems/class_workstationGeneric.inc
@@ -23,26 +23,26 @@ class workstationGeneric extends ipHostPlugin
 {
   var $mainTab = TRUE;
 
-  var $objectclasses = array('fdWorkstation', 'ieee802Device');
+  var $objectclasses = ['fdWorkstation', 'ieee802Device'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Workstation'),
       'plDescription' => _('Workstation information'),
       'plSelfModify'  => FALSE,
-      'plObjectType'  => array('workstation' =>
-        array(
+      'plObjectType'  => ['workstation' =>
+        [
           'name'        => _('Workstation'),
           'description' => _('Workstation'),
           'filter'      => 'objectClass=fdWorkstation',
           'ou'          => get_ou('workstationRDN'),
           'icon'        => 'geticon.php?context=devices&icon=computer&size=16',
           'mainAttr'    => 'cn',
-        )
-      ),
+        ]
+      ],
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ($word = NULL, $rdn = NULL)
@@ -53,10 +53,10 @@ class workstationGeneric extends ipHostPlugin
     if ($rdn === NULL) {
       $rdn = get_ou('workstationRDN');
     }
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Properties'),
-        'attrs' => array(
+        'attrs' => [
           new BaseSelectorAttribute($rdn),
           new HostNameAttribute (
             _('Name'),
@@ -83,12 +83,12 @@ class workstationGeneric extends ipHostPlugin
             'locked',
             'unlocked'
           ),
-        )
-      ),
-      'network' => array(
+        ]
+      ],
+      'network' => [
         'name'      => _('Network settings'),
         'icon'      => 'geticon.php?context=categories&icon=applications-internet&size=16',
-        'attrs'     => array(
+        'attrs'     => [
           new SetAttribute(
             new IPAttribute(
               _('IP address'), _('IP addresses this system uses (v4 or v6)'),
@@ -101,9 +101,9 @@ class workstationGeneric extends ipHostPlugin
               'macAddress', FALSE
             )
           ),
-        ),
-      ),
-    );
+        ],
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -113,7 +113,7 @@ class workstationGeneric extends ipHostPlugin
     $this->attributesAccess['cn']->setUnique(TRUE);
   }
 
-  protected function post_remove()
+  protected function post_remove ()
   {
     /* Clean queue from entries with this mac */
     if (class_available('supportDaemon')) {
diff --git a/systems/admin/systems/services/ldap/class_serviceLDAP.inc b/systems/admin/systems/services/ldap/class_serviceLDAP.inc
index bf29606ef9..e8a5802a3c 100644
--- a/systems/admin/systems/services/ldap/class_serviceLDAP.inc
+++ b/systems/admin/systems/services/ldap/class_serviceLDAP.inc
@@ -23,18 +23,18 @@
 class serviceLDAP extends simpleService
 {
   /* This plugin only writes its objectClass */
-  var $objectclasses    = array('goLdapServer');
+  var $objectclasses    = ['goLdapServer'];
 
   // The main function : information about attributes
   static function getAttributesInfo ()
   {
     global $config;
-    return array(
+    return [
       // Attributes are grouped by section
-      'main' => array(
+      'main' => [
         'name'  => _('LDAP service'),
-        'class' => array('fullwidth'),
-        'attrs' => array(
+        'class' => ['fullwidth'],
+        'attrs' => [
           new StringAttribute (
             _('LDAP Base'), _('The LDAP base to use for this LDAP server'),
             'goLdapBase', TRUE,
@@ -60,7 +60,7 @@ class serviceLDAP extends simpleService
           new SelectAttribute (
             _('Deref'), _('Specifies how alias dereferencing is done when performing a search'),
             'goLdapDeref', TRUE,
-            array('never','searching','finding','always'), 'never'
+            ['never','searching','finding','always'], 'never'
           ),
           new StringAttribute (
             _('TLS Cert'), _('Filepath to tls certificate'),
@@ -77,28 +77,28 @@ class serviceLDAP extends simpleService
           new SelectAttribute (
             _('TLS ReqCert'), _('Specifies what checks to perform on server certificates in a TLS session, if any'),
             'goLdapReqCert', TRUE,
-            array('never','allow','try','demand'), 'never'
+            ['never','allow','try','demand'], 'never'
           ),
           new SelectAttribute (
             _('TLS CrlCheck'), _('Specifies if the Certificate Revocation List (CRL) of the CA should be used to verify if the server certificates have  not  been  revoked'),
             'goLdapCrlCheck', TRUE,
-            array('none','peer','all'), 'none'
+            ['none','peer','all'], 'none'
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   /* Return plugin information for acl handling */
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('LDAP service'),
       'plDescription' => _('LDAP').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=applications&icon=ldap&size=16',
 
       'plProvidedAcls' => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 }
 ?>
diff --git a/systems/admin/systems/services/shares/class_serviceShare.inc b/systems/admin/systems/services/shares/class_serviceShare.inc
index c415de9797..acb5b4c7f8 100644
--- a/systems/admin/systems/services/shares/class_serviceShare.inc
+++ b/systems/admin/systems/services/shares/class_serviceShare.inc
@@ -21,32 +21,32 @@
 
 class serviceShare extends simpleService
 {
-  var $objectclasses = array('goShareServer');
+  var $objectclasses = ['goShareServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Share service'),
       'plDescription' => _('Share service').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=places&icon=folder-network&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'template'  => get_template_path('service_share.tpl', TRUE, dirname(__FILE__)),
         'name'      => _('Shares'),
-        'class'     => array('fullwidth'),
-        'attrs'     => array(
+        'class'     => ['fullwidth'],
+        'attrs'     => [
           new OrderedArrayAttribute(
             new PipeSeparatedCompositeAttribute(
               _('Shares this server hosts'),
               'goExportEntry',
-              array(
+              [
                 new StringAttribute(
                   _('Name'), _('Name of this share'),
                   'shareName', TRUE
@@ -58,11 +58,11 @@ class serviceShare extends simpleService
                 new SelectAttribute(
                   _('Type'), _('Type of share'),
                   'shareType', TRUE,
-                  array('CIFS','NBD','NCP','NFS','netatalk','samba','local')
+                  ['CIFS','NBD','NCP','NFS','netatalk','samba','local']
                 ),
                 new SelectAttribute(
                   _('Codepage'), _('Codepage for this share'),
-                  'shareCodepage', TRUE, array()
+                  'shareCodepage', TRUE, []
                 ),
                 new StringAttribute(
                   _('Path / Volume'), _('Path or volume concerned by this share'),
@@ -71,17 +71,17 @@ class serviceShare extends simpleService
                 new StringAttribute(
                   _('Option'), _('Special option(s) for this share'), 'shareOption'
                 ),
-              )
+              ]
             ),
             // no order
             FALSE,
-            array(),
+            [],
             // edit button
             TRUE
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $parent = NULL)
@@ -95,10 +95,10 @@ class serviceShare extends simpleService
     );
   }
 
-  function getCharsets()
+  function getCharsets ()
   {
     global $config;
-    $charsets = array();
+    $charsets = [];
 
     $configEncodings = $config->get_cfg_value('encodings', NULL);
     if ($configEncodings === NULL) {
diff --git a/systems/admin/systems/services/terminal/class_serviceTerminal.inc b/systems/admin/systems/services/terminal/class_serviceTerminal.inc
index df98e0ea2b..7812cd4c54 100644
--- a/systems/admin/systems/services/terminal/class_serviceTerminal.inc
+++ b/systems/admin/systems/services/terminal/class_serviceTerminal.inc
@@ -21,25 +21,25 @@
 
 class serviceTerminal extends simpleService
 {
-  var $objectclasses = array('goTerminalServer');
+  var $objectclasses = ['goTerminalServer'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'   => _('Terminal service'),
       'plDescription' => _('Terminal service').' ('._('Services').')',
       'plIcon'        => 'geticon.php?context=devices&icon=terminal&size=16',
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-      return array (
-      'section1' => array (
+      return  [
+      'section1' => [
         'name'  => _('Terminal service'),
-        'attrs' => array (
+        'attrs' => [
           new BooleanAttribute (
             _('Temporary disable login'),
             _('Disables the login on this terminal server'),
@@ -54,14 +54,14 @@ class serviceTerminal extends simpleService
               _('Supported session types'),
               _('The session types supported by this terminal server'),
               'gotoSessionType', FALSE,
-              array('XDMCP', 'LDM', 'SHELL', 'TELNET', 'RDP'),
+              ['XDMCP', 'LDM', 'SHELL', 'TELNET', 'RDP'],
               '',
-              array(_('XDMCP'), _('LDM'), _('Shell'), _('Telnet'), _('Windows RDP'))
+              [_('XDMCP'), _('LDM'), _('Shell'), _('Telnet'), _('Windows RDP')]
             )
           )
-        )
-      )
-    );
+        ]
+      ]
+      ];
   }
 }
 
diff --git a/systems/admin/systems/tabs_server.inc b/systems/admin/systems/tabs_server.inc
index 1e7a4f8148..47dbfa4220 100644
--- a/systems/admin/systems/tabs_server.inc
+++ b/systems/admin/systems/tabs_server.inc
@@ -21,7 +21,7 @@
 
 class servtabs extends simpleTabs
 {
-  function save()
+  function save ()
   {
     $errors = parent::save();
 
diff --git a/systems/config/systems/class_systemsPluginConfig.inc b/systems/config/systems/class_systemsPluginConfig.inc
index 9680932d65..ab88f75768 100644
--- a/systems/config/systems/class_systemsPluginConfig.inc
+++ b/systems/config/systems/class_systemsPluginConfig.inc
@@ -20,27 +20,27 @@
 
 class systemsPluginConfig extends simplePlugin
 {
-  var $objectclasses = array('fdSystemsPluginConf');
+  var $objectclasses = ['fdSystemsPluginConf'];
 
-  static protected $ipClasses = array();
+  static protected $ipClasses = [];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Systems'),
       'plDescription'   => _('Systems plugin configuration'),
-      'plObjectType'    => array('configuration'),
+      'plObjectType'    => ['configuration'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'rdns' => array(
+    return [
+      'rdns' => [
         'name'  => _('LDAP tree for systems'),
-        'attrs' => array(
+        'attrs' => [
           new StringAttribute (
             _('Systems RDN'), _('Branch in which systems will be stored'),
             'fdSystemRDN', TRUE,
@@ -81,16 +81,16 @@ class systemsPluginConfig extends simplePlugin
             'fdMobilePhoneRDN', TRUE,
             'ou=mobile,ou=systems'
           ),
-        )
-      ),
-      'config' => array(
+        ]
+      ],
+      'config' => [
         'name'  => _('Miscellaneous'),
-        'attrs' => array(
+        'attrs' => [
           new OrderedArrayAttribute (
             new CompositeAttribute(
               _('Available encodings for share services'),
               'fdEncodings',
-              array(
+              [
                 new StringAttribute (
                   _('Encoding'), _('The encoding code name'),
                   'encoding_code', TRUE, '', '',
@@ -101,19 +101,19 @@ class systemsPluginConfig extends simplePlugin
                   'encoding_label', TRUE, '', '',
                   '/^[^=]+$/'
                 ),
-              ),
+              ],
               '/^([^=]*)=([^=]*)$/',
               '%s=%s',
               '',
               _('Encodings')
             ),
             FALSE, /* no order */
-            array(
+            [
               'UTF-8=UTF-8', 'ISO8859-1=ISO8859-1 (Latin 1)',
               'ISO8859-2=ISO8859-2 (Latin 2)', 'ISO8859-3=ISO8859-3 (Latin 3)',
               'ISO8859-4=ISO8859-4 (Latin 4)', 'ISO8859-5=ISO8859-5 (Latin 5)',
               'cp850=CP850 (Europe)'
-            ),
+            ],
             TRUE /* edit enabled */
           ),
           new SetAttribute(
@@ -121,11 +121,11 @@ class systemsPluginConfig extends simplePlugin
               _('Mandatory IP'), _('Object types tabs for which IP field should be mandatory'),
               'fdMandatoryIpClasses', FALSE
             ),
-            array('componentGeneric','printGeneric','workstationGeneric','terminalGeneric','serverGeneric')
+            ['componentGeneric','printGeneric','workstationGeneric','terminalGeneric','serverGeneric']
           ),
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -134,7 +134,7 @@ class systemsPluginConfig extends simplePlugin
 
     if (empty(static::$ipClasses)) {
       $plist = session::global_get('plist');
-      static::$ipClasses = array();
+      static::$ipClasses = [];
       foreach ($plist->info as $cname => $info) {
         if ($cname == 'all') {
           continue;
diff --git a/user-reminder/config/user-reminder/class_userReminderConfig.inc b/user-reminder/config/user-reminder/class_userReminderConfig.inc
index 752b7d66f7..2008bb2595 100644
--- a/user-reminder/config/user-reminder/class_userReminderConfig.inc
+++ b/user-reminder/config/user-reminder/class_userReminderConfig.inc
@@ -20,25 +20,25 @@
 
 class userReminderConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdUserReminderPluginConf');
+  var $objectclasses  = ['fdUserReminderPluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('User reminder'),
       'plDescription'   => _('Configuration for the reminder of accounts expiration'),
-      'plObjectType'    => array('configuration'),
+      'plObjectType'    => ['configuration'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('User reminder settings'),
-        'attrs' => array(
+        'attrs' => [
           new IntAttribute (
             _('Delay before expiration'), _('Days before expiration to send the first mail'),
             'fdUserReminderAlertDelay', TRUE,
@@ -64,11 +64,11 @@ class userReminderConfig extends simplePlugin
             'fdUserReminderUseAlternate', TRUE,
             TRUE
           ),
-        )
-      ),
-      'emailppolicy' => array(
+        ]
+      ],
+      'emailppolicy' => [
         'name'  => _('Ppolicy email settings'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Forward alerts to the manager'), _('Forward ppolicy alerts to the manager'),
             'fdUserReminderForwardPpolicyAlert', FALSE,
@@ -90,11 +90,11 @@ class userReminderConfig extends simplePlugin
               (empty($_SERVER['REQUEST_URI']) ? $_SERVER['PATH_INFO'] : $_SERVER['REQUEST_URI']).
               "\n")
           )
-        )
-      ),
-      'email1' => array(
+        ]
+      ],
+      'email1' => [
         'name'  => _('Alert email settings'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Forward alerts to the manager'), _('Forward alerts to the manager'),
             'fdUserReminderForwardAlert', TRUE,
@@ -116,11 +116,11 @@ class userReminderConfig extends simplePlugin
               (empty($_SERVER['REQUEST_URI']) ? $_SERVER['PATH_INFO'] : $_SERVER['REQUEST_URI']).
               '/expired_postpone.php?uid=%2$s&token=%3$s'."\n")
           )
-        )
-      ),
-      'email2' => array(
+        ]
+      ],
+      'email2' => [
         'name'  => _('Confirmation email settings'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Forward confirmation to the manager'), _('Forward account extension confirmation to the manager'),
             'fdUserReminderForwardConfirmation', TRUE,
@@ -142,9 +142,9 @@ class userReminderConfig extends simplePlugin
             FALSE,
             'ou=reminder'
           )
-        )
-      )
-    );
+        ]
+      ]
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE, $attributesInfo = NULL)
@@ -158,7 +158,7 @@ class userReminderConfig extends simplePlugin
     }
   }
 
-  protected function post_save()
+  protected function post_save ()
   {
     global $config;
     $ldap = $config->get_ldap_link();
diff --git a/user-reminder/html/class_expiredUserPostpone.inc b/user-reminder/html/class_expiredUserPostpone.inc
index bf41094ee1..d4b593290e 100644
--- a/user-reminder/html/class_expiredUserPostpone.inc
+++ b/user-reminder/html/class_expiredUserPostpone.inc
@@ -25,7 +25,7 @@ require_once('variables.inc');
 
 class expiredUserPostpone extends standAlonePage
 {
-  function readLdapConfig()
+  function readLdapConfig ()
   {
     global $config;
     $this->forward_postpone = ($config->get_cfg_value('userReminderForwardConfirmation', 'TRUE') == 'TRUE');
@@ -39,7 +39,7 @@ class expiredUserPostpone extends standAlonePage
     return TRUE;
   }
 
-  function execute()
+  function execute ()
   {
     global $error_collector, $error_collector_mailto;
     if (!$this->activated) {
@@ -50,7 +50,7 @@ class expiredUserPostpone extends standAlonePage
       // Check if the token match
       $this->uid = $_GET['uid'];
       if ($this->checkToken($_GET['token'])) {
-        $this->message = array();
+        $this->message = [];
         $this->postponeExpiration();
         if (!empty($this->message)) {
           msg_dialog::displayChecks($this->message);
@@ -95,7 +95,7 @@ class expiredUserPostpone extends standAlonePage
     $smarty->display(get_template_path('user-reminder.tpl'));
   }
 
-  function checkToken($token)
+  function checkToken ($token)
   {
     global $config;
     $sha_token = '{SHA}'.base64_encode(hash('sha256', 'expired'.$token, TRUE));
@@ -117,7 +117,7 @@ class expiredUserPostpone extends standAlonePage
     }
   }
 
-  function deleteToken()
+  function deleteToken ()
   {
     global $config;
 
@@ -130,7 +130,7 @@ class expiredUserPostpone extends standAlonePage
     }
   }
 
-  function postponeExpiration()
+  function postponeExpiration ()
   {
     global $config;
     $dn = $this->getUserDn();
@@ -167,13 +167,13 @@ class expiredUserPostpone extends standAlonePage
     if ($this->forward_postpone) {
       $ldap = $config->get_ldap_link();
       if (empty($manager_dn)) {
-        $ldap->cat($userTabs->getBaseObject()->base, array('manager'));
+        $ldap->cat($userTabs->getBaseObject()->base, ['manager']);
         if ($attrs = $ldap->fetch() && isset($attrs['manager'][0])) {
           $manager_dn = $attrs['manager'][0];
         }
       }
       if (!empty($manager_dn)) {
-        $ldap->cat($manager_dn, array('cn', 'mail', 'gosaMailAlternateAddress', 'supannAutreMail', 'fdPrivateMail'));
+        $ldap->cat($manager_dn, ['cn', 'mail', 'gosaMailAlternateAddress', 'supannAutreMail', 'fdPrivateMail']);
         if ($attrs = $ldap->fetch()) {
           if (!empty($attrs['mail'][0])) {
             $manager_mail = $attrs['mail'][0];
@@ -190,7 +190,7 @@ class expiredUserPostpone extends standAlonePage
     $this->sendConfirmationMail($cn, $email_address, $manager_mail);
   }
 
-  function sendConfirmationMail($cn, $email_address, $manager_mail)
+  function sendConfirmationMail ($cn, $email_address, $manager_mail)
   {
     if (empty($this->mail_body) || empty($this->mail_subject)) {
       return;
@@ -206,7 +206,7 @@ class expiredUserPostpone extends standAlonePage
     }
   }
 
-  function getUserDn()
+  function getUserDn ()
   {
     $users = objects::ls('user', NULL, NULL, '(uid='.$this->uid.')');
 
diff --git a/weblink/admin/systems/weblink/class_webLink.inc b/weblink/admin/systems/weblink/class_webLink.inc
index c0db90c86a..2219f74172 100644
--- a/weblink/admin/systems/weblink/class_webLink.inc
+++ b/weblink/admin/systems/weblink/class_webLink.inc
@@ -20,44 +20,44 @@
 
 class webLink extends simplePlugin
 {
-  var $objectclasses  = array('webLink');
+  var $objectclasses  = ['webLink'];
   var $displayHeader  = TRUE;
 
-  var $inheritance = array('gosaGroupOfNames' => 'member');
+  var $inheritance = ['gosaGroupOfNames' => 'member'];
 
   static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Web link'),
       'plDescription'   => _('Edit web link'),
       'plIcon'          => 'geticon.php?context=applications&icon=weblink&size=48',
       'plSmallIcon'     => 'geticon.php?context=applications&icon=weblink&size=16',
       'plSelfModify'    => FALSE,
-      'plObjectType'    => array('workstation','server','ipmi','component','printer'),
+      'plObjectType'    => ['workstation','server','ipmi','component','printer'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'links' => array(
+    return [
+      'links' => [
         'name'  => _('Links'),
-        'attrs' => array(
+        'attrs' => [
           new DisplayAttribute (
             _('Links'), _('Web links to this computer'),
             'fdWebLink', FALSE
           ),
-        )
-      ),
-      'settings' => array(
+        ]
+      ],
+      'settings' => [
         'name'  => _('Settings'),
-        'attrs' => array(
+        'attrs' => [
           new SelectAttribute (
             _('Protocol'), _('Protocol to use to access this computer Web page'),
             'fdWebLinkProtocol', TRUE,
-            array('https', 'http')
+            ['https', 'http']
           ),
           new SetAttribute (
             new URLAttribute (
@@ -65,9 +65,9 @@ class webLink extends simplePlugin
               'fdWebLinkURL', FALSE
             )
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 
   function __construct ($dn = NULL, $object = NULL, $parent = NULL, $mainTab = FALSE)
@@ -77,7 +77,7 @@ class webLink extends simplePlugin
     $this->attributesAccess['fdWebLink']->setAllowHTML(TRUE);
   }
 
-  function renderAttributes($readOnly = FALSE)
+  function renderAttributes ($readOnly = FALSE)
   {
     $autoLinks = $this->computeLinks();
     $html = '';
@@ -103,7 +103,7 @@ class webLink extends simplePlugin
     return parent::renderAttributes($readOnly);
   }
 
-  function computeLinks()
+  function computeLinks ()
   {
     global $config;
     if ($this->member_of_group) {
@@ -114,7 +114,7 @@ class webLink extends simplePlugin
     $basetab  = $this->parent->getBaseObject();
     $hosts    = $basetab->ipHostNumber;
     if (!is_array($hosts)) {
-      $hosts = array($hosts);
+      $hosts = [$hosts];
     }
     if (isset($this->parent->by_object['dnsHost']) && ($this->parent->by_object['dnsHost']->is_account)) {
       $zones  = $this->parent->by_object['dnsHost']->fdDNSZoneDn;
diff --git a/webservice/config/class_webserviceConfig.inc b/webservice/config/class_webserviceConfig.inc
index fc2e506e6b..d18e94636b 100644
--- a/webservice/config/class_webserviceConfig.inc
+++ b/webservice/config/class_webserviceConfig.inc
@@ -20,35 +20,35 @@
 
 class webserviceConfig extends simplePlugin
 {
-  var $objectclasses  = array('fdWebservicePluginConf');
+  var $objectclasses  = ['fdWebservicePluginConf'];
 
-  static function plInfo()
+  static function plInfo ()
   {
-    return array(
+    return [
       'plShortName'     => _('Webservice configuration'),
       'plDescription'   => _('FusionDirectory webservice plugin configuration'),
       'plSelfModify'    => FALSE,
-      'plCategory'      => array('configuration'),
-      'plObjectType'    => array('smallConfig'),
+      'plCategory'      => ['configuration'],
+      'plObjectType'    => ['smallConfig'],
 
       'plProvidedAcls'  => parent::generatePlProvidedAcls(static::getAttributesInfo())
-    );
+    ];
   }
 
   static function getAttributesInfo ()
   {
-    return array(
-      'main' => array(
+    return [
+      'main' => [
         'name'  => _('Webservice'),
-        'attrs' => array(
+        'attrs' => [
           new BooleanAttribute (
             _('Force SSL'), _('Allow only HTTPS JSON-RPC requests'),
             'fdWebserviceForceSSL', TRUE,
             TRUE
           ),
-        )
-      ),
-    );
+        ]
+      ],
+    ];
   }
 }
 ?>
diff --git a/webservice/html/jsonrpc.php b/webservice/html/jsonrpc.php
index d57db17952..1ffc9b5b05 100644
--- a/webservice/html/jsonrpc.php
+++ b/webservice/html/jsonrpc.php
@@ -29,7 +29,7 @@
 ini_set('session.use_cookies', 0);
 ini_set('session.use_only_cookies', 1);
 
-function authenticateHeader($message = 'Authentication required')
+function authenticateHeader ($message = 'Authentication required')
 {
   header('WWW-Authenticate: Basic realm="FusionDirectory"');
   header('HTTP/1.0 401 Unauthorized');
@@ -42,7 +42,7 @@ require_once("functions.inc");
 require_once("variables.inc");
 require_once("jsonrpcphp/jsonRPCServer.php");
 
-function initiateRPCSession($id = NULL, $ldap = NULL, $user = NULL, $pwd = NULL)
+function initiateRPCSession ($id = NULL, $ldap = NULL, $user = NULL, $pwd = NULL)
 {
   global $config, $class_mapping, $BASE_DIR, $ui, $ssl;
 
@@ -125,7 +125,7 @@ class fdRPCService
   {
   }
 
-  function __call($method, $params)
+  function __call ($method, $params)
   {
     global $config;
     if (preg_match('/^_(.*)$/', $method, $m)) {
@@ -134,7 +134,7 @@ class fdRPCService
 
     if ($method == 'listLdaps') {
       $config = new config(CONFIG_DIR."/".CONFIG_FILE, $BASE_DIR);
-      $ldaps = array();
+      $ldaps = [];
       foreach ($config->data['LOCATIONS'] as $id => $location) {
         $ldaps[$id] = $location['NAME'];
       }
@@ -153,10 +153,10 @@ class fdRPCService
     }
     $this->ldap->cd($config->current['BASE']);
 
-    return call_user_func_array(array($this, '_'.$method), $params);
+    return call_user_func_array([$this, '_'.$method], $params);
   }
 
-  protected function checkAccess($type, $tabs = NULL, $dn = NULL)
+  protected function checkAccess ($type, $tabs = NULL, $dn = NULL)
   {
     global $ui;
     $infos = objects::infos($type);
@@ -166,12 +166,12 @@ class fdRPCService
     } else {
       $self = '';
     }
-    if (!$plist->check_access(array('ACL' => $infos['aclCategory'].$self))) {
+    if (!$plist->check_access(['ACL' => $infos['aclCategory'].$self])) {
       throw new FusionDirectoryException("Unsufficient rights for accessing type '$type$self'");
     }
     if ($tabs !== NULL) {
       if (!is_array($tabs)) {
-        $tabs = array($tabs);
+        $tabs = [$tabs];
       }
       foreach ($tabs as $tab) {
         $pInfos = pluglist::pluginInfos($tab);
@@ -181,7 +181,7 @@ class fdRPCService
         if (!isset($pInfos['plCategory'])) {
           throw new FusionDirectoryException("Tab '$tab' of type '$type' has no ACL category");
         }
-        if (!$plist->check_access(array('ACL' => join($self.',', $pInfos['plCategory']).$self))) {
+        if (!$plist->check_access(['ACL' => join($self.',', $pInfos['plCategory']).$self])) {
           throw new FusionDirectoryException("Unsufficient rights for accessing tab '$tab' of type '$type$self'");
         }
       }
@@ -226,7 +226,7 @@ class fdRPCService
   /*!
    * \brief Get information about objectType $type
    */
-  protected function _infos($type)
+  protected function _infos ($type)
   {
     $this->checkAccess($type);
 
@@ -241,11 +241,11 @@ class fdRPCService
   /*!
    * \brief List existing object types
    */
-  protected function _listTypes()
+  protected function _listTypes ()
   {
     $types  = objects::types();
 
-    $result = array();
+    $result = [];
     foreach ($types as $type) {
       $infos          = objects::infos($type);
       $result[$type]  = $infos['name'];
@@ -256,7 +256,7 @@ class fdRPCService
   /*!
    * \brief List tabs on an object
    */
-  protected function _listTabs($type, $dn = NULL)
+  protected function _listTabs ($type, $dn = NULL)
   {
     $this->checkAccess($type, NULL, $dn);
 
@@ -266,12 +266,12 @@ class fdRPCService
       $tabobject = objects::open($dn, $type);
     }
 
-    $tabs = array();
+    $tabs = [];
     foreach ($tabobject->by_object as $tab => $obj) {
-      $tabs[$tab] = array(
+      $tabs[$tab] = [
         'name'    => $tabobject->by_name[$tab],
         'active'  => ($obj->is_account || $obj->ignore_account)
-      );
+      ];
     }
     return $tabs;
   }
@@ -279,30 +279,30 @@ class fdRPCService
   /*!
    * \brief Deactivate a tab of an object
    */
-  protected function _removetab($type, $dn, $tab)
+  protected function _removetab ($type, $dn, $tab)
   {
     $this->checkAccess($type, $tab, $dn);
     $tabobject = objects::open($dn, $type);
     $tabobject->current = $tab;
     if (!is_subclass_of($tabobject->by_object[$tab], 'simplePlugin')) {
-      return array('errors' => array('Tab '.$tab.' is not based on simplePlugin, can’t remove it'));
+      return ['errors' => ['Tab '.$tab.' is not based on simplePlugin, can’t remove it']];
     } elseif (!$tabobject->by_object[$tab]->displayHeader) {
-      return array('errors' => array('Tab '.$tab.' cannot be deactivated, can’t remove it'));
+      return ['errors' => ['Tab '.$tab.' cannot be deactivated, can’t remove it']];
     } elseif (!$tabobject->by_object[$tab]->is_account) {
-      return array('errors' => array('Tab '.$tab.' is not activated on "'.$dn.'", can’t remove it'));
+      return ['errors' => ['Tab '.$tab.' is not activated on "'.$dn.'", can’t remove it']];
     } elseif (!$tabobject->by_object[$tab]->acl_is_removeable()) {
-      return array('errors' => array('You don\'t have sufficient rights to disable tab "'.$tab.'"'));
+      return ['errors' => ['You don\'t have sufficient rights to disable tab "'.$tab.'"']];
     } else {
       list($disabled, $buttonText, $text) = $tabobject->by_object[$tab]->getDisplayHeaderInfos();
       if ($disabled) {
-        return array('errors' => array($text));
+        return ['errors' => [$text]];
       }
     }
-    $_POST = array($tab.'_modify_state' => 1);
+    $_POST = [$tab.'_modify_state' => 1];
     $tabobject->save_object();
     $errors = $tabobject->save();
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $tabobject->dn;
   }
@@ -310,7 +310,7 @@ class fdRPCService
   /*!
    * \brief Get all form fields from an object (or object type)
    */
-  protected function _formfields($type, $dn = NULL, $tab = NULL)
+  protected function _formfields ($type, $dn = NULL, $tab = NULL)
   {
     $this->checkAccess($type, $tab, $dn);
 
@@ -327,7 +327,7 @@ class fdRPCService
     if (is_subclass_of($object, 'simplePlugin')) {
       $fields = $object->attributesInfo;
       foreach ($fields as &$section) {
-        $attributes = array();
+        $attributes = [];
         foreach ($section['attrs'] as $attr) {
           if ($object->acl_is_readable($attr->getAcl())) {
             $attr->serializeAttribute($attributes, TRUE);
@@ -339,28 +339,28 @@ class fdRPCService
       unset($section);
     } else {
       /* fallback for old plugins */
-      $fields = array('main' => array('attrs' => array(), 'name' => _('Plugin')));
+      $fields = ['main' => ['attrs' => [], 'name' => _('Plugin')]];
       foreach ($object->attributes as $attr) {
         if ($object->acl_is_readable($attr.'Acl')) {
-          $fields['main']['attrs'][$attr] = array(
+          $fields['main']['attrs'][$attr] = [
             'value'       => $object->$attr,
             'required'    => FALSE,
             'disabled'    => FALSE,
             'label'       => $attr,
             'type'        => 'OldPluginAttribute',
             'description' => '',
-          );
+          ];
         }
       }
       $fields['main']['attrs_order'] = array_keys($fields['main']['attrs']);
     }
-    return array('sections' => $fields, 'sections_order' => array_keys($fields));
+    return ['sections' => $fields, 'sections_order' => array_keys($fields)];
   }
 
   /*!
    * \brief Update values of an object's attributes using POST as if the webpage was sent
    */
-  protected function _formpost($type, $dn, $tab, $values)
+  protected function _formpost ($type, $dn, $tab, $values)
   {
     $this->checkAccess($type, $tab, $dn);
 
@@ -385,7 +385,7 @@ class fdRPCService
     $tabobject->save_object();
     $errors = $tabobject->save();
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $tabobject->dn;
   }
@@ -393,7 +393,7 @@ class fdRPCService
   /*!
    * \brief Get all internal fields from an object (or object type)
    */
-  protected function _getfields($type, $dn = NULL, $tab = NULL)
+  protected function _getfields ($type, $dn = NULL, $tab = NULL)
   {
     $this->checkAccess($type, $tab, $dn);
 
@@ -410,7 +410,7 @@ class fdRPCService
     if (is_subclass_of($object, 'simplePlugin')) {
       $fields = $object->attributesInfo;
       foreach ($fields as &$section) {
-        $attributes = array();
+        $attributes = [];
         foreach ($section['attrs'] as $attr) {
           if ($object->acl_is_readable($attr->getAcl())) {
             $attr->serializeAttribute($attributes, FALSE);
@@ -422,7 +422,7 @@ class fdRPCService
       unset($section);
     } else {
       /* fallback for old plugins */
-      $fields = array('main' => array('attrs' => array(), 'name' => _('Plugin')));
+      $fields = ['main' => ['attrs' => [], 'name' => _('Plugin')]];
       foreach ($object->attributes as $attr) {
         if ($object->acl_is_readable($attr.'Acl')) {
           $fields['main']['attrs'][$attr] = $object->$attr;
@@ -430,13 +430,13 @@ class fdRPCService
       }
       $fields['main']['attrs_order'] = array_keys($fields['main']['attrs']);
     }
-    return array('sections' => $fields, 'sections_order' => array_keys($fields));
+    return ['sections' => $fields, 'sections_order' => array_keys($fields)];
   }
 
   /*!
    * \brief Set internal values of an object's attributes and save it
    */
-  protected function _setfields($type, $dn, $values)
+  protected function _setfields ($type, $dn, $values)
   {
     $this->checkAccess($type, array_keys($values), $dn);
     if ($dn === NULL) {
@@ -446,7 +446,7 @@ class fdRPCService
     }
     foreach ($values as $tab => $tabvalues) {
       if (!isset($tabobject->by_object[$tab])) {
-        return array('errors' => array('This tab does not exists: "'.$tab.'"'));
+        return ['errors' => ['This tab does not exists: "'.$tab.'"']];
       }
       if (is_subclass_of($tabobject->by_object[$tab], 'simplePlugin') &&
           $tabobject->by_object[$tab]->displayHeader &&
@@ -454,24 +454,24 @@ class fdRPCService
         ) {
         list($disabled, $buttonText, $text) = $tabobject->by_object[$tab]->getDisplayHeaderInfos();
         if ($disabled) {
-          return array('errors' => array($text));
+          return ['errors' => [$text]];
         }
         if ($tabobject->by_object[$tab]->acl_is_createable()) {
           $tabobject->by_object[$tab]->is_account = TRUE;
         } else {
-          return array('errors' => array('You don\'t have sufficient rights to enable tab "'.$tab.'"'));
+          return ['errors' => ['You don\'t have sufficient rights to enable tab "'.$tab.'"']];
         }
       }
       $error = $tabobject->by_object[$tab]->deserializeValues($tabvalues);
       if ($error !== TRUE) {
-        return array('errors' => array($error));
+        return ['errors' => [$error]];
       }
       $tabobject->current = $tab;
       $tabobject->save_object(); /* Should not do much as POST is empty, but in some cases is needed */
     }
     $errors = $tabobject->save();
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $tabobject->dn;
   }
@@ -479,7 +479,7 @@ class fdRPCService
   /*!
    * \brief Add values to an object's attributes and save it
    */
-  protected function _addvalues($type, $dn, $values)
+  protected function _addvalues ($type, $dn, $values)
   {
     return $this->adddelvalues($type, $dn, $values, TRUE);
   }
@@ -487,22 +487,22 @@ class fdRPCService
   /*!
    * \brief Delete values from an object's attributes and save it
    */
-  protected function _delvalues($type, $dn, $values)
+  protected function _delvalues ($type, $dn, $values)
   {
     return $this->adddelvalues($type, $dn, $values, FALSE);
   }
 
-  private function adddelvalues($type, $dn, $values, $add)
+  private function adddelvalues ($type, $dn, $values, $add)
   {
     $this->checkAccess($type, array_keys($values), $dn);
     if ($dn === NULL) {
-      return array('errors' => array('No DN provided'));
+      return ['errors' => ['No DN provided']];
     } else {
       $tabobject = objects::open($dn, $type);
     }
     foreach ($values as $tab => $tabvalues) {
       if (!isset($tabobject->by_object[$tab])) {
-        return array('errors' => array('This tab does not exists: "'.$tab.'"'));
+        return ['errors' => ['This tab does not exists: "'.$tab.'"']];
       }
       if (is_subclass_of($tabobject->by_object[$tab], 'simplePlugin') &&
           $tabobject->by_object[$tab]->displayHeader &&
@@ -511,7 +511,7 @@ class fdRPCService
         if ($tabobject->by_object[$tab]->acl_is_createable()) {
           $tabobject->by_object[$tab]->is_account = TRUE;
         } else {
-          return array('errors' => array('You don\'t have sufficient rights to enable tab "'.$tab.'"'));
+          return ['errors' => ['You don\'t have sufficient rights to enable tab "'.$tab.'"']];
         }
       }
       foreach ($tabvalues as $name => $newvalues) {
@@ -519,10 +519,10 @@ class fdRPCService
           if ($tabobject->by_object[$tab]->attrIsWriteable($name)) {
             $attrvalues = $tabobject->by_object[$tab]->attributesAccess[$name]->getValue();
             if (!is_array($attrvalues)) {
-              return array('errors' => array(sprintf(_('Field "%s" is not multi-valuated'), $name)));
+              return ['errors' => [sprintf(_('Field "%s" is not multi-valuated'), $name)]];
             }
             if (!is_array($newvalues)) {
-              $newvalues = array($newvalues);
+              $newvalues = [$newvalues];
             }
             if ($add) {
               $attrvalues = array_merge($attrvalues, $newvalues);
@@ -531,10 +531,10 @@ class fdRPCService
             }
             $tabobject->by_object[$tab]->attributesAccess[$name]->setValue($attrvalues);
           } else {
-            return array('errors' => array(msgPool::permModify($dn, $name)));
+            return ['errors' => [msgPool::permModify($dn, $name)]];
           }
         } else {
-          return array('errors' => array(sprintf(_('Unknown field "%s"'), $name)));
+          return ['errors' => [sprintf(_('Unknown field "%s"'), $name)]];
         }
       }
       $tabobject->current = $tab;
@@ -542,7 +542,7 @@ class fdRPCService
     }
     $errors = $tabobject->save();
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $tabobject->dn;
   }
@@ -550,7 +550,7 @@ class fdRPCService
   /*!
    * \brief Get all internal fields from a template
    */
-  protected function _gettemplate($type, $dn)
+  protected function _gettemplate ($type, $dn)
   {
     $this->checkAccess($type, NULL, $dn);
 
@@ -561,19 +561,19 @@ class fdRPCService
   /*!
    * \brief
    */
-  protected function _usetemplate($type, $dn, $values)
+  protected function _usetemplate ($type, $dn, $values)
   {
     $this->checkAccess($type, NULL, $dn);
 
     $template = new template($type, $dn);
     $error    = $template->deserialize($values);
     if ($error !== TRUE) {
-      return array('errors' => array($error));
+      return ['errors' => [$error]];
     }
     $tabobject = $template->apply();
     $errors = $tabobject->save();
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $tabobject->dn;
   }
@@ -581,7 +581,7 @@ class fdRPCService
   /*!
    * \brief Delete an object
    */
-  protected function _delete($type, $dn)
+  protected function _delete ($type, $dn)
   {
     global $ui;
     $infos = objects::infos($type);
@@ -589,7 +589,7 @@ class fdRPCService
     $acl = $ui->get_permissions($dn, $infos['aclCategory'].'/'.$infos['mainTab']);
     if (preg_match('/d/', $acl)) {
       if ($user = get_lock($dn)) {
-        return array('errors' => array(sprintf(_('Cannot delete %s. It has been locked by %s.'), $dn, $user)));
+        return ['errors' => [sprintf(_('Cannot delete %s. It has been locked by %s.'), $dn, $user)]];
       }
       add_lock ($dn, $ui->dn);
 
@@ -600,22 +600,22 @@ class fdRPCService
       // Remove the lock for the current object.
       del_lock($dn);
     } else {
-      return array('errors' => array(msgPool::permDelete($dn)));
+      return ['errors' => [msgPool::permDelete($dn)]];
     }
   }
 
   /*!
    * \brief Lock or unlock a user
    */
-  protected function _lockUser($dns, $type = 'toggle')
+  protected function _lockUser ($dns, $type = 'toggle')
   {
     global $config, $ui;
 
     // Filter out entries we are not allowed to modify
-    $disallowed = array();
+    $disallowed = [];
 
     if (!is_array($dns)) {
-      $dns = array($dns);
+      $dns = [$dns];
     }
 
     foreach ($dns as $dn) {
@@ -624,14 +624,14 @@ class fdRPCService
       }
     }
     if (count($disallowed)) {
-      return array('errors' => array(msgPool::permModify($disallowed)));
+      return ['errors' => [msgPool::permModify($disallowed)]];
     }
 
     // Try to lock/unlock the entries.
     $ldap   = $config->get_ldap_link();
-    $errors = array();
+    $errors = [];
     foreach ($dns as $dn) {
-      $ldap->cat($dn, array('userPassword'));
+      $ldap->cat($dn, ['userPassword']);
       if ($ldap->count() == 1) {
         // We can't lock empty passwords.
         $val = $ldap->fetch();
@@ -672,19 +672,19 @@ class fdRPCService
       }
     }
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
   }
 
   /*!
    * \brief Test if a user is locked
    */
-  protected function _isUserLocked($dns)
+  protected function _isUserLocked ($dns)
   {
     global $config, $ui;
 
     if (!is_array($dns)) {
-      $dns = array($dns);
+      $dns = [$dns];
     }
 
     foreach ($dns as $dn) {
@@ -693,15 +693,15 @@ class fdRPCService
       }
     }
     if (count($disallowed)) {
-      return array('errors' => array(msgPool::permView($disallowed)));
+      return ['errors' => [msgPool::permView($disallowed)]];
     }
 
     // Try to lock/unlock the entries.
     $ldap   = $config->get_ldap_link();
-    $result = array();
-    $errors = array();
+    $result = [];
+    $errors = [];
     foreach ($dns as $dn) {
-      $ldap->cat($dn, array('userPassword'));
+      $ldap->cat($dn, ['userPassword']);
       if ($ldap->count() == 1) {
         // We can't lock empty passwords.
         $val = $ldap->fetch();
@@ -722,7 +722,7 @@ class fdRPCService
       }
     }
     if (!empty($errors)) {
-      return array('errors' => $errors);
+      return ['errors' => $errors];
     }
     return $result;
   }
@@ -730,7 +730,7 @@ class fdRPCService
   /*!
    * \brief Generate recovery token for a user
    */
-  protected function _recoveryGenToken($email)
+  protected function _recoveryGenToken ($email)
   {
     global $ui;
 
@@ -739,20 +739,20 @@ class fdRPCService
     $dn = $pwRecovery->step2();
     if ($pwRecovery->step == 2) { /* No errors */
       if (!preg_match('/w/', $ui->get_permissions($dn, 'user/user', 'userPassword'))) {
-        return array('errors' => array(msgPool::permModify($dn)));
+        return ['errors' => [msgPool::permModify($dn)]];
       }
       $token = $pwRecovery->generateAndStoreToken();
       if (empty($pwRecovery->message) && ($token !== FALSE)) {
-        return array('token' => $token, 'uid' => $pwRecovery->uid);
+        return ['token' => $token, 'uid' => $pwRecovery->uid];
       }
     }
-    return array('errors' => $pwRecovery->message);
+    return ['errors' => $pwRecovery->message];
   }
 
   /*!
    * \brief Change a user password using a recovery token
    */
-  protected function _recoveryConfirmPasswordChange($uid, $password1, $password2, $token)
+  protected function _recoveryConfirmPasswordChange ($uid, $password1, $password2, $token)
   {
     $pwRecovery = new passwordRecovery(FALSE);
     $pwRecovery->uid = $uid;
@@ -764,7 +764,7 @@ class fdRPCService
     } else {
       $pwRecovery->message[] = _('This token is invalid');
     }
-    return array('errors' => $pwRecovery->message);
+    return ['errors' => $pwRecovery->message];
   }
 
   /*!
diff --git a/webservice/include/jsonrpcphp/jsonRPCServer.php b/webservice/include/jsonrpcphp/jsonRPCServer.php
index 2c7a370b82..714ffa05d4 100644
--- a/webservice/include/jsonrpcphp/jsonRPCServer.php
+++ b/webservice/include/jsonrpcphp/jsonRPCServer.php
@@ -35,7 +35,7 @@ class jsonRPCServer {
    * @param object $object
    * @return boolean
    */
-  public static function handle($object)
+  public static function handle ($object)
   {
     // checks if a JSON-RCP request has been received
     if (
@@ -52,25 +52,25 @@ class jsonRPCServer {
 
     // executes the task on local object
     try {
-      if (($result = @call_user_func_array(array($object,$request['method']), $request['params'])) !== FALSE) {
-        $response = array (
+      if (($result = @call_user_func_array([$object,$request['method']], $request['params'])) !== FALSE) {
+        $response = [
                   'id' => $request['id'],
                   'result' => $result,
                   'error' => NULL
-                  );
+                  ];
       } else {
-        $response = array (
+        $response = [
                   'id' => $request['id'],
                   'result' => NULL,
                   'error' => 'unknown method or incorrect parameters'
-                  );
+                  ];
       }
     } catch (Exception $e) {
-      $response = array (
+      $response = [
                 'id' => $request['id'],
                 'result' => NULL,
                 'error' => $e->getMessage()
-                );
+                ];
     }
 
     // output the response
@@ -79,11 +79,11 @@ class jsonRPCServer {
       header('content-type: text/javascript');
       $res = json_encode($response);
       if ($res === FALSE) {
-        $response = array (
+        $response = [
           'id' => $request['id'],
           'result' => NULL,
           'error' => 'Failed to encode response: '.json_last_error_msg()
-        );
+        ];
         echo json_encode($response);
       } else {
         echo $res;
-- 
GitLab


From 0a5fd1d50ee0e8e38a1e316004dc102485410005 Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Thu, 21 Jul 2022 11:26:46 +0100
Subject: [PATCH 62/73] :sparkles: Feat(1.3.1) - Codestyle FNC call

Function call parenthesis code style adapated
---
 .../alias/class_mailAliasDistribution.inc     | 10 +--
 .../alias/class_mailAliasRedirection.inc      |  8 +--
 alias/config/alias/class_aliasConfig.inc      |  2 +-
 .../applications/class_applicationGeneric.inc | 16 ++---
 .../applications/class_webApplication.inc     | 14 ++--
 .../admin/roles/class_applicationRights.inc   |  4 +-
 .../class_applicationsPluginConfig.inc        |  6 +-
 .../addons/argonaut/class_argonautAction.inc  |  2 +-
 .../argonaut/class_argonautImportFile.inc     |  6 +-
 .../addons/argonaut/class_argonautQueue.inc   |  2 +-
 .../systems/argonaut/class_argonautClient.inc | 24 +++----
 .../argonaut/class_deploymentTimeframe.inc    |  4 +-
 .../argonaut/class_argonautDNSConfig.inc      | 20 +++---
 .../argonaut/class_argonautFuseConfig.inc     | 10 +--
 .../argonaut/class_argonautFuseFAIConfig.inc  | 12 ++--
 .../argonaut/class_argonautFuseLTSPConfig.inc |  2 +-
 .../argonaut/class_argonautFuseOPSIConfig.inc |  8 +--
 .../argonaut/class_argonautMirrorConfig.inc   | 18 ++---
 .../argonaut/class_argonautServer.inc         | 26 +++----
 argonaut/html/getFAIstatus.php                |  4 +-
 argonaut/include/class_supportDaemon.inc      |  8 +--
 audit/admin/audit/class_auditEvent.inc        |  2 +-
 audit/config/audit/class_auditConfig.inc      |  8 +--
 autofs/admin/autofs/class_nisMap.inc          |  2 +-
 autofs/admin/autofs/class_nisObject.inc       |  6 +-
 autofs/config/autofs/class_autofsConfig.inc   |  2 +-
 .../certificates/class_userCertificates.inc   |  2 +-
 .../community/class_communityOrganization.inc | 12 ++--
 .../community/class_communityProject.inc      |  4 +-
 .../community/class_communityConfig.inc       |  2 +-
 .../services/cyrus/class_serviceCyrus.inc     |  8 +--
 .../mail-methods/class_mail-methods-cyrus.inc | 48 ++++++-------
 .../class_debconfProfileGeneric.inc           | 16 ++---
 .../systems/debconf/class_debconfStartup.inc  |  4 +-
 dhcp/admin/dhcp/class_dhcpConfiguration.inc   |  8 +--
 dhcp/admin/dhcp/class_dhcpPlugin.inc          | 10 +--
 .../admin/dhcp/sections/class_dhcpDnsZone.inc |  8 +--
 .../dhcp/sections/class_dhcpFailOverPeer.inc  | 24 +++----
 dhcp/admin/dhcp/sections/class_dhcpHost.inc   |  4 +-
 dhcp/admin/dhcp/sections/class_dhcpPool.inc   |  8 +--
 dhcp/admin/dhcp/sections/class_dhcpSubnet.inc |  6 +-
 .../admin/dhcp/sections/class_dhcpTSigKey.inc |  8 +--
 .../services/dhcp/class_serviceDHCP.inc       |  2 +-
 dhcp/config/dhcp/class_dhcpConfig.inc         |  2 +-
 dns/admin/dns/class_DnsRecordAttribute.inc    |  4 +-
 dns/admin/dns/class_dnsAcl.inc                |  6 +-
 dns/admin/dns/class_dnsManagement.inc         |  4 +-
 dns/admin/dns/class_dnsView.inc               |  8 +--
 dns/admin/dns/class_dnsZone.inc               | 26 +++----
 dns/admin/systems/class_dnsHost.inc           |  4 +-
 dns/config/dns/class_dnsConfig.inc            |  4 +-
 .../services/dovecot/class_serviceDovecot.inc | 10 +--
 .../class_mail-methods-dovecot.inc            | 14 ++--
 dsa/admin/dsa/class_simpleSecurityObject.inc  |  8 +--
 dsa/config/dsa/class_dsaConfig.inc            |  2 +-
 ejbca/admin/ejbca/class_ejbcaCertSelect.inc   |  2 +-
 ejbca/admin/ejbca/class_ejbcaCertificate.inc  |  6 +-
 ejbca/config/ejbca/class_ejbcaConfig.inc      |  2 +-
 fai/admin/fai/class_faiDiskEntry.inc          | 20 +++---
 fai/admin/fai/class_faiHook.inc               | 14 ++--
 fai/admin/fai/class_faiPackage.inc            | 16 ++---
 fai/admin/fai/class_faiPartition.inc          | 30 ++++----
 fai/admin/fai/class_faiPartitionTable.inc     | 10 +--
 fai/admin/fai/class_faiProfile.inc            |  4 +-
 fai/admin/fai/class_faiScript.inc             | 14 ++--
 fai/admin/fai/class_faiTemplate.inc           |  8 +--
 fai/admin/fai/class_faiTemplateEntry.inc      | 18 ++---
 fai/admin/fai/class_faiVariable.inc           | 12 ++--
 fai/admin/systems/class_faiLogView.inc        |  2 +-
 fai/admin/systems/class_faiStartup.inc        | 10 +--
 .../monitor/class_argonautFAIMonitor.inc      |  8 +--
 fai/config/fai/class_faiConfig.inc            |  4 +-
 .../freeradius/class_freeradiusAccount.inc    |  2 +-
 .../fusioninventory/class_fiInventory.inc     |  2 +-
 .../config/fusioninventory/class_fiConfig.inc |  4 +-
 gpg/addons/gpg/class_pgpServerInfo.inc        | 14 ++--
 .../gpg/pgpKeySelect/class_pgpKeySelect.inc   |  2 +-
 ipmi/admin/systems/ipmi/class_ipmiClient.inc  |  6 +-
 .../addons/ldapmanager/class_csvimport.inc    | 16 ++---
 .../addons/ldapmanager/class_ldapmanager.inc  | 22 +++---
 mail/admin/groups/mail/class_mailGroup.inc    | 12 ++--
 mail/config/mail/class_mailPluginConfig.inc   | 18 ++---
 mail/personal/mail/class_mailAccount.inc      | 34 +++++-----
 mail/personal/mail/class_sieve.inc            | 68 +++++++++----------
 nagios/config/nagios/class_nagiosConfig.inc   |  2 +-
 .../personal/nagios/class_nagiosAccount.inc   |  8 +--
 .../config/netgroups/class_netgroupConfig.inc |  2 +-
 .../newsletter/class_newsletterConfig.inc     |  2 +-
 .../class_newsletterSubscriptions.inc         |  2 +-
 .../opsi/class_opsiProductProperties.inc      |  2 +-
 opsi/config/opsi/class_opsiConfig.inc         |  2 +-
 .../config/personal/class_personalConfig.inc  |  2 +-
 .../personal/personal/class_personalInfo.inc  | 18 ++---
 posix/config/posix/class_posixConfig.inc      | 24 +++----
 posix/personal/posix/class_posixAccount.inc   |  8 +--
 .../services/postfix/class_servicePostfix.inc | 56 +++++++--------
 ppolicy/admin/ppolicy/class_ppolicy.inc       |  6 +-
 .../config/ppolicy/class_ppolicyConfig.inc    |  4 +-
 .../admin/systems/puppet/class_puppetNode.inc | 16 ++---
 .../services/puppet/class_servicePuppet.inc   |  4 +-
 .../pureftpd/class_pureftpdAccount.inc        | 14 ++--
 .../renater-partage/class_partageGroup.inc    | 10 +--
 .../class_sympaAliasPartage.inc               | 14 ++--
 .../class_serviceRenaterPartage.inc           |  6 +-
 .../class_mail-methods-renater-partage.inc    |  4 +-
 .../repository/class_buildRepository.inc      | 16 ++---
 .../class_repositoryDistribution.inc          | 14 ++--
 .../repository/class_repositorySection.inc    | 10 +--
 .../repository/class_repositoryConfig.inc     |  4 +-
 samba/admin/samba/class_sambaDomain.inc       |  6 +-
 .../systems/samba/class_sambaSystemTab.inc    | 12 ++--
 .../config/samba/class_sambaPluginConfig.inc  | 12 ++--
 samba/personal/samba/class_sambaAccount.inc   | 66 +++++++++---------
 .../personal/samba/class_sambaMungedDial.inc  | 10 +--
 sinaps/config/sinaps/class_sinapsConfig.inc   | 32 ++++-----
 sinaps/contrib/test/testAcquisition.php       |  6 +-
 sinaps/personal/sinaps/class_sinapsUser.inc   |  2 +-
 sogo/admin/sogo/class_sogoResource.inc        | 16 ++---
 sogo/config/sogo/class_sogoConfig.inc         |  2 +-
 .../spam/class_serviceSpamAssassin.inc        | 30 ++++----
 .../class_spamAssassinAccount.inc             |  8 +--
 squid/personal/squid/class_proxyAccount.inc   | 22 +++---
 .../subcontracting/class_subContracting.inc   | 10 +--
 sudo/admin/sudo/class_sudoGeneric.inc         | 30 ++++----
 sudo/admin/sudo/class_sudoOption.inc          |  6 +-
 sudo/config/sudo/class_sudoConfig.inc         |  2 +-
 supann/config/supann/class_supannConfig.inc   |  4 +-
 sympa/admin/sympa/class_sympaAlias.inc        |  8 +--
 .../services/sympa/class_serviceSympa.inc     |  6 +-
 sympa/config/sympa/class_sympaConfig.inc      |  2 +-
 .../dashboard/class_dashBoardNetwork.inc      |  2 +-
 .../admin/systems/class_componentGeneric.inc  |  4 +-
 .../systems/class_mobilePhoneGeneric.inc      | 14 ++--
 systems/admin/systems/class_phoneGeneric.inc  |  8 +--
 systems/admin/systems/class_printGeneric.inc  | 14 ++--
 systems/admin/systems/class_systemImport.inc  |  4 +-
 .../systems/class_workstationGeneric.inc      |  8 +--
 .../services/ldap/class_serviceLDAP.inc       | 20 +++---
 .../terminal/class_serviceTerminal.inc        |  6 +-
 .../systems/class_systemsPluginConfig.inc     | 22 +++---
 .../class_userReminderConfig.inc              | 28 ++++----
 .../admin/systems/weblink/class_webLink.inc   |  8 +--
 webservice/config/class_webserviceConfig.inc  |  2 +-
 webservice/html/jsonrpc.php                   |  2 +-
 144 files changed, 778 insertions(+), 778 deletions(-)

diff --git a/alias/admin/alias/class_mailAliasDistribution.inc b/alias/admin/alias/class_mailAliasDistribution.inc
index 28027c4103..6607307174 100644
--- a/alias/admin/alias/class_mailAliasDistribution.inc
+++ b/alias/admin/alias/class_mailAliasDistribution.inc
@@ -50,23 +50,23 @@ class mailAliasDistribution extends simplePlugin
       'main' => [
         'name'  => _('Mail distribution'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('aliasRDN')),
+          new BaseSelectorAttribute(get_ou('aliasRDN')),
           new HostNameAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this alias'),
             'description', FALSE
           ),
-          new MailAttribute (
+          new MailAttribute(
             _('Email address'), _('Email address'),
             'mail', TRUE
           ),
           new SetAttribute(
-            new MailAttribute (
+            new MailAttribute(
               _('Email aliases'), _('Aliases for this email address'),
               'gosaMailAlternateAddress', TRUE
             )
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Mail server'), _('Mail server for this alias'),
             'gosaMailServer', FALSE,
             array_keys(mailMethod::getMailServers())
diff --git a/alias/admin/alias/class_mailAliasRedirection.inc b/alias/admin/alias/class_mailAliasRedirection.inc
index ae7d468c39..bfbbf9ee7b 100644
--- a/alias/admin/alias/class_mailAliasRedirection.inc
+++ b/alias/admin/alias/class_mailAliasRedirection.inc
@@ -51,20 +51,20 @@ class mailAliasRedirection extends simplePlugin
       'main' => [
         'name'  => _('Mail redirection'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('aliasRDN')),
+          new BaseSelectorAttribute(get_ou('aliasRDN')),
           new HostNameAttribute (_('Name'), _('Name to identify this redirection'), 'cn', TRUE),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this redirection'),
             'description', FALSE
           ),
           new SetAttribute(
-            new MailAttribute (
+            new MailAttribute(
               _('Redirect from'), _('Mail address from which you want to redirect'),
               'mail', TRUE
             )
           ),
           new SetAttribute(
-            new MailAttribute (
+            new MailAttribute(
               _('Redirect to'), _('Destination of this redirection'),
               'gosaMailForwardingAddress', TRUE
             )
diff --git a/alias/config/alias/class_aliasConfig.inc b/alias/config/alias/class_aliasConfig.inc
index 46d7f22f51..d391f267a9 100644
--- a/alias/config/alias/class_aliasConfig.inc
+++ b/alias/config/alias/class_aliasConfig.inc
@@ -41,7 +41,7 @@ class aliasConfig extends simplePlugin
       'main' => [
         'name'  => _('Alias'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Alias RDN'), _('Branch in which aliases will be stored'),
             'fdAliasRDN', TRUE,
             'ou=alias'
diff --git a/applications/admin/applications/class_applicationGeneric.inc b/applications/admin/applications/class_applicationGeneric.inc
index a95090fda6..d9a40d3457 100644
--- a/applications/admin/applications/class_applicationGeneric.inc
+++ b/applications/admin/applications/class_applicationGeneric.inc
@@ -46,19 +46,19 @@ class application extends simplePlugin
         'name'  => _('Application'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('applicationsRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Application name'), _('The name of this application'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of this application'),
             'description', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Execute'), _('The application to be executed'),
             'fdApplicationExecutePath', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Display name'), _('The displayed name for this application'),
             'fdApplicationTitle', FALSE
           ),
@@ -67,7 +67,7 @@ class application extends simplePlugin
       'icon' => [
         'name'  => _('Icon'),
         'attrs' => [
-          new ImageAttribute (
+          new ImageAttribute(
             '', _('The icon for this application'),
             'fdApplicationImage', FALSE,
             48, 48, 'png'
@@ -120,9 +120,9 @@ class application extends simplePlugin
     $filename = './plugins/applications/images/default_icon.png';
 
     if (file_exists($filename)) {
-      $fd = fopen ($filename, 'rb');
-      $this->attributesAccess['fdApplicationImage']->setDefaultValue(fread ($fd, filesize ($filename)));
-      fclose ($fd);
+      $fd = fopen($filename, 'rb');
+      $this->attributesAccess['fdApplicationImage']->setDefaultValue(fread ($fd, filesize($filename)));
+      fclose($fd);
       if (empty($this->fdApplicationImage)) {
         $this->attributesAccess['fdApplicationImage']->resetToDefault();
       }
diff --git a/applications/admin/applications/class_webApplication.inc b/applications/admin/applications/class_webApplication.inc
index b533315958..4cdf1abd96 100644
--- a/applications/admin/applications/class_webApplication.inc
+++ b/applications/admin/applications/class_webApplication.inc
@@ -44,20 +44,20 @@ class webApplication extends simplePlugin
       'main' => [
         'name'  => _('Application'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('webappsRDN')),
-          new HostNameAttribute (
+          new BaseSelectorAttribute(get_ou('webappsRDN')),
+          new HostNameAttribute(
             _('Name'), _('Name or id for application'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of this application'),
             'description', FALSE
           ),
-          new URLAttribute (
+          new URLAttribute(
             _('URL'), _('Link to this application'),
             'labeledURI', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Display Name'), _('Displayed name for links to this application'),
             'fdApplicationTitle', TRUE
           ),
@@ -66,12 +66,12 @@ class webApplication extends simplePlugin
       'icon' => [
         'name'  => _('Icon'),
         'attrs' => [
-          new ImageAttribute (
+          new ImageAttribute(
             '', _('The icon for this application'),
             'fdApplicationImage', FALSE,
             48, 48, 'png'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Icon location'), _('Usual path to this application icon'),
             'fdApplicationImageLocation', FALSE
           ),
diff --git a/applications/admin/roles/class_applicationRights.inc b/applications/admin/roles/class_applicationRights.inc
index e6ecaa0d96..556c0062f4 100644
--- a/applications/admin/roles/class_applicationRights.inc
+++ b/applications/admin/roles/class_applicationRights.inc
@@ -44,8 +44,8 @@ class applicationRights extends simplePlugin
       'main' => [
         'name'  => _('Application list'),
         'attrs' => [
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Applications'), _('The applications users with this role are allowed to launch'),
               'fdApplicationAllowed', TRUE
             )
diff --git a/applications/config/applications/class_applicationsPluginConfig.inc b/applications/config/applications/class_applicationsPluginConfig.inc
index dc762b66da..948cd88e5a 100644
--- a/applications/config/applications/class_applicationsPluginConfig.inc
+++ b/applications/config/applications/class_applicationsPluginConfig.inc
@@ -39,17 +39,17 @@ class applicationsPluginConfig extends simplePlugin
       'rdns' => [
         'name'  => _('Applications'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Application RDN'), _('Branch in which applications will be stored'),
             'fdApplicationsRDN', TRUE,
             'ou=apps'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Web applications RDN'), _('Branch in which web applications will be stored'),
             'fdWebappsRDN', TRUE,
             'ou=apps'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Show web applications in menu'), _('Whether to show web applications in FD main menu'),
             'fdWebappsMenu', TRUE,
             ['none', 'allowed', 'all'], 'none',
diff --git a/argonaut/addons/argonaut/class_argonautAction.inc b/argonaut/addons/argonaut/class_argonautAction.inc
index 611e452c65..69684ea44b 100644
--- a/argonaut/addons/argonaut/class_argonautAction.inc
+++ b/argonaut/addons/argonaut/class_argonautAction.inc
@@ -24,7 +24,7 @@ class MacsAttribute extends GenericDialogAttribute
 
   function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $display_attr = 'cn', $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'macAddress', $display_attr, $acl);
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, 'macAddress', $display_attr, $acl);
   }
 }
 
diff --git a/argonaut/addons/argonaut/class_argonautImportFile.inc b/argonaut/addons/argonaut/class_argonautImportFile.inc
index 27086a586a..aa20ce73c2 100644
--- a/argonaut/addons/argonaut/class_argonautImportFile.inc
+++ b/argonaut/addons/argonaut/class_argonautImportFile.inc
@@ -49,15 +49,15 @@ class argonautImportFile extends simplePlugin
         'name'  => _('Import actions from CSV file'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Import a list of task into argonaut'),
             'import',
             [
-              new FileAttribute (
+              new FileAttribute(
                 '', '',
                 'import_file', FALSE
               ),
-              new ButtonAttribute (
+              new ButtonAttribute(
                 '', '',
                 'import_submit',
                 _('Upload')
diff --git a/argonaut/addons/argonaut/class_argonautQueue.inc b/argonaut/addons/argonaut/class_argonautQueue.inc
index d870e91547..86e926abb3 100644
--- a/argonaut/addons/argonaut/class_argonautQueue.inc
+++ b/argonaut/addons/argonaut/class_argonautQueue.inc
@@ -95,7 +95,7 @@ class argonautQueue extends simpleManagement
     $disallowed = [];
     $this->dns  = [];
 
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $target, 'Entry removal requested!');
+    @DEBUG(DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $target, 'Entry removal requested!');
 
     // Check permissons for each target
     foreach ($target as $dn) {
diff --git a/argonaut/admin/systems/argonaut/class_argonautClient.inc b/argonaut/admin/systems/argonaut/class_argonautClient.inc
index a4dea9b115..44b6da4be7 100644
--- a/argonaut/admin/systems/argonaut/class_argonautClient.inc
+++ b/argonaut/admin/systems/argonaut/class_argonautClient.inc
@@ -49,7 +49,7 @@ class ArgonautServiceNameAttribute extends CompositeAttribute
 
   function __construct ($description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, [], "", "", $acl);
+    parent::__construct($description, $ldapName, [], "", "", $acl);
   }
 
   function setParent (&$plugin)
@@ -73,7 +73,7 @@ class ArgonautServiceNameAttribute extends CompositeAttribute
         continue;
       }
       $value = (isset(static::$argonautService_defaults[$name]) ? static::$argonautService_defaults[$name] : "");
-      $this->attributes[$name] = new StringAttribute ($name, "Service $name",
+      $this->attributes[$name] = new StringAttribute($name, "Service $name",
                                                       "service_$name", FALSE,
                                                       $value, $this->getAcl());
     }
@@ -140,27 +140,27 @@ class argonautClient extends simplePlugin
       'main' => [
         'name'  => _("Argonaut client settings"),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Client port'), _('Port used by argonaut client for JSON-RPC'),
             'argonautClientPort', TRUE,
             0 /*min*/, FALSE /*no max*/, 8081 /*default value*/
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Protocol'), _('Protocol to use for argonaut'),
             'argonautClientProtocol', TRUE,
             ['http', 'https']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('WakeOnLan interface'), _('Interface used by argonaut for WakeOnLan'),
             'argonautClientWakeOnLanInterface', TRUE,
             'eth0'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('TaskId file'), _('File which argonaut will use to store its task id when booting'),
             'argonautTaskIdFile', TRUE,
             '/tmp/argonaut'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Log directory'), _('Directory in which argonaut client should write its logs'),
             'argonautClientLogDir', TRUE,
             '/var/log/argonaut'
@@ -170,22 +170,22 @@ class argonautClient extends simplePlugin
       'ssl' => [
         'name'  => _('SSL paths'),
         'attrs' => [
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('Key'), _('Path to the private key file on Argonaut client'),
             'argonautClientKeyPath', FALSE,
             '/etc/ssl/private/argonaut.key'
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('Certificate'), _('Path to the certificate file on Argonaut client'),
             'argonautClientCertPath', FALSE,
             '/etc/ssl/certs/argonaut.cert'
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('CA certificate'), _('Path to the CA certificate file on Argonaut client'),
             'argonautClientCaCertPath', FALSE,
             '/etc/ssl/certs/ca.cert'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('CN of the certificate'), _('The CN in this client certificate'),
             'argonautClientCertCN', FALSE
           ),
@@ -194,7 +194,7 @@ class argonautClient extends simplePlugin
       'serviceNames' => [
         'name'  => _("Service names"),
         'attrs' => [
-          new ArgonautServiceNameAttribute (_("Argonaut service names"), "argonautServiceName"),
+          new ArgonautServiceNameAttribute(_("Argonaut service names"), "argonautServiceName"),
         ]
       ],
     ];
diff --git a/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc b/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
index b9c733db4b..8db44b849f 100644
--- a/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
+++ b/argonaut/admin/systems/argonaut/class_deploymentTimeframe.inc
@@ -48,11 +48,11 @@ class deploymentTimeframe extends simplePlugin
               _('Time frames in which deployment is authorized'),
               'argonautDeploymentTimeframe',
               [
-                new TimeHiAttribute (
+                new TimeHiAttribute(
                   '', _('Opening time for this frame as HH:MM'),
                   'begin', TRUE
                 ),
-                new TimeHiAttribute (
+                new TimeHiAttribute(
                   _('->'), _('Closing time for this frame as HH:MM'),
                   'end', TRUE
                 )
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
index d4de6bb5a4..5fb7d6b607 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautDNSConfig.inc
@@ -50,17 +50,17 @@ class argonautDNSConfig extends simpleService
       'main' => [
         'name'  => _('Ldap2zone global settings'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Bind directory'), _('The directory in which conf file must be created'),
             'argonautLdap2zoneBindDir', TRUE,
             '/etc/bind'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Bind cache directory'), _('The directory in which zone files must be created'),
             'argonautLdap2zoneBindCacheDir', TRUE,
             '/var/cache/bind'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('TTL'),
             _('Time to live'),
             'argonautLdap2zoneTTL',
@@ -69,14 +69,14 @@ class argonautDNSConfig extends simpleService
             FALSE,
             500
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('rndc path'),
             _('path to rndc binary'),
             'argonautLdap2zoneRndc',
             FALSE,
             '/usr/sbin/rndc'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Search base'), _('LDAP base in which ldap2zone should search. Only usefull if you got several nodes for the same zone.'),
             'argonautLdap2zoneSearchBase', FALSE
           ),
@@ -85,24 +85,24 @@ class argonautDNSConfig extends simpleService
       'master' => [
         'name'  => _('Ldap2zone master settings'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Ignore reverse zone'), _('Do not write reverse zone'),
             'argonautLdap2zoneNoReverse', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Notify'), '',
             'argonautLdap2zoneNotify', FALSE,
             ['yes','no','explicit']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Allow update'), _('Allow update (semicolon separated and ended)'),
             'argonautLdap2zoneAllowUpdate', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Allow transfer'), _('Allow transfer (semicolon separated and ended)'),
             'argonautLdap2zoneAllowTransfer', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Check names'), _('Cause any host name for the zone to be checked for compliance with RFC 952 and RFC 1123 and take the defined action'),
             'argonautLdap2zoneCheckNames', FALSE,
             ['','warn','fail','ignore'], ''
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
index b03fbe4784..98440e0301 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseConfig.inc
@@ -44,14 +44,14 @@ class argonautFuseConfig extends simpleService
       'main' => [
         'name'  => _('Basic settings'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Default mode'),
             '',
             'argonautFuseDefaultMode',
             TRUE,
             'install'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Log directory'),
             _('Directory in which argonaut-fuse will store its log'),
             'argonautFuseLogDir',
@@ -63,7 +63,7 @@ class argonautFuseConfig extends simpleService
       'tftp' => [
         'name'  => _('TFTP'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Pxelinux cfg path'),
             _('Path where argonaut-fuse should store pxelinux.cfg'),
             'argonautFusePxelinuxCfg',
@@ -83,9 +83,9 @@ class argonautFuseConfig extends simpleService
     /* Load modules */
     $this->plugin = [];
     foreach ($config->data['TABS']['FUSEMODULETABS'] as $plug) {
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $plug['CLASS'], "Loading Fuse module");
+      @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $plug['CLASS'], "Loading Fuse module");
       if (!plugin_available($plug['CLASS'])) {
-        @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $plug['CLASS'], "Fuse module not available");
+        @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $plug['CLASS'], "Fuse module not available");
         continue;
       }
       $name = $plug['CLASS'];
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
index 8a2e14fd88..28f1d45026 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseFAIConfig.inc
@@ -41,32 +41,32 @@ class argonautFuseFAIConfig extends simplePlugin
       'fai' => [
         'name'  => _('FAI'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('FAI version'), _('Version of FAI installed on the server'),
             'argonautFuseFaiVersion', TRUE,
             4, 5, 5
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('FAI flags'), _('Flags to pass to FAI'),
             'argonautFuseFaiFlags', FALSE,
             'verbose,sshd,syslogd,createvt,reboot'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('NFS root'), '',
             'argonautFuseNfsRoot', TRUE,
             '/srv/fai/nfsroot'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('FAI 4 command line'), _('Command line for FAI 4 - should be "ip=dhcp root=/dev/nfs boot=live union=aufs"'),
             'argonautFuseFai4Cmdline', TRUE,
             'ip=dhcp root=/dev/nfs boot=live union=aufs'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('FAI 5 command line'), _('Command line for FAI 5 - should be "ip=dhcp rootovl"'),
             'argonautFuseFai5Cmdline', TRUE,
             'ip=dhcp rootovl'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Multiple distro mode'), _('This enables a mode for multiple distributions usage which adds the release as a suffix to kernel, initrd and nfsroot in the PXE file'),
             'argonautFuseMultipleReleaseMode'
           ),
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
index 4a2c656957..58ce4e2a7b 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseLTSPConfig.inc
@@ -46,7 +46,7 @@ class argonautFuseLTSPConfig extends simplePlugin
       'ltsp' => [
         'name'  => _('LTSP'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('LTSP server'),
             '',
             'argonautFuseLtspServer'
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
index 4c78610fe0..0c4bb46a03 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautFuseOPSIConfig.inc
@@ -46,22 +46,22 @@ class argonautFuseOPSIConfig extends simplePlugin
       'opsi' => [
         'name'  => _('OPSI'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Opsi admin'),
             '',
             'argonautFuseOpsiAdmin'
           ),
-          new PasswordAttribute (
+          new PasswordAttribute(
             _('Opsi password'),
             '',
             'argonautFuseOpsiPassword'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Opsi server'),
             '',
             'argonautFuseOpsiServer'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Opsi lang'),
             '',
             'argonautFuseOpsiLang'
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc b/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
index 776dadbb08..420b2ecd9c 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautMirrorConfig.inc
@@ -41,7 +41,7 @@ class argonautMirrorConfig extends simpleService
     'section1' => [
         'name'  => _('Argonaut mirror settings'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Local Debian mirror directory'),
             '',
             'argonautMirrorDir', FALSE,
@@ -52,7 +52,7 @@ class argonautMirrorConfig extends simpleService
       'section2' => [
         'name' => _('Argonaut Debconf Crawler configuration'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Local packages folder'),
             _('Folder in which the crawler will store packages during analysis'),
             'argonautCrawlerPackagesFolder', FALSE,
@@ -63,39 +63,39 @@ class argonautMirrorConfig extends simpleService
       'section3' => [
         'name' => _('Argonaut Repository configuration'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Proxy'),
             _('Specifies the http proxy (like Squid) to use for http and hftp method'),
             'argonautLdap2repProxy', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Log directory'), _('Directory in which logs should be stored'),
             'argonautLdap2repLogDir', FALSE,
             '/var/log/argonaut/'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Ignore errors'),
             _('Causes debmirror to ignore missing or broken deb and source files but still be pedantic about checking meta files'),
             'argonautLdap2repErrors', FALSE,
             FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Source'), _('Include source in the mirror'),
             'argonautLdap2repSource', FALSE,
             TRUE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('GPG Check'), _('Fail if the Release.gpg file is missing'),
             'argonautLdap2repGPGCheck', FALSE,
             TRUE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Contents'),
             _('Additionally download Contents.<arch>.gz files (Note that these files can be relatively big and can change frequently)'),
             'argonautLdap2repContents', FALSE,
             FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Verbose'), _('Wether to activate verbose mode'),
             'argonautLdap2repVerbose', FALSE,
             FALSE
diff --git a/argonaut/admin/systems/services/argonaut/class_argonautServer.inc b/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
index 92f6d3498a..d866f7d2ea 100644
--- a/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
+++ b/argonaut/admin/systems/services/argonaut/class_argonautServer.inc
@@ -49,37 +49,37 @@ class argonautServer extends simpleService
       'server' => [
         'name'  => _('Argonaut server'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Delete finished tasks'),
             _('Wether or not argonaut server should delete successfully finished tasks'),
             'argonautDeleteFinished', FALSE,
             TRUE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Get packages information'),
             _('Wether or not argonaut server should get packages information from repositories at start and then once a day. Needed for FAI package list creation.'),
             'argonautFetchPackages', FALSE,
             TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Protocol'), _('Protocol to use for argonaut'),
             'argonautProtocol', TRUE,
             ['http', 'https']
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Port'),
             _('Port on which the argonaut server will be listening'),
             'argonautPort', TRUE,
             0 /*min*/, FALSE /*no max*/, 8080 /*default value*/
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Timeout'),
             _('Time in seconds before to consider an argonaut client or server as down'),
             'argonautTimeout', FALSE,
             1 /*min*/, FALSE /*no max*/,
             10
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Log directory'),
             _('Directory in which argonaut will store its log'),
             'argonautLogDir', FALSE,
@@ -90,13 +90,13 @@ class argonautServer extends simpleService
       'wakeonlan' => [
         'name'  => _('Wake on lan'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Interface'),
             _('Interface to use for sending WakeOnLan requests'),
             'argonautWakeOnLanInterface', FALSE,
             'eth0'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('IP tool'), _('IP tool to use'),
             'argonautIpTool', FALSE,
             '/sbin/ifconfig'
@@ -106,26 +106,26 @@ class argonautServer extends simpleService
       'ssl' => [
         'name'  => _('SSL paths'),
         'attrs' => [
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('Key'), _('Path to the private key file on Argonaut server'),
             'argonautKeyPath', FALSE,
             '/etc/ssl/private/argonaut.key'
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('Certificate'), _('Path to the certificate file on Argonaut server'),
             'argonautCertPath', FALSE,
             '/etc/ssl/certs/argonaut.cert'
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('CA certificate'), _('Path to the CA certificate file on Argonaut server'),
             'argonautCaCertPath', FALSE,
             '/etc/ssl/certs/ca.cert'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('CN of the certificate'), _('The CN in the server certificate'),
             'argonautCertCN', FALSE
           ),
-          new HiddenAttribute ('argonautServerToken'),
+          new HiddenAttribute('argonautServerToken'),
         ]
       ]
     ];
diff --git a/argonaut/html/getFAIstatus.php b/argonaut/html/getFAIstatus.php
index 9480532fa2..08b281c6e1 100644
--- a/argonaut/html/getFAIstatus.php
+++ b/argonaut/html/getFAIstatus.php
@@ -23,7 +23,7 @@
 /* Basic setup, remove eventually registered sessions */
 @require_once ("../include/php_setup.inc");
 @require_once ("functions.inc");
-@require_once ("variables.inc");
+@require_once("variables.inc");
 
 
 session_cache_limiter("private");
@@ -33,7 +33,7 @@ session::global_set('errorsAlreadyPosted', []);
 /* Logged in? Simple security check */
 if (!session::global_is_set('ui')) {
   logging::log('security', 'unknown', '', [], 'Error: getFAIstatus.php called without session');
-  header ('Location: index.php');
+  header('Location: index.php');
   exit;
 }
 
diff --git a/argonaut/include/class_supportDaemon.inc b/argonaut/include/class_supportDaemon.inc
index 86bb3f20d9..6bc71a6130 100644
--- a/argonaut/include/class_supportDaemon.inc
+++ b/argonaut/include/class_supportDaemon.inc
@@ -166,7 +166,7 @@ class supportDaemon
 
   private function new_state ($state_value)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date ('H.i.s').' Setting state ('.$state_value.') to ');
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date ('H.i.s').' Setting state('.$state_value.') to ');
     session::global_set('argonaut_state', [
       'date'  => time(),
       'error' => $this->s_error,
@@ -211,7 +211,7 @@ class supportDaemon
    */
   public function append_call ($action, $targets, $data)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, ['action' => $action, 'targets' => $targets, 'data' => $data], date ('H.i.s').' Appending call to');
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, ['action' => $action, 'targets' => $targets, 'data' => $data], date('H.i.s').' Appending call to');
     if ($this->s_host == '') {
       $this->set_error($this->host_error);
       return FALSE;
@@ -229,7 +229,7 @@ class supportDaemon
         $tmpTargets = $targets;
       }
       $status = $client->action($action, $tmpTargets, $data);
-      @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date ('H.i.s').' Answer');
+      @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date('H.i.s').' Answer');
       $this->reset_error();
       $this->new_state(TRUE);
       if (is_array($status) && !is_array($targets) && isset($status[0])) {
@@ -256,7 +256,7 @@ class supportDaemon
    */
   private function set_error ($str)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date ('H.i.s').' Setting error to');
+    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date('H.i.s').' Setting error to');
     $this->b_error = TRUE;
     $this->s_error = $str;
   }
diff --git a/audit/admin/audit/class_auditEvent.inc b/audit/admin/audit/class_auditEvent.inc
index 64bc20ff1e..6f9fad4572 100644
--- a/audit/admin/audit/class_auditEvent.inc
+++ b/audit/admin/audit/class_auditEvent.inc
@@ -60,7 +60,7 @@ class auditEvent extends simplePlugin
       'main' => [
         'name'  => _('Event'),
         'attrs' => [
-          new HiddenAttribute ('fdAuditId'),
+          new HiddenAttribute('fdAuditId'),
           new GeneralizedTimeDisplayAttribute(
             _('Time'), _('Date and time this event happened'),
             'fdAuditDateTime', TRUE
diff --git a/audit/config/audit/class_auditConfig.inc b/audit/config/audit/class_auditConfig.inc
index 91465b2ba4..88113866fa 100644
--- a/audit/config/audit/class_auditConfig.inc
+++ b/audit/config/audit/class_auditConfig.inc
@@ -40,20 +40,20 @@ class auditConfig extends simplePlugin
       'main' => [
         'name'  => _('Audit'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Audit RDN'), _('Branch in which audit events will be stored'),
             'fdAuditRDN', TRUE,
             'ou=audit'
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Actions to audit'), _('Which actions should be stored in LDAP audit log'),
               'fdAuditActions', TRUE,
               logging::$validActions
             ),
             ['modify','create','remove']
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Days to keep'), _('Number of days of audit to keep in the LDAP when cleaning'),
             'fdAuditRotationDelay', TRUE,
             1, FALSE, 120
diff --git a/autofs/admin/autofs/class_nisMap.inc b/autofs/admin/autofs/class_nisMap.inc
index f1bfac4bea..b5cefa2d95 100644
--- a/autofs/admin/autofs/class_nisMap.inc
+++ b/autofs/admin/autofs/class_nisMap.inc
@@ -49,7 +49,7 @@ class nisMap extends simplePlugin
         'name'  => _('Mount point'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('autofsRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('Name of the mount point'),
             'nisMapName', TRUE
           )
diff --git a/autofs/admin/autofs/class_nisObject.inc b/autofs/admin/autofs/class_nisObject.inc
index 639ed406be..f5abb79f10 100644
--- a/autofs/admin/autofs/class_nisObject.inc
+++ b/autofs/admin/autofs/class_nisObject.inc
@@ -54,17 +54,17 @@ class nisObject extends simplePlugin
         'name'  => _('Directory'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('autofsRDN')),
-          new StringAttribute (
+          new StringAttribute(
             _('Name'), _('Name of this directory'),
             'cn', TRUE,
             '', '',
             '/^[a-z0-9\.\-\/]*$/i', 'nfsPartage'
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Automount entry'), _("The entry of this directory for the automount daemon.\n For instance 'auto.u' or '-fstype=nfs domaine.tld:/mount/directory'"),
             'nisMapEntry', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Mount point'), _('The mount point this directory will be placed in'),
             'nisMapName', TRUE,
             []
diff --git a/autofs/config/autofs/class_autofsConfig.inc b/autofs/config/autofs/class_autofsConfig.inc
index f17f60d4ce..f640ddaf7a 100644
--- a/autofs/config/autofs/class_autofsConfig.inc
+++ b/autofs/config/autofs/class_autofsConfig.inc
@@ -41,7 +41,7 @@ class autofsConfig extends simplePlugin
       'main' => [
         'name'  => _('AutoFS'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('AutoFS RDN'), _('Branch in which automount info will be stored'),
             'fdAutofsRDN', TRUE,
             'ou=autofs'
diff --git a/certificates/personal/certificates/class_userCertificates.inc b/certificates/personal/certificates/class_userCertificates.inc
index fc099a7443..896457dd5e 100644
--- a/certificates/personal/certificates/class_userCertificates.inc
+++ b/certificates/personal/certificates/class_userCertificates.inc
@@ -23,7 +23,7 @@ class CertificateOrderedArrayAttribute extends OrderedArrayAttribute
   protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
-    list ($img, $nbicons) = parent::genRowIcons($key, $value);
+    list($img, $nbicons) = parent::genRowIcons($key, $value);
     $img = $this->renderInputField(
       'image', $id.'_download_'.$key,
       [
diff --git a/community/admin/departments/community/class_communityOrganization.inc b/community/admin/departments/community/class_communityOrganization.inc
index 877c4c9b22..4871ad348a 100644
--- a/community/admin/departments/community/class_communityOrganization.inc
+++ b/community/admin/departments/community/class_communityOrganization.inc
@@ -41,20 +41,20 @@ class communityOrganization extends simplePlugin
       'membership' => [
         'name'  => _('Membership'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Membership type'), _('Membership type of this organization'),
             'fdCommunityMembershipType', FALSE,
             $config->get_cfg_value('communityMembershipTypeChoices', [])
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Agreement signed'), _('Did this member returned the agreement signed'),
             'fdCommunityMembershipAgreement', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Active'), _('Is the membership of this organization active'),
             'fdCommunityMembershipActive', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Hidden'), _('Should this membership be hidden from listings'),
             'fdCommunityMembershipHidden', FALSE
           )
@@ -63,11 +63,11 @@ class communityOrganization extends simplePlugin
       'dates' => [
         'name'  => _('Dates'),
         'attrs' => [
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('Start date'), _('Date of the beginning'),
             'fdCommunityStartDate', TRUE
           ),
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('End date'), _('Date of the end'),
             'fdCommunityEndDate', FALSE,
             ''
diff --git a/community/admin/departments/community/class_communityProject.inc b/community/admin/departments/community/class_communityProject.inc
index 6c0871e6c5..fed9c80376 100644
--- a/community/admin/departments/community/class_communityProject.inc
+++ b/community/admin/departments/community/class_communityProject.inc
@@ -41,11 +41,11 @@ class communityProject extends communityOrganization
         'project' => [
           'name'  => _('Project'),
           'attrs' => [
-            new StringAttribute (
+            new StringAttribute(
               _('Project full name'), _('Full name of this project'),
               'fdProjectFullName', FALSE
             ),
-            new StringAttribute (
+            new StringAttribute(
               _('Project key'), _('ID used for this project in other softwares or databases'),
               'fdProjectKey', FALSE
             ),
diff --git a/community/config/community/class_communityConfig.inc b/community/config/community/class_communityConfig.inc
index 576906a1e2..b04c399819 100644
--- a/community/config/community/class_communityConfig.inc
+++ b/community/config/community/class_communityConfig.inc
@@ -41,7 +41,7 @@ class communityConfig extends simplePlugin
         'name'  => _('Community'),
         'attrs' => [
           new SetAttribute(
-            new StringAttribute (
+            new StringAttribute(
               _('Membership type choices'), _('Community membership types available in the user community tab'),
               'fdCommunityMembershipTypeChoices', FALSE
             ),
diff --git a/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc b/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
index 2169e52bae..0363f4b5d5 100644
--- a/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
+++ b/cyrus/admin/systems/services/cyrus/class_serviceCyrus.inc
@@ -44,7 +44,7 @@ class serviceCyrus extends simpleMailMethodService
       'cyrus' => [
         'name'  => _('Cyrus settings'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Connect URL for Cyrus server'),
             'fdCyrusConnect',
             [
@@ -72,11 +72,11 @@ class serviceCyrus extends simpleMailMethodService
             '/^{(.*):(\\d+)\\/([^\\/]+)(.*)}$/',
             '{%s:%d/%s%s}'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Admin user'), _('Imap server admin user'),
             'fdCyrusAdmin', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Password'), _('Admin user password'),
             'fdCyrusPassword', TRUE
           ),
@@ -85,7 +85,7 @@ class serviceCyrus extends simpleMailMethodService
       'sieve' => [
         'name'  => _('Sieve settings'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Sieve connect URL for Cyrus server'),
             'fdCyrusSieveServer',
             [
diff --git a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
index ce39a8180a..17f99f1967 100644
--- a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
+++ b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
@@ -48,12 +48,12 @@ class mailMethodCyrus extends mailMethod
 
     if (!count($this->ServerList)) {
       $this->error = _("There are no IMAP compatible mail servers defined!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
           "<b>IMAP: No mail servers configured, check systems->server->service->imap.</b>", "");
       return FALSE;
     } elseif (!isset($this->ServerList[$this->parent->gosaMailServer])) {
       $this->error = _("Mail server for this account is invalid!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
           "<b>IMAP: The selected mail server '".$this->parent->gosaMailServer."' is invalid.</b>", "");
       return FALSE;
     } else {
@@ -75,7 +75,7 @@ class mailMethodCyrus extends mailMethod
         else the FusionDirectory UI may freeze for 60 seconds.
        (PHP default is 'default_socket_timeout = 60') */
     $timeout = $config->get_cfg_value("imapTimeout", 10);
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $timeout,
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $timeout,
           "<b>IMAP: Setting imap connect timeout to</b> (seconds)");
     imap_timeout(1, $timeout);
 
@@ -121,7 +121,7 @@ class mailMethodCyrus extends mailMethod
   {
     parent::disconnect();
     if ($this->is_connected()) {
-      @imap_close ($this->imap_handle);
+      @imap_close($this->imap_handle);
     }
   }
 
@@ -184,10 +184,10 @@ class mailMethodCyrus extends mailMethod
       } else {
         $quota = "(".$this->quotaUsage." / ".$this->quotaValue.")";
       }
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
           "<b>IMAP: Successfully received account quota</b>");
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
@@ -259,7 +259,7 @@ class mailMethodCyrus extends mailMethod
       return FALSE;
     }
 
-    $this->build_account_id ();
+    $this->build_account_id();
     if ($this->is_connected()) {
       $cfg  = $this->ServerList[$this->parent->gosaMailServer];
       $list = imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
@@ -301,10 +301,10 @@ class mailMethodCyrus extends mailMethod
       return FALSE;
     }
 
-    $this->build_account_id ();
+    $this->build_account_id();
 
     $cfg = $this->ServerList[$this->parent->gosaMailServer];
-    @imap_setacl ($this->imap_handle, $this->account_id, $cfg["admin"], "lrswipcda");
+    @imap_setacl($this->imap_handle, $this->account_id, $cfg["admin"], "lrswipcda");
 
     if ($config->get_cfg_value("cyrusDeleteMailbox", "TRUE") == "TRUE") {
       if (!imap_deletemailbox($this->imap_handle, $cfg["connect"].$this->account_id)) {
@@ -375,11 +375,11 @@ class mailMethodCyrus extends mailMethod
           mb_convert_encoding($str, "UTF-8", "UTF7-IMAP"));
         $result[] = $str;
       }
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim (implode ($result, ", "), ", "),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim (implode($result, ", "), ", "),
           "<b>IMAP: Received mailbox folders.</b>");
       $this->error = imap_last_error();
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Cannot receive mailbox folders.</b>");
       $this->error = imap_last_error();
       return [];
@@ -402,7 +402,7 @@ class mailMethodCyrus extends mailMethod
     /* imap_getacl available? */
     if (!function_exists ('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
       return $folder_acls;
     }
@@ -410,7 +410,7 @@ class mailMethodCyrus extends mailMethod
     /* Get ACLs and merge them with the already given acls (ldap)
      */
     $this->build_account_id();
-    $acls = imap_getacl ($this->imap_handle, $this->account_id);
+    $acls = imap_getacl($this->imap_handle, $this->account_id);
     foreach ($acls as $user => $acl) {
       if ($user == "anyone") {
         // Map to internal placeholder
@@ -440,7 +440,7 @@ class mailMethodCyrus extends mailMethod
     /* imap_getacl available? */
     if (!function_exists ('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
       return FALSE;
     }
@@ -451,13 +451,13 @@ class mailMethodCyrus extends mailMethod
       $folder_id = $this->create_folder_id($subfolder);
 
       /* Remove all acl's for this folder */
-      $users = @imap_getacl ($this->imap_handle, $folder_id);
+      $users = @imap_getacl($this->imap_handle, $folder_id);
 
       if (is_array($users)) {
         foreach ($users as $userid => $perms) {
           $userid = strtolower($userid);
-          imap_setacl ($this->imap_handle, $folder_id, $userid, "");
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $folder_id." -> ".$userid,
+          imap_setacl($this->imap_handle, $folder_id, $userid, "");
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $folder_id." -> ".$userid,
               "<b>IMAP: Removing folder permissions.</b>");
         }
       }
@@ -468,8 +468,8 @@ class mailMethodCyrus extends mailMethod
       $folder_id = $this->create_folder_id($subfolder);
 
       foreach ($permissions as $user => $acl) {
-        imap_setacl ($this->imap_handle, $folder_id, $user, $acl);
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $folder_id." -> ".$user.": ".$acl,
+        imap_setacl($this->imap_handle, $folder_id, $user, $acl);
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $folder_id." -> ".$user.": ".$acl,
             "<b>IMAP: Setting new folder permissions.</b>");
       }
     }
@@ -508,7 +508,7 @@ class mailMethodCyrus extends mailMethod
         $script = "";
         if (!$sieve->sieve_getscript('fusiondirectory')) {
           $this->error = sprintf(_('Cannot retrieve SIEVE script: %s'), to_string($sieve->error_raw));
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $sieve->error_raw,
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $sieve->error_raw,
               "<b>SIEVE: Cannot read 'fusiondirectory' sieve script.</b>");
           return FALSE;
         }
@@ -526,12 +526,12 @@ class mailMethodCyrus extends mailMethod
         }
 
         if ($is_valid_script || strlen($script) == 0 || empty($script)) {
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "",
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "",
               "<b>SIEVE</b>: Sieve script 'fusiondirectory' was a valid FusionDirectory script and will be replaced.");
         } else {
           $new_name = "non_fusiondirectory_".date("Ymd_H-i-s");
           $sieve->sieve_sendscript($new_name, $script);
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->sieve->error_raw,
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->sieve->error_raw,
               "<b>SIEVE</b>: Non FusionDirectory sieve script. <b>Creating backup of the current sieve script '".$new_name."'.</b>");
         }
       }
@@ -576,7 +576,7 @@ class mailMethodCyrus extends mailMethod
     /* Upload script and make it the default one */
     if (!$sieve->sieve_sendscript("fusiondirectory", $script)) {
       $this->error = sprintf(_("Cannot store SIEVE script: %s"), to_string($sieve->error_raw));
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string ($sieve->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw),
         "<b>SIEVE: Writing new Sieve script failed!</b>");
       return FALSE;
     }
@@ -597,7 +597,7 @@ class mailMethodCyrus extends mailMethod
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search ('(objectClass=fdCyrusServer)',
+    $ldap->search('(objectClass=fdCyrusServer)',
                   ['cn', 'fdCyrusConnect', 'fdCyrusAdmin', 'fdCyrusPassword', 'fdCyrusSieveServer']);
     while ($attrs = $ldap->fetch()) {
 
diff --git a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
index b113b40c04..f7b6cbc1a4 100644
--- a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
+++ b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
@@ -22,7 +22,7 @@ class DebconfEntriesAttribute extends CompositeAttribute
 {
   function __construct ($description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, [], "", "", $acl);
+    parent::__construct($description, $ldapName, [], "", "", $acl);
     $this->setInLdap(FALSE);
   }
 
@@ -48,7 +48,7 @@ class DebconfEntriesAttribute extends CompositeAttribute
         $cn     = $entry['cn'][0];
         $desc   = (isset($entry['description'][0]) ? $entry['description'][0] : '');
         $default  = (isset($entry['value'][0]) ? $entry['default'][0] : '');
-        $this->attributes[$cn] = new StringAttribute ($cn, $desc, "debconfentry_$cn", FALSE, $default);
+        $this->attributes[$cn] = new StringAttribute($cn, $desc, "debconfentry_$cn", FALSE, $default);
         $this->attributes[$cn]->setInLdap(FALSE);
         $this->attributes[$cn]->setAcl($this->getAcl());
         //~ 'choices'
@@ -100,7 +100,7 @@ class DebconfImportAttribute extends FileAttribute
 {
   function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = "", $acl = "")
   {
-    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, $acl);
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
     $this->setInLdap(FALSE);
   }
 
@@ -114,9 +114,9 @@ class DebconfImportAttribute extends FileAttribute
     $matches = [];
     $str = fread($handle, 1024);
     // removing breaklines
-    $tmp = str_replace ("\n", "", $str);
+    $tmp = str_replace("\n", "", $str);
     // removing spaces
-    $tmp = str_replace (" ", "", $tmp);
+    $tmp = str_replace(" ", "", $tmp);
     if (preg_match( "/dn:.*,ou=templates,ou=([^,=]+),".get_ou("debconfRDN").
                     $config->current['BASE']."/",
                     // searching for dn: containing the template name
@@ -185,14 +185,14 @@ class debconfProfileGeneric extends simplePlugin
       'main' => [
         'name'  => _("Name"),
         'attrs' => [
-          new DebconfImportAttribute ("", _("Import a debconf file"), "import"),
-          new StringAttribute (_("Name"), _("Name of this debconf template"), "ou", TRUE),
+          new DebconfImportAttribute("", _("Import a debconf file"), "import"),
+          new StringAttribute(_("Name"), _("Name of this debconf template"), "ou", TRUE),
         ]
       ],
       'entries' => [
         'name'  => _("Entries"),
         'attrs' => [
-          new DebconfEntriesAttribute (_("Debconf template answers"), "debconfEntries"),
+          new DebconfEntriesAttribute(_("Debconf template answers"), "debconfEntries"),
         ]
       ],
     ];
diff --git a/debconf/admin/systems/debconf/class_debconfStartup.inc b/debconf/admin/systems/debconf/class_debconfStartup.inc
index cd86f751d3..f546ba1226 100644
--- a/debconf/admin/systems/debconf/class_debconfStartup.inc
+++ b/debconf/admin/systems/debconf/class_debconfStartup.inc
@@ -45,11 +45,11 @@ class debconfStartup extends simplePlugin
       'main' => [
         'name'  => _('Debconf settings'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Profile'), _('Debconf preseed profile to be used for installation'),
             'debconfProfile', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Release'), _('Debian release to install'),
             'debconfDebianRelease', TRUE,
             ['squeeze', 'unstable', 'wheezy']
diff --git a/dhcp/admin/dhcp/class_dhcpConfiguration.inc b/dhcp/admin/dhcp/class_dhcpConfiguration.inc
index 24efd6a339..8f559fd9a3 100644
--- a/dhcp/admin/dhcp/class_dhcpConfiguration.inc
+++ b/dhcp/admin/dhcp/class_dhcpConfiguration.inc
@@ -96,7 +96,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
-    list ($img, $nbicons) = parent::genRowIcons($key, $value);
+    list($img, $nbicons) = parent::genRowIcons($key, $value);
 
     if ($key == 0) {
       /* Remove delete button on first row */
@@ -224,7 +224,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   function fillLdapValue (&$attrs)
   {
     /* Remove crap made by plugin */
-    unset ($attrs[$this->getLdapName()]);
+    unset($attrs[$this->getLdapName()]);
   }
 
   function setParent (&$plugin)
@@ -348,7 +348,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute
   function reload ($erase = TRUE)
   {
     global $config;
-    @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $erase, 'reload');
+    @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $erase, 'reload');
     /* Init LDAP and load list */
     $ldap = $config->get_ldap_link();
 
@@ -554,7 +554,7 @@ class dhcpConfiguration extends simplePlugin
         'attrs' => [
           new BaseSelectorAttribute(get_ou('dhcpRDN')),
           new HiddenAttribute('cn'),
-          new DhcpSectionsAttribute (
+          new DhcpSectionsAttribute(
             '', _('The DHCP sections handled by this server'),
             'dhcpSections', FALSE
           )
diff --git a/dhcp/admin/dhcp/class_dhcpPlugin.inc b/dhcp/admin/dhcp/class_dhcpPlugin.inc
index c34ad53d54..851e56e1b0 100644
--- a/dhcp/admin/dhcp/class_dhcpPlugin.inc
+++ b/dhcp/admin/dhcp/class_dhcpPlugin.inc
@@ -30,11 +30,11 @@ class dhcpPlugin extends simplePlugin
       'main' => [
         'name'  => _('DHCP'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
           ),
-          new OrderedArrayAttribute (
+          new OrderedArrayAttribute(
             new StringAttribute(
               _('Options'), _('The DHCP options'),
               'dhcpOption', FALSE
@@ -42,14 +42,14 @@ class dhcpPlugin extends simplePlugin
             // Order disabled, Default values, Edit enabled
             FALSE, [], TRUE
           ),
-          new OrderedArrayAttribute (
+          new OrderedArrayAttribute(
             new StringAttribute(
               _('Statements'), _('The DHCP statements'),
               'dhcpStatements', FALSE
             ),
             FALSE, [], TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
@@ -105,7 +105,7 @@ class dhcpPlugin extends simplePlugin
   function save ()
   {
     $this->dn = $this->compute_dn();
-    @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->dn, 'save');
+    @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->dn, 'save');
     $this->prepare_save();
     $this->attrs['cn']          = [$this->cn];
     $this->attrs['objectClass'] = $this->objectclasses;
diff --git a/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc b/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
index 60902b544f..00087a3454 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpDnsZone.inc
@@ -38,19 +38,19 @@ class dhcpDnsZone extends dhcpPlugin
       'main' => [
         'name'  => _('DHCP'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('DNS Zone Server'), _('Master server of the DNS Zone'),
             'dhcpDnsZoneServer', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Tsig key'), _('The TSig key DN'),
             'dhcpKeyDN', FALSE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
diff --git a/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc b/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
index c8395e88ca..b840b2297c 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpFailOverPeer.inc
@@ -38,58 +38,58 @@ class dhcpFailOverPeer extends dhcpPlugin
       'main' => [
         'name'  => _('DHCP'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Primary server'), _('IP address or DNS name of the server playing primary role in DHC Load Balancing and Fail over'),
             'dhcpFailOverPrimaryServer', TRUE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Primary port'), _('Port on which primary server listens for connections from its fail over peer (secondary server)'),
             'dhcpFailOverPrimaryPort', TRUE,
             0, FALSE, 519
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Secondary server'), _('IP address or DNS name of the server playing secondary role in DHC Load Balancing and Fail over'),
             'dhcpFailOverSecondaryServer', TRUE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Secondary port'), _('Port on which secondary server listens for connections from its fail over peer (primary server)'),
             'dhcpFailOverSecondaryPort', TRUE,
             0, FALSE, 520
           ),
-          new TimeAttribute (
+          new TimeAttribute(
             _('Response delay'), _('Maximum response time in seconds, before Server assumes that connection to fail over peer has failed'),
             'dhcpFailOverResponseDelay', FALSE,
             0, FALSE, 60
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Unacked updates'), _('Number of BNDUPD messages that server can send before it receives BNDACK from its fail over peer'),
             'dhcpFailOverUnackedUpdates', FALSE,
             0, FALSE, 10
           ),
-          new TimeAttribute (
+          new TimeAttribute(
             _('Maximum Client Lead Time'), _('Maximum Client Lead Time configuration in seconds, as defined in DHCP Failover Protocol [FAILOVR]'),
             'dhcpMaxClientLeadTime', TRUE,
             0, FALSE, 3600
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Split'), _('Split between the primary and secondary servers for fail over purpose'),
             'dhcpFailOverSplit', TRUE,
             0, FALSE, 128
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('HashBucketAssignment'), _('HashBucketAssignment bit map for the DHCP Server, as defined in DHC Load Balancing Algorithm [RFC 3074]'),
             'dhcpHashBucketAssignment', FALSE
           ),
-          new TimeAttribute (
+          new TimeAttribute(
             _('Load balance time'), _('Cutoff time in seconds, after which load balance is disabled'),
             'dhcpFailOverLoadBalanceTime', FALSE,
             0, FALSE, 3
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
diff --git a/dhcp/admin/dhcp/sections/class_dhcpHost.inc b/dhcp/admin/dhcp/sections/class_dhcpHost.inc
index 77e48369f5..38adc776cc 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpHost.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpHost.inc
@@ -42,13 +42,13 @@ class dhcpHost extends dhcpPlugin
         new CompositeAttribute(
           _('The client hardware address'), 'dhcpHWAddress',
           [
-            new SelectAttribute (
+            new SelectAttribute(
               '', _('The hardware address type'),
               'dhcpHWAddress_type', TRUE,
               [  'ethernet',   'fddi',   'token-ring'], 'ethernet',
               [_('Ethernet'),_('FDDI'),_('Token Ring')]
             ),
-            new StringAttribute (
+            new StringAttribute(
               '', _('The client hardware address'),
               'dhcpHWAddress_address', TRUE
             ),
diff --git a/dhcp/admin/dhcp/sections/class_dhcpPool.inc b/dhcp/admin/dhcp/sections/class_dhcpPool.inc
index 0c4d8e73cd..a5ef0c7a23 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpPool.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpPool.inc
@@ -38,16 +38,16 @@ class dhcpPool extends dhcpPlugin
     $attributesInfo['pool'] = [
       'name'  => _('Pool'),
       'attrs' => [
-        new SetAttribute (
-          new StringAttribute (
+        new SetAttribute(
+          new StringAttribute(
             _('Range'), _('The starting & ending IP Addresses in the range (inclusive), separated by a space; if the range only contains one address, then just the address can be specified. Each range is defined as a separate value.'),
             'dhcpRange', TRUE,
             '', '',
             '/^[0-9\.:]+(\s[0-9\.:]+)?$/'
           )
         ),
-        new SetAttribute (
-          new StringAttribute (
+        new SetAttribute(
+          new StringAttribute(
             _('Permit list'), _('This attribute contains the permit lists associated with a pool. Each permit list is defined as a separate value.'),
             'dhcpPermitList', FALSE
           )
diff --git a/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc b/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
index c3a409a365..903d9a1a3d 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpSubnet.inc
@@ -38,13 +38,13 @@ class dhcpSubnet extends dhcpPlugin
     $attributesInfo['subnet'] = [
       'name'  => _('Subnet'),
       'attrs' => [
-        new IntAttribute (
+        new IntAttribute(
           _('Mask length'), _('The subnet mask length for the subnet. The mask can be easily computed from this length.'),
           'dhcpNetMask', TRUE,
           0, 255, 24
         ),
-        new SetAttribute (
-          new StringAttribute (
+        new SetAttribute(
+          new StringAttribute(
             _('Range'), _('The starting & ending IP Addresses in the range (inclusive), separated by a space; if the range only contains one address, then just the address can be specified. Each range is defined as a separate value.'),
             'dhcpRange', FALSE,
             '', '',
diff --git a/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc b/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
index b84ceb142f..35e078e654 100644
--- a/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
+++ b/dhcp/admin/dhcp/sections/class_dhcpTSigKey.inc
@@ -38,20 +38,20 @@ class dhcpTSigKey extends dhcpPlugin
       'main' => [
         'name'  => _('DHCP'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('Name of this DHCP configuration'),
             'cn', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Algorithm'), _('Algorithm to generate TSIG Key'),
             'dhcpKeyAlgorithm', TRUE,
             ['HMAC-MD5','RSAMD5','RSASHA1','DSA','DH']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Secret'), _('Secret to generate TSIG Key'),
             'dhcpKeySecret', TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Comments'), _('Comments about this DHCP object'),
             'dhcpComments', FALSE
           ),
diff --git a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
index 46e692b55f..c7db139911 100644
--- a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
+++ b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc
@@ -44,7 +44,7 @@ class serviceDHCP extends simpleService
         'class' => ['fullwidth'],
         'attrs' => [
           new SetAttribute(
-            new SelectAttribute (
+            new SelectAttribute(
               '', _('The DN of dhcpService object(s) which contain the configuration information'),
               'dhcpServiceDN'
             )
diff --git a/dhcp/config/dhcp/class_dhcpConfig.inc b/dhcp/config/dhcp/class_dhcpConfig.inc
index 7a36e4a602..3ea230292f 100644
--- a/dhcp/config/dhcp/class_dhcpConfig.inc
+++ b/dhcp/config/dhcp/class_dhcpConfig.inc
@@ -40,7 +40,7 @@ class dhcpConfig extends simplePlugin
       'main' => [
         'name'  => _('DHCP config'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('DHCP RDN'), _('Branch in which DHCP configurations will be stored'),
             'fdDhcpRDN', TRUE,
             'ou=dhcp'
diff --git a/dns/admin/dns/class_DnsRecordAttribute.inc b/dns/admin/dns/class_DnsRecordAttribute.inc
index b27d859e60..b1f2a133aa 100644
--- a/dns/admin/dns/class_DnsRecordAttribute.inc
+++ b/dns/admin/dns/class_DnsRecordAttribute.inc
@@ -26,7 +26,7 @@ class LocRecordAttribute extends CompositeAttribute
                   '(?P<long>[[:digit:] \.]+ [EW])\s+'.
                   '(?P<alt>[[:digit:]\.]+)m?'.
                   '(\s+(?P<size>[[:digit:]\.]+)m?(\s+(?P<hp>[[:digit:]\.]+)m?(\s+(?P<vp>[[:digit:]\.]+)m?)?)?)?$/';
-    parent::__construct ($description, $ldapName, $attributes, $readFormat, FALSE, $acl, $label);
+    parent::__construct($description, $ldapName, $attributes, $readFormat, FALSE, $acl, $label);
   }
 
   function writeValues ($values)
@@ -54,7 +54,7 @@ class LocRecordLatLongAttribute extends CompositeAttribute
                   '(\s+(?P<minutes>[[:digit:]]+)(\s+(?P<seconds>[[:digit:]\.]+))?)?'.
                   '\s+(?P<dir>[NSEW])$/';
     $attributes['seconds']->setStep(.001);
-    parent::__construct ($description, $ldapName, $attributes, $readFormat, FALSE, $acl, $label);
+    parent::__construct($description, $ldapName, $attributes, $readFormat, FALSE, $acl, $label);
     $this->setLinearRendering(TRUE);
   }
 
diff --git a/dns/admin/dns/class_dnsAcl.inc b/dns/admin/dns/class_dnsAcl.inc
index f557b732cf..f890459699 100644
--- a/dns/admin/dns/class_dnsAcl.inc
+++ b/dns/admin/dns/class_dnsAcl.inc
@@ -47,12 +47,12 @@ class dnsAcl extends simplePlugin
         'name'  => _('Acl'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('ACL name'), _('Name of this acl'),
             'cn', TRUE
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Address match list'), _('The ip address match list for this acl'),
               'fdDNSAclMatchList', FALSE
             )
diff --git a/dns/admin/dns/class_dnsManagement.inc b/dns/admin/dns/class_dnsManagement.inc
index 9ef77f1409..f7553f3bc0 100644
--- a/dns/admin/dns/class_dnsManagement.inc
+++ b/dns/admin/dns/class_dnsManagement.inc
@@ -85,7 +85,7 @@ class dnsManagement extends simpleManagement
     }
     foreach ($targets as $zoneDn) {
       $entry = $this->getHeadpage()->getEntry($zoneDn);
-      list ($fqdn) = explode(' ', $entry['sOARecord'][0]);
+      list($fqdn) = explode(' ', $entry['sOARecord'][0]);
       $servers = static::findServerByFQDN($fqdn, $zoneDn);
       if (count($servers) > 1) {
         msg_dialog::display(_('Could not run ldap2zone'), _('More than one server matches the SOA'), ERROR_DIALOG);
@@ -121,7 +121,7 @@ class dnsManagement extends simpleManagement
   public static function findServerByFQDN ($fqdn, $zoneDn = NULL)
   {
     global $config;
-    list ($serverCn, $serverZone) = explode('.', $fqdn, 2);
+    list($serverCn, $serverZone) = explode('.', $fqdn, 2);
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
     $ips = [];
diff --git a/dns/admin/dns/class_dnsView.inc b/dns/admin/dns/class_dnsView.inc
index a40f884e75..78d2af8ef6 100644
--- a/dns/admin/dns/class_dnsView.inc
+++ b/dns/admin/dns/class_dnsView.inc
@@ -45,19 +45,19 @@ class dnsView extends simplePlugin
         'name'  => _('View'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('View name'), _('Name of this view'),
             'cn', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Match clients ACL'), _('Name of the ACL to use for the source IP address of the incoming requests'),
             'fdDNSViewMatchClientsAcl', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Match destinations ACL'), _('Name of the ACL to use for the destination IP address of the incoming requests'),
             'fdDNSViewMatchDestinationsAcl', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Match recursive only'), _('Match only recursive queries in this view'),
             'fdDNSViewMatchRecursiveOnly', FALSE
           ),
diff --git a/dns/admin/dns/class_dnsZone.inc b/dns/admin/dns/class_dnsZone.inc
index f0be55748a..01af611976 100644
--- a/dns/admin/dns/class_dnsZone.inc
+++ b/dns/admin/dns/class_dnsZone.inc
@@ -45,12 +45,12 @@ class DnsRecordPlugin extends simplePlugin
         'name'  => _('Record'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Subdomain'), _('Relative subdomain name'),
             'relativeSubdomainName', FALSE,
             '', 'dnsRecord'
           ),
-          new DnsRecordAttribute (
+          new DnsRecordAttribute(
             _('Record'), _('DNS Record'),
             'dnsRecord', TRUE
           ),
@@ -357,7 +357,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
       }
     }
     foreach ($this->value as $line) {
-      list ($domain, $type, $content) = $line;
+      list($domain, $type, $content) = $line;
       // Only save root records here
       if (empty($domain)) {
         $attrs[$type][] = $content;
@@ -374,7 +374,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     $ptrs       = [];
     $nsRecords  = [];
     foreach ($value as $line) {
-      list ($domain, $type, $content, $reverse) = $line;
+      list($domain, $type, $content, $reverse) = $line;
       if (!empty($reverse)) {
         if (!DnsRecordAttribute::matchReverseZone($type, $content, $reverse)) {
           msg_dialog::display(
@@ -456,9 +456,9 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
     unset($newSoa[2]);
     $soaChanged = array_differs($initialSoa, $newSoa);
     /* Compute values into $nodes and $ptrs */
-    list ($nodes, $ptrs, $nsRecords) = $this->valueToNodes($this->value);
+    list($nodes, $ptrs, $nsRecords) = $this->valueToNodes($this->value);
     /* List all old nodes */
-    list ($initialNodes, $initialPtrs, ) = $this->valueToNodes($this->getInitialValue());
+    list($initialNodes, $initialPtrs, ) = $this->valueToNodes($this->getInitialValue());
     /* Update reverse zones top nodes */
     $oldReverseZones = $this->initialReverseZones;
     foreach ($this->reverseZones as $reverseZone) {
@@ -644,7 +644,7 @@ class DnsRecordsAttribute extends DialogOrderedArrayAttribute
 
   protected function genRowIcons ($key, $value)
   {
-    list ($img, $nbicons) = parent::genRowIcons($key, $value);
+    list($img, $nbicons) = parent::genRowIcons($key, $value);
     if ($this->canWriteRecord($value)) {
       return [$img, $nbicons];
     } else {
@@ -718,24 +718,24 @@ class dnsZone extends simplePlugin
         'name'  => _('Zone'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('dnsRDN')),
-          new FQDNAttribute (
+          new FQDNAttribute(
             _('Zone name'), _('Zone name'),
             'zoneName', TRUE
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             // Relative domain name
             'relativeDomainName', TRUE,
             '@'
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Reverse zones'), sprintf(_('Reverse zones for this zone in the form xx.xx.in-addr.arpa%1$s or x.x.ip6.arpa%1$s'), (dnsZone::finalDot() ? '.' : '')),
               'reverseZones', FALSE,
               '', '',
               '/^.*\.(in-addr|ip6)\.arpa'.(dnsZone::finalDot() ? '\.' : '').'$/i', '11.168.192.in-addr.arpa'.(dnsZone::finalDot() ? '.' : '')
             )
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             'dNSClass', TRUE,
             'IN'
           ),
@@ -744,7 +744,7 @@ class dnsZone extends simplePlugin
       'soa' => [
         'name'  => _('SOA record'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('SOA Record'),
             'sOARecord',
             [
diff --git a/dns/admin/systems/class_dnsHost.inc b/dns/admin/systems/class_dnsHost.inc
index 5869a66e12..30cc732262 100644
--- a/dns/admin/systems/class_dnsHost.inc
+++ b/dns/admin/systems/class_dnsHost.inc
@@ -25,7 +25,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
 
   function __construct ($label, $description, $ldapName, $zoneDn, $defaultValue = [], $acl = "")
   {
-    parent::__construct ($label, $description, $ldapName, FALSE, $defaultValue, $acl);
+    parent::__construct($label, $description, $ldapName, FALSE, $defaultValue, $acl);
     $this->zoneDn = $zoneDn;
   }
 
@@ -267,7 +267,7 @@ class dnsHost extends simplePlugin
         /* Fetch SOA record */
         $ldap->cat($dn);
         if ($attrs = $ldap->fetch()) {
-          list ($fqdn) = explode(' ', $attrs['sOARecord'][0]);
+          list($fqdn) = explode(' ', $attrs['sOARecord'][0]);
           $servers = dnsManagement::findServerByFQDN($fqdn, $dn);
           if (isset($servers[$this->dn])) {
             $fqdn = '<strong>'.$fqdn.'</strong>';
diff --git a/dns/config/dns/class_dnsConfig.inc b/dns/config/dns/class_dnsConfig.inc
index 83f48d6cf5..6c5188bd12 100644
--- a/dns/config/dns/class_dnsConfig.inc
+++ b/dns/config/dns/class_dnsConfig.inc
@@ -41,12 +41,12 @@ class dnsConfig extends simplePlugin
       'main' => [
         'name'  => _('DNS config'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('DNS RDN'), _('Branch in which DNS zones will be stored'),
             'fdDnsRDN', TRUE,
             'ou=dns'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Store final dot in domains'), _('Should FD store a final dot at the end of domains?'),
             'fdDNSFinalDot', FALSE,
             TRUE
diff --git a/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc b/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
index 70c0078416..415df34d78 100644
--- a/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
+++ b/dovecot/admin/systems/services/dovecot/class_serviceDovecot.inc
@@ -42,7 +42,7 @@ class serviceDovecot extends simpleMailMethodService
       'connection' => [
         'name'  => _('Dovecot connection'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Connect URL for Dovecot server'),
             'fdDovecotConnect',
             [
@@ -75,15 +75,15 @@ class serviceDovecot extends simpleMailMethodService
       'credentials' => [
         'name'  => _('Master credentials'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Admin user'), _('Dovecot server admin user'),
             'fdDovecotAdmin', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Password'), _('Admin user password'),
             'fdDovecotPassword', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Mail directory'), _('Path to the directory in which user maildirs must be created'),
             'fdDovecotMailDir', TRUE,
             '/var/mail'
@@ -93,7 +93,7 @@ class serviceDovecot extends simpleMailMethodService
       'options' => [
         'name'  => _('Options'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Create the user folder via Argonaut'), _('Use argonaut to create the user mailbox on the Dovecot server'),
             'fdDovecotArgonautMkdir', TRUE,
             TRUE
diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 7bcacc1e92..6da5e6fd9f 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -48,12 +48,12 @@ class mailMethodDovecot extends mailMethod
 
     if (!count($servers)) {
       $this->error = _("There are no IMAP compatible mail servers defined!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
           "<b>IMAP: No mail servers configured, check systems->server->service->imap.</b>", "");
       return FALSE;
     } elseif (!isset($servers[$this->parent->gosaMailServer])) {
       $this->error = _("Mail server for this account is invalid!");
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
           "<b>IMAP: The selected mail server '".$this->parent->gosaMailServer."' is invalid.</b>", "");
       return FALSE;
     } else {
@@ -78,7 +78,7 @@ class mailMethodDovecot extends mailMethod
         else the FusionDirectory UI may freeze for 60 seconds.
        (PHP default is 'default_socket_timeout = 60') */
     $timeout = $config->get_cfg_value("imapTimeout", 10);
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $timeout,
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $timeout,
           "<b>IMAP: Setting imap connect timeout to</b> (seconds)");
     imap_timeout(1, $timeout);
 
@@ -147,17 +147,17 @@ class mailMethodDovecot extends mailMethod
         } else {
           $quota = "(".$this->quotaUsage." / ".$this->quotaValue.")";
         }
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
             "<b>IMAP: Successfully received account quota</b>");
       } else {
         $this->quotaUsage = '';
         $this->quotaValue = '';
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '',
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '',
             "<b>IMAP: Received empty account quota information</b>");
       }
     } else {
       $this->error = imap_last_error();
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error (),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
@@ -222,7 +222,7 @@ class mailMethodDovecot extends mailMethod
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search ('(objectClass=fdDovecotServer)',
+    $ldap->search('(objectClass=fdDovecotServer)',
                   ['cn', 'fdDovecotConnect', 'fdDovecotAdmin', 'fdDovecotPassword', 'fdDovecotArgonautMkdir', 'macAddress']);
     while ($attrs = $ldap->fetch()) {
       $serverList[$attrs['cn'][0]] = [
diff --git a/dsa/admin/dsa/class_simpleSecurityObject.inc b/dsa/admin/dsa/class_simpleSecurityObject.inc
index 7e9a55fcbe..89880e6278 100644
--- a/dsa/admin/dsa/class_simpleSecurityObject.inc
+++ b/dsa/admin/dsa/class_simpleSecurityObject.inc
@@ -50,12 +50,12 @@ class simpleSecurityObject extends simplePlugin
       'main' => [
         'name'  => _('Simple security object'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('dsaRDN')),
-          new HostNameAttribute (
+          new BaseSelectorAttribute(get_ou('dsaRDN')),
+          new HostNameAttribute(
             _('Entry name'), _('Account name'),
             'cn', TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this simple security object'),
             'description', FALSE
           ),
@@ -64,7 +64,7 @@ class simpleSecurityObject extends simplePlugin
       'password' => [
         'name'  => _('Change password'),
         'attrs' => [
-          new UserPasswordAttribute (
+          new UserPasswordAttribute(
             _('Password'), _('Password'),
             'userPassword', FALSE
           )
diff --git a/dsa/config/dsa/class_dsaConfig.inc b/dsa/config/dsa/class_dsaConfig.inc
index 9f3bf44bb5..fd141bde52 100644
--- a/dsa/config/dsa/class_dsaConfig.inc
+++ b/dsa/config/dsa/class_dsaConfig.inc
@@ -41,7 +41,7 @@ class dsaConfig extends simplePlugin
       'main' => [
         'name'  => _('DSA'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('DSA RDN'), _('Branch in which Directory Service Account (dsa) will be stored'),
             'fdDSARDN', TRUE,
             'ou=dsa'
diff --git a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
index d0ea992c08..a51ef79ad1 100644
--- a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
+++ b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc
@@ -37,7 +37,7 @@ class EjbcaUserCertsAttribute extends GenericDialogAttribute
 
   function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
   }
 
   function addValue ($dn, $entry)
diff --git a/ejbca/admin/ejbca/class_ejbcaCertificate.inc b/ejbca/admin/ejbca/class_ejbcaCertificate.inc
index 9f294c79cf..943828630d 100644
--- a/ejbca/admin/ejbca/class_ejbcaCertificate.inc
+++ b/ejbca/admin/ejbca/class_ejbcaCertificate.inc
@@ -46,12 +46,12 @@ class ejbcaCertificate extends simplePlugin
       'main' => [
         'name'  => _('Certificate'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('ejbcaRDN')),
-          new HostNameAttribute (
+          new BaseSelectorAttribute(get_ou('ejbcaRDN')),
+          new HostNameAttribute(
             _('Name'), _('Common name'),
             'cn', TRUE
           ),
-          new FileDownloadAttribute (
+          new FileDownloadAttribute(
             _('Certificate'), _('Certificate content'),
             'userCertificate;binary', TRUE,
             '.der'
diff --git a/ejbca/config/ejbca/class_ejbcaConfig.inc b/ejbca/config/ejbca/class_ejbcaConfig.inc
index b54d7c81d2..92cadf48c9 100644
--- a/ejbca/config/ejbca/class_ejbcaConfig.inc
+++ b/ejbca/config/ejbca/class_ejbcaConfig.inc
@@ -41,7 +41,7 @@ class ejbcaConfig extends simplePlugin
       'main' => [
         'name'  => _('EJBCA plugin'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('EJBCA RDN'), _('Branch in which ejbca certificates are stored'),
             'fdEjbcaRDN', TRUE,
             'ou=certificates'
diff --git a/fai/admin/fai/class_faiDiskEntry.inc b/fai/admin/fai/class_faiDiskEntry.inc
index eaca1e4754..467e610083 100644
--- a/fai/admin/fai/class_faiDiskEntry.inc
+++ b/fai/admin/fai/class_faiDiskEntry.inc
@@ -82,7 +82,7 @@ class DiskPartitionsAttribute extends DialogOrderedArrayAttribute
 
   function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
+    parent::__construct($label, $description, $ldapName, FALSE, $values, $acl);
   }
 
   protected function loadAttrValue ($attrs)
@@ -239,47 +239,47 @@ class faiDiskEntry extends simplePlugin
       'main' => [
         'name'  => _('Device'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Name'), _('Disk name'),
             'cn', TRUE,
             '', 'FAIpartitions',
             '/[a-z0-9_-]/i'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description'),
             'description', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('fstab key'), _('Key to use in fstab file'),
             'fstabkey', TRUE,
             ['device', 'label', 'uuid'], '',
             [_('Device'), _('Label'), _('UUID')]
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Disk label'), _('Disk label'),
             'disklabel', TRUE,
             ['msdos', 'gpt'], '',
             ['MSDOS', 'GPT']
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Random init'), _('Initialise all encrypted partitions with random data'),
             'randinit', FALSE
           ),
-          new HiddenAttribute ('FAIdiskType')
+          new HiddenAttribute('FAIdiskType')
         ]
       ],
       'partitions' => [
         'name'  => _('Partition entries'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Combined physical partitions'), _('Physical partitions combined in this LVM volume'),
               'lvmDevices', FALSE,
               []
             )
           ),
-          new DiskPartitionsAttribute (
+          new DiskPartitionsAttribute(
             '', _('Partitions in this class'), 'partitions'
           )
         ]
diff --git a/fai/admin/fai/class_faiHook.inc b/fai/admin/fai/class_faiHook.inc
index 00389d3159..d91c130ed3 100644
--- a/fai/admin/fai/class_faiHook.inc
+++ b/fai/admin/fai/class_faiHook.inc
@@ -47,11 +47,11 @@ class faiHook extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Variables class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -61,19 +61,19 @@ class faiHook extends faiSimplePluginClass
         'name'  => _('Hooks'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             '', _('Variables in this class'),
             'hooks', ['FAIhookEntry','FAIclass','top'],
             [
-              new StringAttribute (
+              new StringAttribute(
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
               ),
-              new StringAttribute (
+              new StringAttribute(
                 _('Description'), _('A short description of the variable'),
                 'description', FALSE
               ),
-              new SelectAttribute (
+              new SelectAttribute(
                 _('Task'), _('Task to run'),
                 'FAItask', TRUE,
                 ['chboot','configure','debconf','error','extrbase',
@@ -81,7 +81,7 @@ class faiHook extends faiSimplePluginClass
                        'mountdisks','partition','prepareapt','repository',
                        'savelog','setup','softupdate','sysinfo','updatebase']
               ),
-              new FileTextAreaAttribute (
+              new FileTextAreaAttribute(
                 _('Script'), _('The script of this hook'),
                 'FAIscript', TRUE,
                 '.sh'
diff --git a/fai/admin/fai/class_faiPackage.inc b/fai/admin/fai/class_faiPackage.inc
index de65f60f7b..6de04bd43f 100644
--- a/fai/admin/fai/class_faiPackage.inc
+++ b/fai/admin/fai/class_faiPackage.inc
@@ -156,7 +156,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
   protected function genRowIcons ($key, $value)
   {
     $id = $this->getHtmlId();
-    list ($img, $nbicons) = parent::genRowIcons($key, $value);
+    list($img, $nbicons) = parent::genRowIcons($key, $value);
     $key64 = base64_encode($key);
     if (preg_match('/\-$/', $value)) {
       $img = '<input type="image" src="geticon.php?context=actions&icon=add&size=16"'.
@@ -299,7 +299,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
           }
         }
       }
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count ($packages), "$release done, packages left");
+      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count($packages), "$release done, packages left");
     }
 
     if (count($packages) > 0) {
@@ -395,11 +395,11 @@ class faiPackage extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Variables class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -408,15 +408,15 @@ class faiPackage extends faiSimplePluginClass
       'repo' => [
         'name'  => _('Repository'),
         'attrs' => [
-          new DisplayLDAPAttribute (
+          new DisplayLDAPAttribute(
             _('Release'), _('Debian release concerned'),
             'FAIdebianRelease', FALSE
           ),
-          new DisplayLDAPArrayAttribute (
+          new DisplayLDAPArrayAttribute(
             _('Sections'), _('Sections concerned'),
             'FAIdebianSection', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Install method'), _('Install method to use for this package list'),
             'FAIinstallMethod', TRUE,
             ['install', 'ninstall', 'remove',
@@ -431,7 +431,7 @@ class faiPackage extends faiSimplePluginClass
         'name'  => _('Packages'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new PackagesAttribute (
+          new PackagesAttribute(
             '', _('Packages in this class'),
             'FAIpackage', TRUE
           )
diff --git a/fai/admin/fai/class_faiPartition.inc b/fai/admin/fai/class_faiPartition.inc
index b2dd475710..2a66f8942c 100644
--- a/fai/admin/fai/class_faiPartition.inc
+++ b/fai/admin/fai/class_faiPartition.inc
@@ -23,7 +23,7 @@ class FaiPartitionSizeAttribute extends CompositeAttribute
 {
   function __construct ($label, $description, $ldapName, $acl = "")
   {
-    parent::__construct (
+    parent::__construct(
       $description, $ldapName,
       [
         new SelectAttribute(
@@ -228,25 +228,25 @@ class faiPartition extends simplePlugin
       'main' => [
         'name'  => _('Partition'),
         'attrs' => [
-          new HiddenAttribute ('FAIdiskType'),
-          new HiddenAttribute ('FAIpartitionNr', FALSE, 'undefined'),
-          new SelectAttribute (
+          new HiddenAttribute('FAIdiskType'),
+          new HiddenAttribute('FAIpartitionNr', FALSE, 'undefined'),
+          new SelectAttribute(
             _('Type'), _('Partition type'),
             'FAIpartitionType', TRUE,
             ['primary', 'logical'], '',
             [_('Primary'), _('Logical')]
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Name'), _('Partition name'),
             'cn', TRUE,
             '', 'FAIpartitions',
             '/[a-z0-9_-]/i'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description'),
             'description', FALSE
           ),
-          new FaiPartitionSizeAttribute (
+          new FaiPartitionSizeAttribute(
             _('Size'), _('Size of this partition'),
             'FAIpartitionSize', FALSE
           ),
@@ -296,15 +296,15 @@ class faiPartition extends simplePlugin
             _('Password'), _('Password to use for encryption. Leave empty to use a encryption key file instead.'),
             'cryptsetupPassword', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Resize'), _('Resize existing partition'),
             'resize', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Bootable'), _('Wether or not this partition can be booted'),
             'bootable', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Preserve'), _('Does the partition need to be preserved'),
             'preserve', FALSE,
             ['','always','reinstall'], '',
@@ -315,13 +315,13 @@ class faiPartition extends simplePlugin
       'fs' => [
         'name'  => _('Filesystem'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Filesystem'), _('The filesystem this partition should be formatted with'),
             'FAIfsType', TRUE,
             ['swap','vfat','ext2','ext3','ext4','reiserfs','xfs','btrfs','-'], 'ext4',
             [_('swap'),_('fat32'),_('ext2'),_('ext3'),_('ext4'),_('reiser fs'),_('xfs'),_('btrfs'),_('LVM/RAID')]
           ),
-          new FaiMountPointAttribute (
+          new FaiMountPointAttribute(
             _('Mount point'), _('Mount point for this partition'),
             'FAImountPoint', TRUE
           ),
@@ -330,16 +330,16 @@ class faiPartition extends simplePlugin
       'options' => [
         'name'  => _('Options'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Mount options'), _('Filesystem mount options'),
             'FAImountOptions', FALSE,
             'defaults'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Create options'), _('Filesystem create options'),
             'FAIfsCreateOptions', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Tune options'), _('Filesystem tune options'),
             'FAIfsTuneOptions', FALSE
           ),
diff --git a/fai/admin/fai/class_faiPartitionTable.inc b/fai/admin/fai/class_faiPartitionTable.inc
index 326580cd53..0ed74db4e2 100644
--- a/fai/admin/fai/class_faiPartitionTable.inc
+++ b/fai/admin/fai/class_faiPartitionTable.inc
@@ -95,7 +95,7 @@ class PartitionTableAttribute extends DialogOrderedArrayAttribute
 
   function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
+    parent::__construct($label, $description, $ldapName, FALSE, $values, $acl);
     $this->disks = &$this->value;
   }
 
@@ -330,11 +330,11 @@ class faiPartitionTable extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Partition table class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -344,10 +344,10 @@ class faiPartitionTable extends faiSimplePluginClass
         'name'  => _('Discs'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new HiddenAttribute (
+          new HiddenAttribute(
             'FAIpartitionMethod', FALSE, 'setup-storage'
           ),
-          new PartitionTableAttribute (
+          new PartitionTableAttribute(
             '', _('Partitions in this class'), 'FAIpartitions'
           )
         ]
diff --git a/fai/admin/fai/class_faiProfile.inc b/fai/admin/fai/class_faiProfile.inc
index 89bb05c86b..7e6cac4a13 100644
--- a/fai/admin/fai/class_faiProfile.inc
+++ b/fai/admin/fai/class_faiProfile.inc
@@ -48,11 +48,11 @@ class faiProfile extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Partition table class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
diff --git a/fai/admin/fai/class_faiScript.inc b/fai/admin/fai/class_faiScript.inc
index 06db57d873..240e9207b5 100644
--- a/fai/admin/fai/class_faiScript.inc
+++ b/fai/admin/fai/class_faiScript.inc
@@ -49,11 +49,11 @@ class faiScript extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Variables class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -63,24 +63,24 @@ class faiScript extends faiSimplePluginClass
         'name'  => _('Scripts'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             '', _('Variables in this class'),
             'scripts', ['FAIscriptEntry','FAIclass','top'],
             [
-              new StringAttribute (
+              new StringAttribute(
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
               ),
-              new StringAttribute (
+              new StringAttribute(
                 _('Description'), _('A short description of the variable'),
                 'description', FALSE
               ),
-              new IntAttribute (
+              new IntAttribute(
                 _('Priority'), _('Priority of this script (smaller is done first)'),
                 'FAIpriority', TRUE,
                 0, 99, 1
               ),
-              new FileTextAreaAttribute (
+              new FileTextAreaAttribute(
                 _('Script'), _('The script itself'),
                 'FAIscript', TRUE,
                 '.sh'
diff --git a/fai/admin/fai/class_faiTemplate.inc b/fai/admin/fai/class_faiTemplate.inc
index 24bd4e3db0..ba8a5d42fa 100644
--- a/fai/admin/fai/class_faiTemplate.inc
+++ b/fai/admin/fai/class_faiTemplate.inc
@@ -37,7 +37,7 @@ class FAITemplateFilesAttribute extends DialogOrderedArrayAttribute
 
   function __construct ($label, $description, $ldapName, $values = [], $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, FALSE, $values, $acl);
+    parent::__construct($label, $description, $ldapName, FALSE, $values, $acl);
   }
 
   protected function loadAttrValue ($attrs)
@@ -165,11 +165,11 @@ class faiTemplate extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Template class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -179,7 +179,7 @@ class faiTemplate extends faiSimplePluginClass
         'name'  => _('Template files'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new FAITemplateFilesAttribute (
+          new FAITemplateFilesAttribute(
             '', _('Template files in this class'), 'templateFiles'
           ),
         ]
diff --git a/fai/admin/fai/class_faiTemplateEntry.inc b/fai/admin/fai/class_faiTemplateEntry.inc
index ce7f0cd068..e94e4d05ba 100644
--- a/fai/admin/fai/class_faiTemplateEntry.inc
+++ b/fai/admin/fai/class_faiTemplateEntry.inc
@@ -37,7 +37,7 @@ class AccessRightsAttribute extends CompositeAttribute
       'o1' => new BooleanAttribute('', '', 'oe', FALSE),
       's1' => new BooleanAttribute('', '', 'os', FALSE),
     ];
-    parent::__construct ($description, $ldapName, $attributes, FALSE, FALSE, $acl, $label);
+    parent::__construct($description, $ldapName, $attributes, FALSE, FALSE, $acl, $label);
     $this->setLinearRendering(TRUE);
   }
 
@@ -138,15 +138,15 @@ class faiTemplateEntry extends simplePlugin
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new PathAttribute (
+          new PathAttribute(
             _('File path'), _('Complete absolute template file path and name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the file'),
             'description', FALSE
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             'FAItemplatePath', TRUE
           ),
         ]
@@ -155,19 +155,19 @@ class faiTemplateEntry extends simplePlugin
         'name'  => _('Template attributes'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new FileTextAreaAttribute (
+          new FileTextAreaAttribute(
             _('Template file content'), _('Content of the template file'),
             'FAItemplateFile', TRUE
           ),
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Owner and group of the file'), 'FAIowner',
             [
-              new StringAttribute (
+              new StringAttribute(
                 _('Owner'), _('File owner'),
                 'owner', TRUE,
                 'root'
               ),
-              new StringAttribute (
+              new StringAttribute(
                 _('Group'), _('File group'),
                 'group', TRUE,
                 'root'
@@ -176,7 +176,7 @@ class faiTemplateEntry extends simplePlugin
             '/^([^.]+)\.([^.]+)$/',
             '%s.%s'
           ),
-          new AccessRightsAttribute (
+          new AccessRightsAttribute(
             _('Access'), _('Access rights'),
             'FAImode'
           )
diff --git a/fai/admin/fai/class_faiVariable.inc b/fai/admin/fai/class_faiVariable.inc
index 2f7f5fc580..96f46bcaf0 100644
--- a/fai/admin/fai/class_faiVariable.inc
+++ b/fai/admin/fai/class_faiVariable.inc
@@ -47,11 +47,11 @@ class faiVariable extends faiSimplePluginClass
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Class name'), _('Variables class name'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Short description of the class'),
             'description', FALSE
           ),
@@ -61,19 +61,19 @@ class faiVariable extends faiSimplePluginClass
         'name'  => _('Variables'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             '', _('Variables in this class'),
             'variables', ['FAIvariableEntry','FAIclass','top'],
             [
-              new StringAttribute (
+              new StringAttribute(
                 _('Name'), _('The name of the variable'),
                 'cn', TRUE
               ),
-              new StringAttribute (
+              new StringAttribute(
                 _('Description'), _('A short description of the variable'),
                 'description', FALSE
               ),
-              new StringAttribute (
+              new StringAttribute(
                 _('Content'), _('The content of the variable'),
                 'FAIvariableContent', TRUE
               ),
diff --git a/fai/admin/systems/class_faiLogView.inc b/fai/admin/systems/class_faiLogView.inc
index ce3a788799..f5405f8dfd 100644
--- a/fai/admin/systems/class_faiLogView.inc
+++ b/fai/admin/systems/class_faiLogView.inc
@@ -32,7 +32,7 @@ class AvailableLogsAttribute extends Attribute
       // TRUE means up
       'sort_up'  => TRUE
     ];
-    parent::__construct ('', $description, $ldapName, FALSE, $value, $acl);
+    parent::__construct('', $description, $ldapName, FALSE, $value, $acl);
     $this->setInLdap(FALSE);
   }
 
diff --git a/fai/admin/systems/class_faiStartup.inc b/fai/admin/systems/class_faiStartup.inc
index 2a4953a3af..b04fee7320 100644
--- a/fai/admin/systems/class_faiStartup.inc
+++ b/fai/admin/systems/class_faiStartup.inc
@@ -82,16 +82,16 @@ class faiStartup extends simplePlugin
       'main' => [
         'name'  => _('FAI settings'),
         'attrs' => [
-          new HiddenAttribute ('FAIstate'),
-          new CompositeAttribute (
+          new HiddenAttribute('FAIstate'),
+          new CompositeAttribute(
             _('FAI profil and release to be applied to this computer'),
             'FAIclass',
             [
-              'release' => new FAIreleaseAttribute (
+              'release' => new FAIreleaseAttribute(
                 _('Release'), _('FAI debian release to be installed on this computer'),
                 'FAIrelease', TRUE
               ),
-              'profil' => new SelectAttribute (
+              'profil' => new SelectAttribute(
                 _('Profil'), _('FAI profil to be applied to this computer'),
                 'FAIprofile', TRUE
               ),
@@ -99,7 +99,7 @@ class faiStartup extends simplePlugin
             '/^(?P<profil>.+) :(?P<release>.+)$/',
             '%2$s :%1$s'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Repository'), _('FAI Debian repository to be used for installation'),
             'FAIdebianMirror', TRUE
           ),
diff --git a/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc b/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
index 7f5e8a1d40..14e085cb55 100644
--- a/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
+++ b/fai/admin/systems/services/monitor/class_argonautFAIMonitor.inc
@@ -39,22 +39,22 @@ class argonautFAIMonitor extends simpleService
     'config' => [
         'name'  => _('Argonaut FAI monitor settings'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Port'), _('The port argonaut-fai-monitor should listen on. Default is 4711.'),
             'argonautFAIMonitorPort', FALSE,
             0, FALSE, 4711
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Timeout'), _('The timeout for bad clients. 0 to disable.'),
             'argonautFAIMonitorTimeout', FALSE,
             0, FALSE, 0
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('CA certificate'), _('Path to the CA certificate file on Argonaut FAI monitor server'),
             'argonautFAIMonitorCaCertPath', FALSE,
             '/etc/ssl/certs/ca.cert'
           ),
-          new TrimmedStringAttribute (
+          new TrimmedStringAttribute(
             _('Log directory'), _('Directory in which argonaut-fai-monitor will store its log'),
             'argonautFAIMonitorLogDir', TRUE,
             '/var/log/argonaut'
diff --git a/fai/config/fai/class_faiConfig.inc b/fai/config/fai/class_faiConfig.inc
index e2421e8693..41de17c1b3 100644
--- a/fai/config/fai/class_faiConfig.inc
+++ b/fai/config/fai/class_faiConfig.inc
@@ -40,7 +40,7 @@ class faiConfig extends simplePlugin
       'main' => [
         'name'  => _('FAI'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Fai base RDN'), _('Branch in which fai branches will be stored'),
             'fdFaiBaseRDN', TRUE,
             'ou=fai,ou=configs,ou=systems'
@@ -55,7 +55,7 @@ class faiConfig extends simplePlugin
       } else {
         $default = 'ou='.strtolower($rdn).'s';
       }
-      $attrs['main']['attrs'][] = new StringAttribute (
+      $attrs['main']['attrs'][] = new StringAttribute(
         sprintf(_('Fai %s RDN'), _(strtolower($rdn))),
         sprintf(_('Relative branch in which fai %s will be stored'), _(strtolower($rdn).'s')),
         'fdFai'.$rdn.'RDN', TRUE,
diff --git a/freeradius/personal/freeradius/class_freeradiusAccount.inc b/freeradius/personal/freeradius/class_freeradiusAccount.inc
index 80a959ee04..41dc75ae9b 100644
--- a/freeradius/personal/freeradius/class_freeradiusAccount.inc
+++ b/freeradius/personal/freeradius/class_freeradiusAccount.inc
@@ -80,7 +80,7 @@ class freeradiusAccount extends simplePlugin {
         'name'  => _('Groups'),
         'attrs' => [
           new SetAttribute(
-              new SelectAttribute (
+              new SelectAttribute(
               _('Groups'),
               _('FreeRadius Group'),
               'radiusGroupName',
diff --git a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
index 2e6ccbec1f..16ed5aedad 100644
--- a/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
+++ b/fusioninventory/admin/systems/fusioninventory/class_fiInventory.inc
@@ -355,7 +355,7 @@ class fiInventory extends simplePlugin
 
   function createSystem ()
   {
-    list ($type, $dn) = explode(':', $_POST['matching_template'], 2);
+    list($type, $dn) = explode(':', $_POST['matching_template'], 2);
     $infos = objects::infos($type);
 
     $values = [
diff --git a/fusioninventory/config/fusioninventory/class_fiConfig.inc b/fusioninventory/config/fusioninventory/class_fiConfig.inc
index 0c36bd16a7..2bd3af793b 100644
--- a/fusioninventory/config/fusioninventory/class_fiConfig.inc
+++ b/fusioninventory/config/fusioninventory/class_fiConfig.inc
@@ -40,12 +40,12 @@ class fiConfig extends simplePlugin
       'main' => [
         'name'  => _('FusionInventory'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Inventory RDN'), _('Branch in which inventory objects will be stored'),
             'fdInventoryRDN', TRUE,
             'ou=inventory'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Inventory matching'), _('Criteria to link an inventory result to a system'),
             'fdInventoryMatching', TRUE,
             ['mac','ip','both','either'], 'mac',
diff --git a/gpg/addons/gpg/class_pgpServerInfo.inc b/gpg/addons/gpg/class_pgpServerInfo.inc
index 1fbbcfdde0..3535661952 100644
--- a/gpg/addons/gpg/class_pgpServerInfo.inc
+++ b/gpg/addons/gpg/class_pgpServerInfo.inc
@@ -55,18 +55,18 @@ class pgpServerInfo extends simplePlugin
       'main' => [
         'name'  => _('GPG server info'),
         'attrs' => [
-          new HiddenAttribute ('cn', TRUE, 'pgpServerInfo'),
-          new StringAttribute (
+          new HiddenAttribute('cn', TRUE, 'pgpServerInfo'),
+          new StringAttribute(
             _('Software'), _('Which software this GPG key server is running'),
             'pgpSoftware', FALSE,
             'OpenLDAP 2.4.33'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('GPG version'), _('Which version of GPG this key server is running'),
             'pgpVersion', FALSE,
             'gpg (GnuPG) 1.4.13'
           ),
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Branch in which keys are stored'),
             'pgpBaseKeySpaceDN',
             [
@@ -97,7 +97,7 @@ class pgpServerInfo extends simplePlugin
     $ldap = $config->get_ldap_link();
     $ldap->cat($this->pgpBaseKeySpaceDN);
     if (!$ldap->count()) {
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->pgpBaseKeySpaceDN, "Creating branch");
+      @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->pgpBaseKeySpaceDN, "Creating branch");
       $ldap->cd($config->current['BASE']);
       $ldap->create_missing_trees($this->pgpBaseKeySpaceDN);
       if (!$ldap->success()) {
@@ -114,10 +114,10 @@ class pgpServerInfo extends simplePlugin
         $ldap->search('(objectClass=*)');
         if (!$ldap->count()) {
           /* Old branch is empty */
-          @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $dn, "Deleting old empty branch");
+          @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $dn, "Deleting old empty branch");
           $ldap->rmdir($dn);
         } else {
-          @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $dn, "Old branch is not empty");
+          @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $dn, "Old branch is not empty");
         }
       }
     }
diff --git a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
index bea94731a6..564cb94a72 100644
--- a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
+++ b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc
@@ -136,7 +136,7 @@ class PgpKeyAttribute extends GenericDialogAttribute
 
   function __construct ($label, $description, $ldapName, $required = FALSE, $defaultValue = [], $acl = '')
   {
-    parent::__construct ($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
+    parent::__construct($label, $description, $ldapName, $required, $defaultValue, 'dn', NULL, $acl);
     $this->displayed_values = [
       'pgpKeyID'          => _('Key ID'),
       'pgpUserID'         => _('User ID'),
diff --git a/ipmi/admin/systems/ipmi/class_ipmiClient.inc b/ipmi/admin/systems/ipmi/class_ipmiClient.inc
index 97f2de8b61..cbe9da35c3 100644
--- a/ipmi/admin/systems/ipmi/class_ipmiClient.inc
+++ b/ipmi/admin/systems/ipmi/class_ipmiClient.inc
@@ -44,16 +44,16 @@ class ipmiClient extends simplePlugin
       'main' => [
         'name'  => _('IPMI client settings'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('IP'), _('IP of the IPMI interface'),
             'fdIpmiIP', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('User login'), _('IPMI user login'),
             'fdIpmiLogin', TRUE,
             ''
           ),
-          new PasswordAttribute (
+          new PasswordAttribute(
             _('User password'), _('IPMI user password'),
             'fdIpmiPassword', TRUE
           ),
diff --git a/ldapmanager/addons/ldapmanager/class_csvimport.inc b/ldapmanager/addons/ldapmanager/class_csvimport.inc
index a834ccc953..d4bec6034e 100644
--- a/ldapmanager/addons/ldapmanager/class_csvimport.inc
+++ b/ldapmanager/addons/ldapmanager/class_csvimport.inc
@@ -42,29 +42,29 @@ class csvimport extends simplePlugin
       'import' => [
         'name'  => _('Import CSV'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Object type'), _('Type of objects you wish to import'),
             'type', TRUE,
             [], '', NULL,
             'import_file'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Template'), _('Select a template to apply to imported entries'),
             'template_dn', TRUE,
             [], '', NULL,
             'import_file'
           ),
-          new FileAttribute (
+          new FileAttribute(
             _('CSV file'), _('Import a CSV file into your LDAP'),
             'import_file', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Separator'), _('Character used as separator in the CSV file'),
             'separator', TRUE,
             [',', ';'], '', NULL,
             'import_file'
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             'valueSeparator', FALSE, '|'
           ),
           new SetAttribute(
@@ -75,7 +75,7 @@ class csvimport extends simplePlugin
               'import_file'
             )
           ),
-          new ButtonAttribute (
+          new ButtonAttribute(
             '', '',
             'import_submit',
             _('Import'),
@@ -87,7 +87,7 @@ class csvimport extends simplePlugin
       'fields' => [
         'name'  => _('Template filling'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Select fields associations'),
             'fields',
             [],
@@ -95,7 +95,7 @@ class csvimport extends simplePlugin
             'import_file',
             ''
           ),
-          new ButtonAttribute (
+          new ButtonAttribute(
             '', '',
             'import_submit_fields',
             _('Import'),
diff --git a/ldapmanager/addons/ldapmanager/class_ldapmanager.inc b/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
index fd1f5d86b2..3f853b74be 100644
--- a/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
+++ b/ldapmanager/addons/ldapmanager/class_ldapmanager.inc
@@ -60,15 +60,15 @@ class ldapmanager extends simplePlugin
       'export' => [
         'name'  => _('Export'),
         'attrs' => [
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('DN of a single entry to export as ldif'),
             'single_export',
             [
-              new StringAttribute (
+              new StringAttribute(
                 '', '',
                 'single_dn', FALSE
               ),
-              new ButtonAttribute (
+              new ButtonAttribute(
                 '', '',
                 'single_submit',
                 _('Export')
@@ -77,18 +77,18 @@ class ldapmanager extends simplePlugin
             '', '%s%s', '',
             _('Export single entry')
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Filter'), _('Filter to use for selecting objects to export'),
             'export_filter', FALSE,
             '(objectClass=*)',
             'complete_export'
           ),
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Download a complete snapshot of the running LDAP directory for this base as ldif'),
             'complete_export',
             [
-              new BaseSelectorOrDnAttribute ('', '', ''),
-              new ButtonAttribute (
+              new BaseSelectorOrDnAttribute('', '', ''),
+              new ButtonAttribute(
                 '', '',
                 'complete_submit',
                 _('Export')
@@ -102,20 +102,20 @@ class ldapmanager extends simplePlugin
       'import' => [
         'name'  => _('Import LDIF'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Overwrite existing entries'), _('Remove fields that are not in the LDIF from the LDAP entries if they were existing.'),
             'overwrite', FALSE,
             FALSE, 'import'
           ),
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Import an LDIF file into your LDAP. Remember that FusionDirectory will not check your LDIFs for FusionDirectory conformance.'),
             'import',
             [
-              new FileTextAreaAttribute (
+              new FileTextAreaAttribute(
                 '', '',
                 'import_ldif_file', FALSE
               ),
-              new ButtonAttribute (
+              new ButtonAttribute(
                 '', '',
                 'import_ldif_submit',
                 _('Import')
diff --git a/mail/admin/groups/mail/class_mailGroup.inc b/mail/admin/groups/mail/class_mailGroup.inc
index 329532fd07..9c63e58689 100644
--- a/mail/admin/groups/mail/class_mailGroup.inc
+++ b/mail/admin/groups/mail/class_mailGroup.inc
@@ -59,26 +59,26 @@ class mailGroup extends simplePlugin
       'main' => [
         'name'  => _('Information'),
         'attrs' => [
-          new MailAttribute (
+          new MailAttribute(
             _('Primary address'), _('The primary mail address'),
             'mail', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Server'), _('Email server'),
             'gosaMailServer', TRUE,
             ['']
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Alternative addresses'), _('Alternative mail addresses for the group'),
               'gosaMailAlternateAddress'
             )
           ),
-          new GroupMailsAttribute (
+          new GroupMailsAttribute(
             _('Forward messages to non group members'), _('Forward messages to non group members'),
             'gosaMailForwardingAddress'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Only allowed to receive local mail'), _('Whether this group mail is only allowed to receive messages from local senders'),
             'fdGroupMailLocalOnly', FALSE,
             FALSE
diff --git a/mail/config/mail/class_mailPluginConfig.inc b/mail/config/mail/class_mailPluginConfig.inc
index c4fe9eb800..6b2e94309b 100644
--- a/mail/config/mail/class_mailPluginConfig.inc
+++ b/mail/config/mail/class_mailPluginConfig.inc
@@ -40,46 +40,46 @@ class mailPluginConfig extends simplePlugin
       'mail' => [
         'name'  => _('Mail settings'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Account identification attribute'),
             _('Which attribute will be used to create accounts.'),
             'fdMailAttribute', TRUE,
             ['mail', 'uid']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('User account template'),
             _('Override the user account creation syntax. Default is %PREFIX%%UATTRIB%.'),
             'fdMailUserCreation'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Group account template'),
             _('Override the group account creation syntax. Default is %PREFIX%%UATTRIB%.'),
             'fdMailFolderCreation'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Use cyrus UNIX style'),
             _('Determines if "foo/bar" or "foo.bar" should be uses as namespaces in IMAP.'),
             'fdCyrusUseSlashes'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Delete mailbox on account deletion'),
             _('Determines if the mailbox should be removed from your IMAP server after the account is deleted in LDAP.'),
             'fdCyrusDeleteMailbox'
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Cyrus autocreate folders'),
               _('List of personal IMAP folders that should be created along initial account creation.'),
               'fdCyrusAutocreateFolders'
             )
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('IMAP timeout'),
             _('Sets the connection timeout for imap actions.'),
             'fdImapTimeout', FALSE,
             0, FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Shared prefix'),
             _('Prefix to add for mail shared folders.'),
             'fdMailSharedPrefix'
diff --git a/mail/personal/mail/class_mailAccount.inc b/mail/personal/mail/class_mailAccount.inc
index 6f8ac1ad6f..3c64bfd75a 100644
--- a/mail/personal/mail/class_mailAccount.inc
+++ b/mail/personal/mail/class_mailAccount.inc
@@ -95,16 +95,16 @@ class mailAccount extends simplePlugin
       'main' => [
         'name'  => _('Mail account'),
         'attrs' => [
-          new MailAttribute (
+          new MailAttribute(
             _('Primary address'), _('Primary mail address'),
             'mail', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Server'), _('Specify the mail server where the user will be hosted on'),
             'gosaMailServer', FALSE,
             []
           ),
-          new MailQuotaAttribute (
+          new MailQuotaAttribute(
             _('Quota size'), _('Define quota size in MiB'),
             'gosaMailQuota', FALSE,
             0, FALSE
@@ -114,13 +114,13 @@ class mailAccount extends simplePlugin
       'other_addresses' => [
         'name'  => _('Other addresses and redirections'),
         'attrs' => [
-          new SetAttribute (
-            new MailAttribute (
+          new SetAttribute(
+            new MailAttribute(
               _('Alternative addresses'), _('List of alternative mail addresses'),
               'gosaMailAlternateAddress'
             )
           ),
-          new MailsAttribute (
+          new MailsAttribute(
             _('Forward messages to'), _('Addresses to which messages should be forwarded'),
             'gosaMailForwardingAddress'
           )
@@ -129,23 +129,23 @@ class mailAccount extends simplePlugin
       'options1' => [
         'name' => _('Vacation message'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Activate vacation message'),
             _('Select to automatically response with the vacation message defined below'),
             'flag_vacation', FALSE, FALSE, '',
             'V', ''
           ),
-          new DateAttribute (
+          new DateAttribute(
             _('from'), 'Starting date for vacation message',
             'gosaVacationStart', FALSE,
             'U'
           ),
-          new DateAttribute (
+          new DateAttribute(
             _('till'), 'Ending date for vacation message',
             'gosaVacationStop', FALSE,
             'U'
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Vacation message'), 'The message you wish be sent during your absence',
             'gosaVacationMessage'
           ),
@@ -154,18 +154,18 @@ class mailAccount extends simplePlugin
       'advanced' => [
          'name' => _('Advanced mail options'),
          'attrs' => [
-          new FlagsAttribute ('gosaMailDeliveryMode', [
+          new FlagsAttribute('gosaMailDeliveryMode', [
             'flag_ownmailbox',
             'flag_vacation',
             'flag_localonly'
           ]),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('User is only allowed to send and receive local mails'),
             _('Select if user can only send and receive inside his own domain'),
             'flag_localonly', FALSE, FALSE, '',
             'L', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('No delivery to own mailbox'),
             _('Select if you want to forward mails without getting own copies of them'),
             'flag_ownmailbox', FALSE, FALSE, '',
@@ -314,7 +314,7 @@ class mailAccount extends simplePlugin
     if ($this->mailMethod->vacationRangeEnabled()) {
       $this->attributesAccess['gosaVacationStop']->setDisabled(FALSE);
       $this->attributesAccess['gosaVacationStart']->setDisabled(FALSE);
-      $this->attributesAccess['flag_vacation']->setManagedAttributes (
+      $this->attributesAccess['flag_vacation']->setManagedAttributes(
          [
           'erase' => [
             FALSE => [
@@ -330,7 +330,7 @@ class mailAccount extends simplePlugin
       $this->attributesAccess['gosaVacationStop']->setDisabled(TRUE);
       $this->attributesAccess['gosaVacationStop']->setVisible(FALSE);
       $this->attributesAccess['gosaVacationStop']->setValue('');
-      $this->attributesAccess['flag_vacation']->setManagedAttributes (
+      $this->attributesAccess['flag_vacation']->setManagedAttributes(
          [
           'erase' => [
             FALSE => [
@@ -387,7 +387,7 @@ class mailAccount extends simplePlugin
           /* Do not write sieve settings if this account is new and
              doesn't seem to exist. */
           if (!$this->initially_was_account && !$this->mailMethod->account_exists()) {
-            @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+            @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
                 'Skipping sieve settings, the account doesn’t seem to be created already.', '');
           } else {
             if (!$this->mailMethod->saveSieveSettings()) {
@@ -396,7 +396,7 @@ class mailAccount extends simplePlugin
           }
         } else {
           if ($this->sieve_management) {
-            @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+            @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
                 'User uses an own sieve script, skipping sieve update.', '');
             $this->sieve_management->save();
           }
diff --git a/mail/personal/mail/class_sieve.inc b/mail/personal/mail/class_sieve.inc
index 2eb01ec7bf..1064f2ec39 100644
--- a/mail/personal/mail/class_sieve.inc
+++ b/mail/personal/mail/class_sieve.inc
@@ -12,15 +12,15 @@
 // TODO before next release:  remove ::status() and dependencies
 
 
-define ("F_NO", 0);
-define ("F_OK", 1);
-define ("F_DATA", 2);
-define ("F_HEAD", 3);
-
-define ("EC_NOT_LOGGED_IN", 0);
-define ("EC_QUOTA", 10);
-define ("EC_NOSCRIPTS", 20);
-define ("EC_UNKNOWN", 255);
+define("F_NO", 0);
+define("F_OK", 1);
+define("F_DATA", 2);
+define("F_HEAD", 3);
+
+define("EC_NOT_LOGGED_IN", 0);
+define("EC_QUOTA", 10);
+define("EC_NOSCRIPTS", 20);
+define("EC_UNKNOWN", 255);
 /*
 
    SIEVE-PHP.LIB VERSION 0.0.8
@@ -223,7 +223,7 @@ class sieve
     $this->error_raw="";
     $this->options = $options;
 
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->error_raw,
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->error_raw,
         "<b>SIEVE: Host: $host:$port. Options: $options - Auth Types: $auth_types </b>");
   }
 
@@ -288,7 +288,7 @@ class sieve
     $this->fp=@fsockopen($this->host,$this->port,$err_id,$err_str);
     if($this->fp == false){
 
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
           "<b>SIEVE: Socket connection failed. (".$this->host.":".$this->port.")</b>");
 
       $this->error_raw = $err_str;
@@ -366,7 +366,7 @@ class sieve
     if(sieve::status($this->line) == F_NO){   //here we should do some returning of error codes?
       $this->error=EC_UNKNOWN;
 
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
           "<b>SIEVE: Unknown sieve response, giving up.</b>");
 
       $this->error_raw = "Server not allowing connections.";
@@ -388,7 +388,7 @@ class sieve
      * #TODO Maybe there is a better solution for this?
      */
     if($this->auth_in_use == ""){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$this->error_raw,
           "<b>SIEVE: No authentification mechanisms received, try using PLAIN!.</b>");
         $this->auth_in_use  = "PLAIN";
     }
@@ -405,7 +405,7 @@ class sieve
     if(isset($this->capabilities['implementation'])){
       $imp = $this->capabilities['implementation'];
     }
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$imp,
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,$imp,
         "<b>SIEVE: Socket connection established. </b>");
 
     /* call our authentication program */
@@ -421,7 +421,7 @@ class sieve
     fputs($this->fp,"LOGOUT\r\n");
     fclose($this->fp);
 
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
         "<b>SIEVE: Logout!</b>");
 
     $this->loggedin=false;
@@ -438,11 +438,11 @@ class sieve
     fputs($this->fp, "$this->script\r\n");
 
     if(sieve::get_response()){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
           "<b>SIEVE: Script '".$scriptname."' successfully send!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Script couldn't be send!</b>");
       return(FALSE);
     }
@@ -467,11 +467,11 @@ class sieve
     fputs($this->fp, "SETACTIVE \"$scriptname\"\r\n");
 
     if(sieve::get_response()){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
           "<b>SIEVE: Set active script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Set active script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -486,11 +486,11 @@ class sieve
     fputs($this->fp, "GETSCRIPT \"$scriptname\"\r\n");
 
     if(sieve::get_response()){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
           "<b>SIEVE: Get script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Get script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -505,11 +505,11 @@ class sieve
     fputs($this->fp, "DELETESCRIPT \"$scriptname\"\r\n");
 
     if(sieve::get_response()){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
           "<b>SIEVE: Delete script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Delete  script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -521,13 +521,13 @@ class sieve
     fputs($this->fp, "LISTSCRIPTS\r\n");
     sieve::get_response();    //should always return true, even if there are no scripts...
     if(isset($this->found_script) and $this->found_script){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode ($this->response,", "),
+      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode($this->response,", "),
           "<b>SIEVE: List scripts was successful!</b>");
       return true;
     }else{
       $this->error=EC_NOSCRIPTS;  //sieve::getresponse has no way of telling wether a script was found...
       $this->error_raw="No scripts found for this account.";
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->error_raw,
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->error_raw,
           "<b>SIEVE: List scripts returned no scripts</b>");
       return false;
     }
@@ -562,31 +562,31 @@ class sieve
         /* Initiate TLS and get response
          */
         if (@ fputs ($this->fp, "STARTTLS\r\n") === false) {
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"couldn't send data to socket.",
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"couldn't send data to socket.",
               "<b>SIEVE: TLS couldn't be initiated. </b>");
           $this->error_raw = "fputs() returned 'false'"; return (false);
         }
-        @ $linha = fgets ($this->fp, 1024);
+        @ $linha = fgets($this->fp, 1024);
         if ($linha === false) {
           $this->error_raw = "fgets() returned 'false'";
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"couldn't read data from socket.",
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"couldn't read data from socket.",
               "<b>SIEVE: TLS couldn't be initiated. </b>");
           return (false);
         }
         if (! preg_match ("/\\s*OK\\s/i", $linha)) {
           @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"server returned '".trim ($linha)."' instead of 'OK'",
               "<b>SIEVE: TLS couldn't be initiated. </b>");
-          $this->error_raw = "expected an 'OK', but server replied: '" . trim ($linha) . "'";
+          $this->error_raw = "expected an 'OK', but server replied: '" . trim($linha) . "'";
           return (false);
         }
         if (! @ stream_socket_enable_crypto ($this->fp, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,
               "The socket doesn't seem to support STREAM_CRYPTO_METHOD_TLS_CLIENT",
               "<b>SIEVE: TLS couldn't be initiated. </b>");
           $this->error_raw = "stream_socket_enable_crypto() returned 'false'";
           return (false);
         }
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
             "<b>SIEVE: TLS successfully initiated. </b>");
       }
     }
@@ -607,13 +607,13 @@ class sieve
 
         if(sieve::status($this->line) == F_NO){
           $this->error_raw = $this->line;
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim ($this->error_raw),
+          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
               "<b>SIEVE: Authentication for '".$this->user."-".$this->auth_in_use."' failed.</b>");
 
           return false;
         }
 
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"",
             "<b>SIEVE: Authentication for '".$this->user."-".$this->auth_in_use."' was successful.</b>");
         $this->loggedin=true;
         return true;
@@ -621,7 +621,7 @@ class sieve
 
       default:
       {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"Unsupported authentication method '".$this->auth_in_use."'!",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"Unsupported authentication method '".$this->auth_in_use."'!",
             "<b>SIEVE: Authentication for '".$this->user."' with type '".$this->auth_in_use."' failed.</b>");
 
         $this->error_raw = "Unsupported authentication method '".$this->auth_in_use."'!";
diff --git a/nagios/config/nagios/class_nagiosConfig.inc b/nagios/config/nagios/class_nagiosConfig.inc
index 1667db3b16..9de25848fd 100644
--- a/nagios/config/nagios/class_nagiosConfig.inc
+++ b/nagios/config/nagios/class_nagiosConfig.inc
@@ -41,7 +41,7 @@ class nagiosConfig extends simplePlugin
       'main' => [
         'name'  => _('Nagios'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Lconf prefix'), _('Prefix used for lconf LDAP fields'),
             'fdLconfPrefix', TRUE,
             'lconf'
diff --git a/nagios/personal/nagios/class_nagiosAccount.inc b/nagios/personal/nagios/class_nagiosAccount.inc
index bd9ff3a2d4..5c032f75c4 100644
--- a/nagios/personal/nagios/class_nagiosAccount.inc
+++ b/nagios/personal/nagios/class_nagiosAccount.inc
@@ -67,22 +67,22 @@ class nagiosAccount extends simplePlugin
             _('Mail address'), _('Email of the nagios alias'),
             $prefix.'Email', TRUE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Host notification period'), _('Host notification period'),
             $prefix.'ContactHostNotificationPeriod', FALSE,
             ['24x7','24x5','8x5']
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Service notification period'), _('Service notification period'),
             $prefix.'ContactServiceNotificationPeriod', FALSE,
             ['24x7','24x5','8x5']
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Service notification options'), _('Service notification options'),
             $prefix.'ContactServiceNotificationOptions', FALSE,
             ['w,u,c,r,f','w,u,c,r','w,u,c','c,w','n']
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Host notification options'), _('Host notification options'),
             $prefix.'ContactHostNotificationOptions', FALSE,
             ['d,u,r,f','d,u,r','d,u','n']
diff --git a/netgroups/config/netgroups/class_netgroupConfig.inc b/netgroups/config/netgroups/class_netgroupConfig.inc
index f2af01e2af..142358cb12 100644
--- a/netgroups/config/netgroups/class_netgroupConfig.inc
+++ b/netgroups/config/netgroups/class_netgroupConfig.inc
@@ -41,7 +41,7 @@ class netgroupConfig extends simplePlugin
       'main' => [
         'name'  => _('Netgroup'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Netgroup RDN'), _('Branch in which netgroups will be stored'),
             'fdNetgroupRDN', TRUE,
             'ou=netgroups'
diff --git a/newsletter/config/newsletter/class_newsletterConfig.inc b/newsletter/config/newsletter/class_newsletterConfig.inc
index 131618cc66..c051046c68 100644
--- a/newsletter/config/newsletter/class_newsletterConfig.inc
+++ b/newsletter/config/newsletter/class_newsletterConfig.inc
@@ -41,7 +41,7 @@ class newsletterConfig extends simplePlugin
         'name'  => _('Newsletter'),
         'attrs' => [
           new SetAttribute(
-            new StringAttribute (
+            new StringAttribute(
               _('Newsletter choices'), _('Newsletters the user can choose from'),
               'fdNewsletterChoices', FALSE
             ),
diff --git a/newsletter/personal/newsletter/class_newsletterSubscriptions.inc b/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
index 8598db2e9d..73cfab7bb0 100644
--- a/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
+++ b/newsletter/personal/newsletter/class_newsletterSubscriptions.inc
@@ -46,7 +46,7 @@ class newsletterSubscriptions extends simplePlugin
         'name'  => _('Personal info'),
         'attrs' => [
           new SetAttribute(
-            new SelectAttribute (
+            new SelectAttribute(
               _('Subscriptions'), _('Newsletter you are subscribed to'),
               'fdNewsletterSubscriptions', FALSE,
               $config->get_cfg_value('newsletterChoices', [])
diff --git a/opsi/admin/opsi/class_opsiProductProperties.inc b/opsi/admin/opsi/class_opsiProductProperties.inc
index c3c96f40d2..941e35e855 100644
--- a/opsi/admin/opsi/class_opsiProductProperties.inc
+++ b/opsi/admin/opsi/class_opsiProductProperties.inc
@@ -40,7 +40,7 @@ class ProductPropertyAttribute extends CompositeAttribute
 {
   function __construct ($label, $description, $ldapName, $acl = "")
   {
-    parent::__construct ($description, $ldapName, [new StringAttribute('', '', 'fake')], '', '', $acl, $label);
+    parent::__construct($description, $ldapName, [new StringAttribute('', '', 'fake')], '', '', $acl, $label);
   }
 
   function check ()
diff --git a/opsi/config/opsi/class_opsiConfig.inc b/opsi/config/opsi/class_opsiConfig.inc
index 44f3b045ad..f1d667c80f 100644
--- a/opsi/config/opsi/class_opsiConfig.inc
+++ b/opsi/config/opsi/class_opsiConfig.inc
@@ -41,7 +41,7 @@ class opsiConfig extends simplePlugin
       'main' => [
         'name'  => _('OPSI'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('OPSI RDN'), _('Branch in which OPSI profiles will be stored'),
             'fdOpsiRDN', TRUE,
             'ou=opsi'
diff --git a/personal/config/personal/class_personalConfig.inc b/personal/config/personal/class_personalConfig.inc
index 64dee472a2..163e50edb9 100644
--- a/personal/config/personal/class_personalConfig.inc
+++ b/personal/config/personal/class_personalConfig.inc
@@ -41,7 +41,7 @@ class personalConfig extends simplePlugin
       'main' => [
         'name'  => _('Personal'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Allow use of private email for password recovery'), _('Allow users to use their private email address for password recovery'),
             'fdPrivateEmailPasswordRecovery', FALSE
           ),
diff --git a/personal/personal/personal/class_personalInfo.inc b/personal/personal/personal/class_personalInfo.inc
index 37ad0a1760..a5ee058793 100644
--- a/personal/personal/personal/class_personalInfo.inc
+++ b/personal/personal/personal/class_personalInfo.inc
@@ -23,7 +23,7 @@ class SocialAccountAttribute extends CompositeAttribute
   function __construct ($label, $description, $ldapName, $acl = "")
   {
     $handlers = socialHandler::listHandlers();
-    parent::__construct (
+    parent::__construct(
       $description, $ldapName,
       [
         new SelectAttribute(
@@ -100,7 +100,7 @@ class personalInfo extends simplePlugin
       'main' => [
         'name'  => _('Personal info'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Personal title'), _('Personal title - Examples of personal titles are "Ms", "Dr", "Prof" and "Rev"'),
             'personalTitle', FALSE
           ),
@@ -110,35 +110,35 @@ class personalInfo extends simplePlugin
               'fdNickName'
             )
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Badge Number'), _('Company badge number'),
             'fdBadge', FALSE
           ),
-          new DateAttribute (
+          new DateAttribute(
             _('Date of birth'), _('Date of birth'),
             'dateOfBirth', FALSE,
             'Y-m-d', ''
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Sex'), _('Gender'),
             'gender', FALSE,
             ['', 'M', 'F'], '', ['', 'male', 'female']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Country'), _('Country'),
             'co', FALSE
           ),
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('Start date'), _('Date this user joined the company'),
             'fdContractStartDate', FALSE,
             ''
           ),
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('End date'), _('Date this user is supposed to leave the company'),
             'fdContractEndDate', FALSE,
             ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Photo Visible'), _('Should the photo of the user be visible on external tools'),
             'fdPhotoVisible', FALSE, TRUE
           ),
diff --git a/posix/config/posix/class_posixConfig.inc b/posix/config/posix/class_posixConfig.inc
index 9fb4b0864a..28d2da4320 100644
--- a/posix/config/posix/class_posixConfig.inc
+++ b/posix/config/posix/class_posixConfig.inc
@@ -42,55 +42,55 @@ class posixConfig extends simplePlugin
         'name'  => _('Posix'),
         'class' => ['critical'],
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('POSIX groups RDN'), _('The branch where POSIX groups are stored.'),
             'fdGroupRDN', TRUE,
             'ou=groups'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Group/user min id'),
             _('The minimum assignable user or group id to avoid security leaks with id 0 accounts.'),
             'fdMinId', FALSE,
             0, FALSE, 100
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Next id hook'), _('A script to be called for finding the next free id number for users or groups.'),
             'fdNextIdHook', FALSE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Base number for user id'),
             _('Where to start looking for a new free user id.'),
             'fdUidNumberBase', FALSE,
             0, FALSE, 1100
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Base number for group id'),
             _('Where to start looking for a new free group id.'),
             'fdGidNumberBase', FALSE,
             0, FALSE, 1100
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Id allocation method'), _('Method to allocate user/group ids'),
             'fdIdAllocationMethod', TRUE,
             ['traditional', 'pool'], 'traditional',
             [_('Traditional'), _('Samba unix id pool')]
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Pool user id min'), _('Minimum value for user id when using pool method'),
             'fdUidNumberPoolMin', FALSE,
             0, FALSE, 10000
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Pool user id max'), _('Maximum value for user id when using pool method'),
             'fdUidNumberPoolMax', FALSE,
             0, FALSE, 40000
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Pool group id min'), _('Minimum value for group id when using pool method'),
             'fdGidNumberPoolMin', FALSE,
             0, FALSE, 10000
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Pool group id max'), _('Maximum value for group id when using pool method'),
             'fdGidNumberPoolMax', FALSE,
             0, FALSE, 40000
@@ -101,14 +101,14 @@ class posixConfig extends simplePlugin
         'name'  => _('Shells'),
         'attrs' => [
           new SetAttribute(
-            new StringAttribute (
+            new StringAttribute(
               _('Available shells'), _('Available POSIX shells for FD users.'),
               'fdShells', FALSE
             ),
             ['/bin/ash','/bin/bash','/bin/csh','/bin/sh','/bin/ksh',
                   '/bin/tcsh','/bin/dash','/bin/zsh','/sbin/nologin', '/bin/false', '/usr/bin/git-shell']
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Default shell'), _('Shell used by default when activating Unix tab.'),
             'fdDefaultShell', TRUE
           ),
diff --git a/posix/personal/posix/class_posixAccount.inc b/posix/personal/posix/class_posixAccount.inc
index 29c2bcb83c..03aa7b3fa4 100644
--- a/posix/personal/posix/class_posixAccount.inc
+++ b/posix/personal/posix/class_posixAccount.inc
@@ -792,7 +792,7 @@ class posixAccount extends simplePlugin
      */
     $wait = 10;
     while ($user = get_lock($attrib)) {
-      sleep (1);
+      sleep(1);
 
       /* Oups - timed out */
       if ($wait-- == 0) {
@@ -838,7 +838,7 @@ class posixAccount extends simplePlugin
     while ($tries--) {
 
       /* Look for ID map entry */
-      $ldap->cd ($config->current['BASE']);
+      $ldap->cd($config->current['BASE']);
       $ldap->search ("(&(objectClass=sambaUnixIdPool)($attrib=*))", ["$attrib"]);
 
       /* If it does not exist, create one with these defaults */
@@ -919,7 +919,7 @@ class posixAccount extends simplePlugin
     $ids = [];
     $ldap = $config->get_ldap_link();
 
-    $ldap->cd ($config->current['BASE']);
+    $ldap->cd($config->current['BASE']);
     if (preg_match('/gidNumber/i', $attrib)) {
       $oc = 'posixGroup';
     } else {
@@ -980,7 +980,7 @@ class posixAccount extends simplePlugin
       $command = $config->get_cfg_value('nextIdHook');
 
       $command .= ' '.escapeshellarg($dn).' '.escapeshellarg($attrib);
-      @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, 'Execute');
+      @DEBUG(DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, 'Execute');
       exec($command, $output, $returnCode);
 
       $str = implode("\n", $output);
diff --git a/postfix/admin/systems/services/postfix/class_servicePostfix.inc b/postfix/admin/systems/services/postfix/class_servicePostfix.inc
index ecdb0900de..01ab1b8e3b 100644
--- a/postfix/admin/systems/services/postfix/class_servicePostfix.inc
+++ b/postfix/admin/systems/services/postfix/class_servicePostfix.inc
@@ -70,27 +70,27 @@ class servicePostfix extends simpleService
       'section1' => [
         'name'  => _('Information'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Hostname'), _('The host name.'),
             'postfixMyHostname', TRUE,
             '', '', '/^([^\.]+\.)*[^\.]+$/', 'smtp'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Domain'), _('The domain.'),
             'postfixMyDomain', TRUE,
             '', '', '/^([^\.]+\.)*[^\.]+$/', 'example.org'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Max mail header size (KB)'), _('This value specifies the maximal header size.'),
             'postfixHeaderSizeLimit', FALSE,
             FALSE, FALSE, 0
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Max mailbox size (KB)'), _('Defines the maximal size of mail box.'),
             'postfixMailboxSizeLimit', FALSE,
             FALSE, FALSE, 0
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Max message size (KB)'), _('Specify the maximal size of a message.'),
             'postfixMessageSizeLimit', FALSE,
             FALSE, FALSE, 0
@@ -100,52 +100,52 @@ class servicePostfix extends simpleService
       'routing' => [
         'name' => _('Domains and routing'),
         'attrs' => [
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Domains to accept mail for'), _('Postfix networks'),
               'postfixMyDestinations'
             )
           ),
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             _('Transport table'), _('Transport table'),
             'fdPostfixTransportTable', 'fdPostfixTransportTable',
             [
-              new StringAttribute ('', '', 'fdTransportTableMatch'),
-              new CompositeAttribute (
+              new StringAttribute('', '', 'fdTransportTableMatch'),
+              new CompositeAttribute(
                 _('Transport rule'),
                 'fdTransportTableRule',
                 [
-                  new StringAttribute ('', '', 'transport', TRUE, 'smtp'),
-                  new StringAttribute ('', '', 'nexthop', FALSE),
+                  new StringAttribute('', '', 'transport', TRUE, 'smtp'),
+                  new StringAttribute('', '', 'nexthop', FALSE),
                 ],
                 '/^([^:]+):(.*)$/',
                 '%s:%s', '', ''
               )
             ]
           ),
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             _('Catchall table'), _('Catchall table'),
             'fdPostfixCatchallTable', 'fdPostfixCatchallTable',
             [
-              new MailDomainAttribute (
+              new MailDomainAttribute(
                 _('Domain'), _('Domain concerned by this catchall rule'),
                 'fdCatchallTableDomain', TRUE
               ),
-              new MailAttribute (
+              new MailAttribute(
                 _('Recipient'), _('Recipient mail address for this catchall rule'),
                 'fdCatchallTableRecipient', TRUE
               )
             ]
           ),
-          new SubNodesAttribute (
+          new SubNodesAttribute(
             _('Domain alias table'), _('Domain alias table'),
             'fdPostfixDomainAliasTable', 'fdPostfixDomainAliasTable',
             [
-              new MailDomainAttribute (
+              new MailDomainAttribute(
                 _('From'), _('Domain concerned by this alias rule'),
                 'fdDomainAliasTableFrom', TRUE
               ),
-              new MailDomainAttribute (
+              new MailDomainAttribute(
                 _('To'), _('Recipient domain for this alias rule'),
                 'fdDomainAliasTableTo', TRUE
               )
@@ -156,28 +156,28 @@ class servicePostfix extends simpleService
       'section3' => [
         'name' => _('Restrictions'),
         'attrs' => [
-          new OrderedArrayAttribute (
-            new CompositeAttribute (
+          new OrderedArrayAttribute(
+            new CompositeAttribute(
              _('Restrictions for sender'),
             'postfixSenderRestrictions',
               [
-                new StringAttribute ('', '', 'first2'),
-                new SelectAttribute ('', '', 'filter2', TRUE, ['FILTER'], 'FILTER'),
-                new StringAttribute ('', '', 'second2'),
+                new StringAttribute('', '', 'first2'),
+                new SelectAttribute('', '', 'filter2', TRUE, ['FILTER'], 'FILTER'),
+                new StringAttribute('', '', 'second2'),
               ],
               '/^(.*) ([^:]+) (.*)$/',
               '%s %s %s',
               '', _('For sender')
             )
           ),
-          new OrderedArrayAttribute (
-            new CompositeAttribute (
+          new OrderedArrayAttribute(
+            new CompositeAttribute(
              _('Restrictions for recipient'),
             'postfixRecipientRestrictions',
               [
-                new StringAttribute ('', '', 'first3'),
-                new SelectAttribute ('', '', 'filter3', TRUE, ['FILTER'], 'FILTER'),
-                new StringAttribute ('', '', 'second3'),
+                new StringAttribute('', '', 'first3'),
+                new SelectAttribute('', '', 'filter3', TRUE, ['FILTER'], 'FILTER'),
+                new StringAttribute('', '', 'second3'),
               ],
               '/^(.*) ([^:]+) (.*)$/',
               '%s %s %s',
diff --git a/ppolicy/admin/ppolicy/class_ppolicy.inc b/ppolicy/admin/ppolicy/class_ppolicy.inc
index cbba53f4c6..a9e368ca53 100644
--- a/ppolicy/admin/ppolicy/class_ppolicy.inc
+++ b/ppolicy/admin/ppolicy/class_ppolicy.inc
@@ -50,9 +50,9 @@ class ppolicy extends simplePlugin
       'main' => [
         'name'  => _('Policy'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('ppolicyRDN')),
+          new BaseSelectorAttribute(get_ou('ppolicyRDN')),
           new HiddenAttribute('pwdAttribute', TRUE, 'userPassword'),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Policy name'), _('Policy name'),
             'cn', TRUE
           ),
@@ -106,7 +106,7 @@ class ppolicy extends simplePlugin
             [0, 1, 2], 0,
             [_('Disabled'), _('Ignore errors'), _('Reject on errors')]
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Check module'), _('Name of a user supplied password quality check module that will be called to perform password quality checks and is only relevant if pwdCheckQuality is either 1 or 2'),
             'pwdCheckModule', FALSE
           ),
diff --git a/ppolicy/config/ppolicy/class_ppolicyConfig.inc b/ppolicy/config/ppolicy/class_ppolicyConfig.inc
index d21e0bd0cd..8dbfd8d35d 100644
--- a/ppolicy/config/ppolicy/class_ppolicyConfig.inc
+++ b/ppolicy/config/ppolicy/class_ppolicyConfig.inc
@@ -42,12 +42,12 @@ class ppolicyConfig extends simplePlugin
       'main' => [
         'name'  => _('Ppolicy plugin'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Ppolicy RDN'), _('Branch in which ppolicies will be stored'),
             'fdPpolicyRDN', TRUE,
             'ou=ppolicies'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Default ppolicy cn'), _('What you put as default ppolicy in the overlay config'),
             'fdPpolicyDefaultCn', FALSE,
             'default'
diff --git a/puppet/admin/systems/puppet/class_puppetNode.inc b/puppet/admin/systems/puppet/class_puppetNode.inc
index 7884ed29f5..16d501ebb3 100644
--- a/puppet/admin/systems/puppet/class_puppetNode.inc
+++ b/puppet/admin/systems/puppet/class_puppetNode.inc
@@ -31,18 +31,18 @@ class puppetNode extends simplePlugin
       'section1' => [
         'name'  => _("Puppet node settings"),
         'attrs' => [
-          new SetAttribute (
-            new StringAttribute (_("Puppet class"), _("Puppet Node Class"), "puppetClass")
+          new SetAttribute(
+            new StringAttribute(_("Puppet class"), _("Puppet Node Class"), "puppetClass")
           ),
-          new SelectAttribute (_("Parent node"), _("Puppet Parent Node"),       "parentNode", FALSE),
-          new SelectAttribute (_("Environment"), _("Puppet Node Environment"),  "environment", TRUE),
-          new SetAttribute (
-            new CompositeAttribute (
+          new SelectAttribute(_("Parent node"), _("Puppet Parent Node"),       "parentNode", FALSE),
+          new SelectAttribute(_("Environment"), _("Puppet Node Environment"),  "environment", TRUE),
+          new SetAttribute(
+            new CompositeAttribute(
               _("A variable setting for puppet"),
               'puppetVar',
               [
-                new StringAttribute ('',   _('Name of the variable'),   'puppetVar'),
-                new StringAttribute ('=',  _('Value of the variable'),  'puppetVarValue'),
+                new StringAttribute('',   _('Name of the variable'),   'puppetVar'),
+                new StringAttribute('=',  _('Value of the variable'),  'puppetVarValue'),
               ],
                // sscanf format
               '%[^ =]=%[^ ]',
diff --git a/puppet/admin/systems/services/puppet/class_servicePuppet.inc b/puppet/admin/systems/services/puppet/class_servicePuppet.inc
index 10569a3225..ffac99f072 100644
--- a/puppet/admin/systems/services/puppet/class_servicePuppet.inc
+++ b/puppet/admin/systems/services/puppet/class_servicePuppet.inc
@@ -41,8 +41,8 @@ class servicePuppet extends simpleService {
       'main' => [
         'name'  => _('Puppet server'),
         'attrs' => [
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Environments'),
               _('Available environments for puppet nodes'),
               'puppetAvailableEnvironment',
diff --git a/pureftpd/personal/pureftpd/class_pureftpdAccount.inc b/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
index 68d3ddfb00..fb87bc97d2 100644
--- a/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
+++ b/pureftpd/personal/pureftpd/class_pureftpdAccount.inc
@@ -48,7 +48,7 @@ class pureftpdAccount extends simplePlugin
       'section1' => [
         'name'  => _('Bandwidth'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Upload bandwidth')._(' (kb/sec)'),
             _('Upload bandwidth'),
             'FTPUploadBandwidth',
@@ -57,7 +57,7 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Download bandwidth')._(' (kb/sec)'),
             _('Download bandwidth in kb/sec'),
             'FTPDownloadBandwidth',
@@ -71,7 +71,7 @@ class pureftpdAccount extends simplePlugin
       'section2' => [
         'name'  => _('Ratio'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Uploaded files'),
             _('Uploaded files'),
             'FTPUploadRatio',
@@ -80,7 +80,7 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Downloaded files'),
             _('Downloaded files'),
             'FTPDownloadRatio',
@@ -94,7 +94,7 @@ class pureftpdAccount extends simplePlugin
       'section3' => [
         'name' => ('Quota'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Files'),
             _('Quota files'),
             'FTPQuotaFiles',
@@ -103,7 +103,7 @@ class pureftpdAccount extends simplePlugin
             FALSE,
             ''
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Size')._(' (MB)'),
             _('Files size'),
             'FTPQuotaMBytes',
@@ -117,7 +117,7 @@ class pureftpdAccount extends simplePlugin
       'section4' => [
         'name' => _('Miscellaneous'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable FTP access'), _('Enable or disable FTP access'),
             'FTPStatus', FALSE,
             TRUE
diff --git a/renater-partage/admin/groups/renater-partage/class_partageGroup.inc b/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
index 60c149a64b..00fc2f6d35 100644
--- a/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
+++ b/renater-partage/admin/groups/renater-partage/class_partageGroup.inc
@@ -41,27 +41,27 @@ class partageGroup extends simplePlugin
       'main' => [
         'name'  => _('Information'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Display name'), _('Name to display for this group'),
             'displayName'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Hide from global catalog'), _('Whether this group should be hidden from the global catalog'),
             'fdRenaterPartageGroupHideInGal', FALSE,
             FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Type'), _('Type of PARTAGE group'),
             'fdRenaterPartageGroupMailStatus', TRUE,
             ['enabled','disabled'], 'enabled',
             [_('Distribution list'), _('Group')]
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Alert new members'), _('Send a message to alert new members, they have joined this group'),
             'fdRenaterPartageGroupSendShareMessageToNewMembers', FALSE,
             TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Notes'), _('Notes about this group'),
             'fdRenaterPartageGroupNotes', FALSE
           ),
diff --git a/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc b/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
index ada9105f17..6c4bb85564 100644
--- a/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
+++ b/renater-partage/admin/sympa/renater-partage/class_sympaAliasPartage.inc
@@ -44,29 +44,29 @@ class sympaAliasPartage extends simplePlugin
             'gosaMailServer', TRUE,
             ['']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Display name'), _('Name to display for this group'),
             'displayName'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Hide from global catalog'), _('Whether this group should be hidden from the global catalog'),
             'fdRenaterPartageGroupHideInGal', FALSE,
             FALSE
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             'fdRenaterPartageGroupMailStatus', TRUE, 'enabled'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             'fdRenaterPartageGroupSendShareMessageToNewMembers', '',
             'fdRenaterPartageGroupSendShareMessageToNewMembers', FALSE,
             FALSE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Notes'), _('Notes about this group'),
             'fdRenaterPartageGroupNotes', FALSE
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Alternative addresses'), _('Alternative mail addresses for the list'),
               'gosaMailAlternateAddress'
             )
diff --git a/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc b/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
index 1b8940a7a6..2e77875c78 100644
--- a/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
+++ b/renater-partage/admin/systems/services/renater-partage/class_serviceRenaterPartage.inc
@@ -67,15 +67,15 @@ class serviceRenaterPartage extends simpleMailMethodService
               _('Domains handled by this Renater Partage server'),
               'fdRenaterPartageServerMailDomain',
               [
-                new StringAttribute (
+                new StringAttribute(
                   _('Domain'), _('Domain handled by this server'),
                   'renaterPartageDomain', TRUE
                 ),
-                new StringAttribute (
+                new StringAttribute(
                   _('Key'), _('Key for this domain'),
                   'renaterPartageDomainKey', TRUE
                 ),
-                new StringAttribute (
+                new StringAttribute(
                   _('Classes of service'), _('Possible classes of service for this domain and their ids, separated by commas. Format is cos1Name|cos1Id,cos2Name|cos2Id.'),
                   'renaterPartageDomainCOS', TRUE,
                   '', '',
diff --git a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
index d588f85736..7b4f547232 100644
--- a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
+++ b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
@@ -83,7 +83,7 @@ class mailMethodRenaterPartage extends mailMethod
     }
 
     @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $command, '<b>MAIL: Command</b>');
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities ($post, ENT_COMPAT, 'UTF-8'),
+    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities($post, ENT_COMPAT, 'UTF-8'),
       '<b>MAIL: Query</b>');
 
     // performs the HTTP(S) POST
@@ -672,7 +672,7 @@ class mailMethodRenaterPartage extends mailMethod
         list($domain, $key, $cosString) = explode(':', $domainAndKey, 3);
         $cosArray = explode(',', $cosString);
         foreach ($cosArray as $cos) {
-          list ($cosName, $cosId) = explode('|', $cos);
+          list($cosName, $cosId) = explode('|', $cos);
           $deleteMode = (isset($attrs['fdRenaterPartageServerDeletionType'][0]) ? $attrs['fdRenaterPartageServerDeletionType'][0] : 'delete');
           $serverList[$attrs['cn'][0].' - '.$domain.' - '.$cosName] = [
             'server_dn'   => $attrs['dn'],
diff --git a/repository/admin/repository/class_buildRepository.inc b/repository/admin/repository/class_buildRepository.inc
index f712ad1c8c..419c9b6839 100644
--- a/repository/admin/repository/class_buildRepository.inc
+++ b/repository/admin/repository/class_buildRepository.inc
@@ -58,27 +58,27 @@ class buildRepository extends simplePlugin
       'main' => [
         'name'  => _('Build repository'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('repositoryRDN')),
-          new HostNameAttribute (
+          new BaseSelectorAttribute(get_ou('repositoryRDN')),
+          new HostNameAttribute(
             _('Name'), _('Unique name for this repository'),
             'cn', TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this repository'),
             'description', FALSE
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Distribution sections'), _('The distribution sections this repository provides'),
               'fdRepoDistributionSection', TRUE,
               []
             )
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Private'), _('Is this repository private or public?'),
             'fdRepoPrivate', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Type'), _('Repository type'),
             'fdRepoType', TRUE,
             $config->get_cfg_value('repositoryTypes', ['debian'])
@@ -88,7 +88,7 @@ class buildRepository extends simplePlugin
       'users' => [
         'name'  => _('Members'),
         'attrs' => [
-          new UsersAttribute (
+          new UsersAttribute(
             _('Admins'), _('Admins of this repository'),
             'fdRepoAdmin', FALSE
           ),
diff --git a/repository/admin/repository/class_repositoryDistribution.inc b/repository/admin/repository/class_repositoryDistribution.inc
index acbd2cc052..257d44b0b1 100644
--- a/repository/admin/repository/class_repositoryDistribution.inc
+++ b/repository/admin/repository/class_repositoryDistribution.inc
@@ -55,24 +55,24 @@ class repositoryDistribution extends simplePlugin
       'main' => [
         'name'  => _('Repository distribution'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('repositoryRDN')),
-          new StringAttribute (
+          new BaseSelectorAttribute(get_ou('repositoryRDN')),
+          new StringAttribute(
             _('Name'), _('Unique name for this distribution'),
             'cn', TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this distribution'),
             'description', FALSE
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Section'), _('The sections this distribution contains'),
               'fdRepoSection', TRUE,
               []
             )
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Based on'), _('The distributions this one is based on'),
               'fdBasedOn', FALSE,
               []
diff --git a/repository/admin/repository/class_repositorySection.inc b/repository/admin/repository/class_repositorySection.inc
index 0d24213ac0..d6fafeb989 100644
--- a/repository/admin/repository/class_repositorySection.inc
+++ b/repository/admin/repository/class_repositorySection.inc
@@ -52,17 +52,17 @@ class repositorySection extends simplePlugin
       'main' => [
         'name'  => _('Repository section'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('repositoryRDN')),
-          new StringAttribute (
+          new BaseSelectorAttribute(get_ou('repositoryRDN')),
+          new StringAttribute(
             _('Name'), _('Unique name for this section'),
             'cn', TRUE
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this section'),
             'description', FALSE
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Based on'), _('The sections this one is based on'),
               'fdBasedOn', FALSE,
               []
diff --git a/repository/config/repository/class_repositoryConfig.inc b/repository/config/repository/class_repositoryConfig.inc
index 798994bc21..91d8bc1f28 100644
--- a/repository/config/repository/class_repositoryConfig.inc
+++ b/repository/config/repository/class_repositoryConfig.inc
@@ -41,13 +41,13 @@ class repositoryConfig extends simplePlugin
       'main' => [
         'name'  => _('Repository'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Repository RDN'), _('Branch in which repository objects will be stored'),
             'fdRepositoryRDN', TRUE,
             'ou=repository'
           ),
           new SetAttribute(
-            new StringAttribute (
+            new StringAttribute(
               _('Repository types'), _('Available repository types'),
               'fdRepositoryTypes', TRUE
             ),
diff --git a/samba/admin/samba/class_sambaDomain.inc b/samba/admin/samba/class_sambaDomain.inc
index c232b4446c..61eec7c374 100644
--- a/samba/admin/samba/class_sambaDomain.inc
+++ b/samba/admin/samba/class_sambaDomain.inc
@@ -50,15 +50,15 @@ class sambaDomain extends simplePlugin
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Domain name'), _('Name of this domain'),
             'sambaDomainName', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('SID'), _('SID of this domain'),
             'sambaSID', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Rid base'), _('Algorithmic rid base'),
             'sambaAlgorithmicRidBase', FALSE
           ),
diff --git a/samba/admin/systems/samba/class_sambaSystemTab.inc b/samba/admin/systems/samba/class_sambaSystemTab.inc
index 564b2c0ed9..8ef5170883 100644
--- a/samba/admin/systems/samba/class_sambaSystemTab.inc
+++ b/samba/admin/systems/samba/class_sambaSystemTab.inc
@@ -43,13 +43,13 @@ class sambaSystemTab extends simplePlugin
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HiddenAttribute ('uid'),
-          new HiddenAttribute ('sambaSID'),
+          new HiddenAttribute('uid'),
+          new HiddenAttribute('sambaSID'),
           new HiddenAttribute ('homeDirectory', TRUE, '/dev/null'),
-          new HiddenAttribute ('uidNumber', TRUE, 1000),
-          new HiddenAttribute ('gidNumber', TRUE, 515),
-          new HiddenAttribute ('sambaAcctFlags', TRUE, '[W          ]'),
-          new SelectAttribute (
+          new HiddenAttribute('uidNumber', TRUE, 1000),
+          new HiddenAttribute('gidNumber', TRUE, 515),
+          new HiddenAttribute('sambaAcctFlags', TRUE, '[W          ]'),
+          new SelectAttribute(
             _('Domain'), _('Samba domain name'),
             'sambaDomainName', TRUE
           ),
diff --git a/samba/config/samba/class_sambaPluginConfig.inc b/samba/config/samba/class_sambaPluginConfig.inc
index 26da067c57..c1996cd853 100644
--- a/samba/config/samba/class_sambaPluginConfig.inc
+++ b/samba/config/samba/class_sambaPluginConfig.inc
@@ -40,34 +40,34 @@ class sambaPluginConfig extends simplePlugin
       'samba' => [
         'name'  => _('Samba settings'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Samba ID mapping'),
             _('Maintain sambaIdmapEntry objects. Depending on your setup this can drastically improve the windows login performance.'),
             'fdSambaIdMapping'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Samba SID'),
             _('A samba SID if not available inside of the LDAP though samba schema. You can retrieve the current sid by net getlocalsid.'),
             'fdSambaSID', FALSE,
             '0-815-4711'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Samba rid base'),
             _('The base id to add to ordinary sid calculations - if not available inside of the LDAP though samba schema.'),
             'fdSambaRidBase', FALSE,
             0, FALSE, 1
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Expiration date synchronisaton'), _('Synchronisaton the expiration date with the POSIX one?'),
             'fdSambaExpirationSync', FALSE,
             ['', 'posix', 'samba'], '',
             ['Do not synchronise', 'Synchronise from POSIX', 'Synchronise to POSIX']
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Generate sambaLMPassword'), _('Needed to be compliant with Windows <= 98 or Samba < 3.2'),
             'fdSambaGenLMPassword', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Activate primary group warning'), _('Issue a warning if POSIX primary group cannot be converted to Samba primary group when activating the Samba tab of a user'),
             'fdSambaPrimaryGroupWarning', FALSE
           )
diff --git a/samba/personal/samba/class_sambaAccount.inc b/samba/personal/samba/class_sambaAccount.inc
index 4f23758faf..74827a0412 100644
--- a/samba/personal/samba/class_sambaAccount.inc
+++ b/samba/personal/samba/class_sambaAccount.inc
@@ -183,27 +183,27 @@ class sambaAccount extends simplePlugin
         'name'  => _('Samba profile'),
         'icon'  => 'geticon.php?context=applications&icon=samba&size=16',
         'attrs' => [
-          new HiddenAttribute ('sambaSID'),
-          new HiddenAttribute ('sambaPrimaryGroupSID'),
-          new SelectAttribute (
+          new HiddenAttribute('sambaSID'),
+          new HiddenAttribute('sambaPrimaryGroupSID'),
+          new SelectAttribute(
             _('Home directory drive'), _('Letter for the home drive'),
             'sambaHomeDrive', FALSE,
             $letters
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Home directory path'), _('UNC path for the home drive'),
             'sambaHomePath', FALSE, '', '',
             $sambaRegEx
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Domain'), _('Samba domain name'),
             'sambaDomainName', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Script path'), _('Login script path'),
             'sambaLogonScript'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Profile path'), _('UNC profile path'),
             'sambaProfilePath', FALSE, '', '',
             $sambaRegEx
@@ -214,84 +214,84 @@ class sambaAccount extends simplePlugin
         'name'  => _('Terminal server'),
         'icon'  => 'geticon.php?context=devices&icon=terminal&size=16',
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Allow login on terminal server'), _('Allow login on terminal server'),
             'TsLogin', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Home directory drive'), _('Letter for the home drive'),
             'CtxWFHomeDirDrive', FALSE,
             $letters
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Home directory path'), _('UNC path for the home drive'),
             'CtxWFHomeDir', FALSE, '', '',
             $sambaRegEx
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Profile path'), _('UNC profile path'),
             'CtxWFProfilePath', FALSE, '', '',
             $sambaRegEx
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Inherit client config'), _('Inherit client configuration'),
             'InheritMode', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Initial progam'), _('Program to start after connecting'),
             'CtxInitialProgram'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Working directory'), _('Basic working directory'),
             'CtxWorkDirectory'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Connection timeout'), _('Timeout when connecting to terminal server'),
             'CtxMaxConnectionTime', FALSE,
             0, FALSE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Disconnection timeout'), _('Timeout before disconnecting from terminal server'),
             'CtxMaxDisconnectionTime', FALSE,
             0, FALSE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Idle timeout'), _('Idle timeout before disconnecting from terminal server'),
             'CtxMaxIdleTime', FALSE,
             0, FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Connect client drives at logon'), _('Drive to connect after login'),
             'ConnectClientDrives', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Connect client printers at logon'), _('Printers to connect after login'),
             'ConnectClientPrinters', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Default to main client printer'), _('Default printer for this client'),
             'DefaultPrinter', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Shadowing'), _('Shadowing'),
             'Shadow', TRUE,
             [0,1,2,3,4], 0,
             [_('disabled'), _('input on, notify on'), _('input on, notify off'),
                   _('input off, notify on'), _('input off, nofify off')]
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('On broken or timed out'), _('What happen if disconnected or timeout'),
             'BrokenConn', TRUE,
             [0,1], 0,
             [_('disconnect'), _('reset')]
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Reconnect if disconnected'), _('Reconnect if disconnected'),
             'ReConn', TRUE,
             [0,1], 0,
             [_('from any client'), _('from previous client only')]
           ),
-          new MungedAttribute (
+          new MungedAttribute(
             'sambaMungedDial',
             [
               'ConnectClientDrives','ConnectClientPrinters','DefaultPrinter',
@@ -304,39 +304,39 @@ class sambaAccount extends simplePlugin
         'name'  => _('Access options'),
         'icon'  => 'geticon.php?context=status&icon=dialog-password&size=16',
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enforce password change'), _('Force the user to change his password'),
             'sambaPwdLastSet', FALSE, FALSE, '',
             '0', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('The password never expire'), _('The password will never expire'),
             'flag_pwdExpire', FALSE, FALSE, '',
             'X', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Login from windows client requires no password'), _('Login from a client without a password'),
             'flag_noPwdRequired', FALSE, FALSE, '',
             'N', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Lock samba account'), _('Lock the account'),
             'flag_lockSamba', FALSE, FALSE, '',
             '[LD]', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Cannot change password'), _('Not allowed to change password'),
             'fd_pwdCantChange'
           ),
-          new DateAttribute (
+          new DateAttribute(
             _('Account expiration'), _('When does the account expire'),
             'sambaKickoffTime', FALSE, 'U', ''
           ),
-          new SambaFlagsAttribute (
+          new SambaFlagsAttribute(
             'sambaAcctFlags',
             ['flag_pwdExpire','flag_noPwdRequired','flag_lockSamba']
           ),
-          new DialogButtonAttribute (
+          new DialogButtonAttribute(
             _('Samba logon times'), _('What is the allowed time to connect'),
             'sambaLogonHours', _('Edit settings'), 'SambaLogonHoursDialog'
           ),
@@ -424,7 +424,7 @@ class sambaAccount extends simplePlugin
       $this->SID = preg_replace ("/-[^-]+$/", "", $this->sambaSID);
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
-      $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))", ["sambaAlgorithmicRidBase","sambaDomainName"]);
+      $ldap->search("(&(objectClass=sambaDomain)(sambaSID=$this->SID))", ["sambaAlgorithmicRidBase","sambaDomainName"]);
       if ($ldap->count() != 0) {
         $attrs = $ldap->fetch();
         if (isset($attrs['sambaAlgorithmicRidBase'])) {
diff --git a/samba/personal/samba/class_sambaMungedDial.inc b/samba/personal/samba/class_sambaMungedDial.inc
index 4f07bcacdb..69aa2e674c 100644
--- a/samba/personal/samba/class_sambaMungedDial.inc
+++ b/samba/personal/samba/class_sambaMungedDial.inc
@@ -21,7 +21,7 @@
 */
 
 /* File header is treated as constant. It cannot be defined inside the class if $PHP_VERSION < 5 */
-define ("FILEHEADER",
+define("FILEHEADER",
         "20002000200020002000200020002000".
         "20002000200020002000200020002000".
         "20002000200020002000200020002000".
@@ -30,7 +30,7 @@ define ("FILEHEADER",
         "20002000200020002000200020002000".
         "5000");
 /* This is the old header, it is needed to automatically convert old mungedDials to new ones */
-define ("FILEHEADER_OLD",
+define("FILEHEADER_OLD",
         "6d000800200020002000200020002000".
         "20002000200020002000200020002000".
         "20002000200020002000200064000100".
@@ -517,7 +517,7 @@ class sambaMungedDial
   function setCtxMaxConnectionTimeF ($checked)
   {
     if ($checked) {
-      unset ($this->ctx['CtxMaxConnectionTime']);
+      unset($this->ctx['CtxMaxConnectionTime']);
     }
   }
 
@@ -532,7 +532,7 @@ class sambaMungedDial
   function setCtxMaxDisconnectionTimeF ($checked)
   {
     if ($checked) {
-      unset ($this->ctx['CtxMaxDisconnectionTime']);
+      unset($this->ctx['CtxMaxDisconnectionTime']);
     }
   }
 
@@ -547,7 +547,7 @@ class sambaMungedDial
   function setCtxMaxIdleTimeF ($checked)
   {
     if ($checked) {
-      unset ($this->ctx['CtxMaxIdleTime']);
+      unset($this->ctx['CtxMaxIdleTime']);
     }
   }
 }
diff --git a/sinaps/config/sinaps/class_sinapsConfig.inc b/sinaps/config/sinaps/class_sinapsConfig.inc
index 1d7cb4c70e..c795c0e87d 100644
--- a/sinaps/config/sinaps/class_sinapsConfig.inc
+++ b/sinaps/config/sinaps/class_sinapsConfig.inc
@@ -42,21 +42,21 @@ class sinapsConfig extends simplePlugin
       'main' => [
         'name'  => _('Sinaps'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable SINAPS integration'), _('Whether to enable the SINAPS integration'),
             'fdSinapsEnabled', FALSE,
             TRUE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Dry run mode'), _('Do not insert data in FusionDirectory, dump it to a file'),
             'fdSinapsDryRun', FALSE,
             FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Dump folder'), _('Folder in which received transactions should be dumped (leave empty to disable)'),
             'fdSinapsDumpFolder', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Application identifier'), _('Application identifier present in cross references with FusionDirectory'),
             'fdSinapsIdentifiantApplication', TRUE,
             'FUSIONDIRECTORY'
@@ -83,18 +83,18 @@ class sinapsConfig extends simplePlugin
             'fdSinapsUserBase', TRUE,
             $config->current['BASE']
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('User template'), _('User template to use for user creation from SINAPS diffusion'),
             'fdSinapsUserTemplate', FALSE
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('API Tokens'), _('One of these API tokens will need to be present in the diffusion URL used by SINAPS'),
               'fdSinapsFDToken', FALSE
             )
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('User roles'), _('Roles which means a user still exists if present'),
               'fdSinapsUserRole', TRUE
             ),
@@ -169,34 +169,34 @@ class sinapsConfig extends simplePlugin
       'acquisition' => [
         'name'  => _('Sinaps Acquisition'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Acquisition URL'), _('Full URL to which acquisition events should be sent'),
             'fdSinapsAcquisitionURL', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Login'), _('Login to use for Basic Auth when contacting SINAPS services'),
             'fdSinapsLogin', FALSE,
             'fusiondirectory'
           ),
-          new PasswordAttribute (
+          new PasswordAttribute(
             _('Password'), _('Password to use for Basic Auth when contacting SINAPS services'),
             'fdSinapsPassword', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Acquisition external type'), _('Set in typeExterne tag when sending acquisition data'),
             'fdSinapsAcquisitionTypeExterne', TRUE,
             'FD'
           ),
-          new OrderedArrayAttribute (
+          new OrderedArrayAttribute(
             new PipeSeparatedCompositeAttribute(
               _('Which field to sync as contact methods in acquisition'),
               'fdSinapsAcquisitionContactMethodMap',
               [
-                new StringAttribute (
+                new StringAttribute(
                   '', _('Name of an LDAP attribute'),
                   'fdSinapsAcquisitionContactMethodMap_ldap', TRUE
                 ),
-                new StringAttribute (
+                new StringAttribute(
                   '', _('Name of the Sinaps attribute'),
                   'fdSinapsAcquisitionContactMethodMap_sinaps', TRUE
                 ),
diff --git a/sinaps/contrib/test/testAcquisition.php b/sinaps/contrib/test/testAcquisition.php
index 3a26354b88..7c60a5a3e2 100644
--- a/sinaps/contrib/test/testAcquisition.php
+++ b/sinaps/contrib/test/testAcquisition.php
@@ -90,10 +90,10 @@ function codeEntiteToldapUuidCallback ($codeEntite)
   );
   if (empty($entites)) {
     $error = 'Could not find entity '.$codeEntite;
-    die ($error);
+    die($error);
   } elseif (count($entites) > 1) {
     $error = 'Multiple entite matches codeEntite '.$codeEntite;
-    die ($error);
+    die($error);
   } else {
     $entite = reset($entites);
     foreach ($entite['supannRefId'] as $supannRefId) {
@@ -102,7 +102,7 @@ function codeEntiteToldapUuidCallback ($codeEntite)
       }
     }
     $error = 'Could not find any UUID for '.$entite['dn'];
-    die ($error);
+    die($error);
   }
 }
 
diff --git a/sinaps/personal/sinaps/class_sinapsUser.inc b/sinaps/personal/sinaps/class_sinapsUser.inc
index 7785d5ed5f..8b7e47d168 100644
--- a/sinaps/personal/sinaps/class_sinapsUser.inc
+++ b/sinaps/personal/sinaps/class_sinapsUser.inc
@@ -44,7 +44,7 @@ class sinapsUser extends simplePlugin
         'name'  => _('Sinaps'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new DisplayAttribute (
+          new DisplayAttribute(
             '', '',
             'sinaps_explanation', FALSE,
             _('This tab takes care of sending Acquisition event to Sinaps whenever a user is modified.')
diff --git a/sogo/admin/sogo/class_sogoResource.inc b/sogo/admin/sogo/class_sogoResource.inc
index 6723ec069b..d6313b8dc6 100644
--- a/sogo/admin/sogo/class_sogoResource.inc
+++ b/sogo/admin/sogo/class_sogoResource.inc
@@ -52,27 +52,27 @@ class sogoResource extends simplePlugin
       'main' => [
         'name'  => _('SOGo resource'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('sogoRDN')),
-          new HostNameAttribute (
+          new BaseSelectorAttribute(get_ou('sogoRDN')),
+          new HostNameAttribute(
             _('Entry name'), _('Account name'),
             'uid', TRUE
           ),
-          new MailAttribute (
+          new MailAttribute(
             _('Mail'), _('Mail'),
             'mail', TRUE
           ),
-          new HiddenAttribute ('sn'),
-          new HiddenAttribute ('cn'),
-          new TextAreaAttribute (
+          new HiddenAttribute('sn'),
+          new HiddenAttribute('cn'),
+          new TextAreaAttribute(
             _('description'), _('description'),
             'description', FALSE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Multiplebookings'), _('Multiplebookings'),
             'Multiplebookings', FALSE,
             0, FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Kind'), _('Kind'),
             'Kind', FALSE,
             ['location', 'thing', 'group']
diff --git a/sogo/config/sogo/class_sogoConfig.inc b/sogo/config/sogo/class_sogoConfig.inc
index 5cdc2f90fa..604731bb87 100644
--- a/sogo/config/sogo/class_sogoConfig.inc
+++ b/sogo/config/sogo/class_sogoConfig.inc
@@ -41,7 +41,7 @@ class sogoConfig extends simplePlugin
       'main' => [
         'name'  => _('SOGo'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('SOGo RDN'), _('Branch in which SOGo objects will be stored'),
             'fdSogoRDN', TRUE,
             'ou=resources'
diff --git a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
index 005b64338b..3b0a09bdb5 100644
--- a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
+++ b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
@@ -45,17 +45,17 @@ class serviceSpamAssassin extends simpleService {
       'section1' => [
         'name'  => _('Spam tagging'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Rewrite header'), _('Rewrite header'),
             'saRewriteHeader'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Required score'), _('Select required score to tag mail as spam'),
             'saRequiredScore', FALSE,
              [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Trusted networks'), _('Trusted networks'),
               'saTrustedNetworks'
             )
@@ -65,37 +65,37 @@ class serviceSpamAssassin extends simpleService {
       'section2' => [
         'name'  => _('Flags'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable use of bayes filtering'), '',
             'flag_enable_bayes', FALSE,
             FALSE, '', 'B', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable bayes auto learning'), '',
             'flag_bayes_autolearn', FALSE,
             FALSE, '', 'b', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable RBL checks'), '',
             'flag_enable_rblcheck', FALSE,
             FALSE, '', 'C', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable use of Razor'), '',
             'flag_enable_razor', FALSE,
             FALSE, '', 'R', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable use of DCC'), '',
             'flag_enable_ddc', FALSE,
             FALSE, '', 'D', ''
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Enable use of Pyzor'), '',
             'flag_enable_pyzor', FALSE,
             FALSE, '', 'P', ''
           ),
-          new FlagsAttribute ('saFlags', [
+          new FlagsAttribute('saFlags', [
             'flag_enable_bayes',
             'flag_bayes_autolearn',
             'flag_enable_rblcheck',
@@ -108,13 +108,13 @@ class serviceSpamAssassin extends simpleService {
       'section3' => [
         'name' => _('Rules'),
         'attrs' => [
-          new SetAttribute (
-            new CompositeAttribute (
+          new SetAttribute(
+            new CompositeAttribute(
               _('Edit spam rule'),
               'saRule',
                [
-                new StringAttribute (_('Name'), '', 'ruleName'),
-                new TextAreaAttribute (_('Rule'), '', 'ruleDesc'),
+                new StringAttribute(_('Name'), '', 'ruleName'),
+                new TextAreaAttribute(_('Rule'), '', 'ruleDesc'),
               ],
               '/^([^:]*):(.*)$/',
               '%s:%s',
diff --git a/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc b/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
index d171a92904..13c70ec40a 100644
--- a/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
+++ b/spamassassin/personal/spamassassin/class_spamAssassinAccount.inc
@@ -33,17 +33,17 @@ class spamAssassinAccount extends simplePlugin
         'attrs' => [
         //~ A user object will have multiple spamassassin attributes, one for each preference setting.
         //~ The attributes themselves should be stored in the database. A spamassassin LDAP attribute should be set to the name of a SpamAssassin configuration directive followed by the value for the directive, separated by a space.
-          new SetAttribute (
-            new CompositeAttribute (
+          new SetAttribute(
+            new CompositeAttribute(
               _('SpamAssassin user preferences settings'),
             'fdSpamAssassinRules',
               [
-                new SelectAttribute (
+                new SelectAttribute(
                   _('Directive'),    _('The name of a SpamAssassin configuration directive'),
                   'fdSpamAssassinRules_directive', TRUE,
                   ['score', 'whitelist_from', 'required_score']
                 ),
-                new StringAttribute (
+                new StringAttribute(
                   _('Value'), _('The value for the directive'),
                   'fdSpamAssassinRules_value'
                 ),
diff --git a/squid/personal/squid/class_proxyAccount.inc b/squid/personal/squid/class_proxyAccount.inc
index 02e2f34408..161c67b40c 100644
--- a/squid/personal/squid/class_proxyAccount.inc
+++ b/squid/personal/squid/class_proxyAccount.inc
@@ -93,12 +93,12 @@ class proxyAccount extends simplePlugin
             FALSE,
             FALSE
           ),
-          new workingTime (
+          new workingTime(
             _('Working Start'),
             'gosaProxyWorkingStart',
              [
-              new SelectAttribute ( '',  _('HourStart'),   'hourstart',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
-              new SelectAttribute ( ':', _('MinuteStart'), 'minutestart', TRUE, ['00','15','30','45'])
+              new SelectAttribute( '',  _('HourStart'),   'hourstart',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
+              new SelectAttribute( ':', _('MinuteStart'), 'minutestart', TRUE, ['00','15','30','45'])
             ],
             // read format (not used)
             '',
@@ -108,22 +108,22 @@ class proxyAccount extends simplePlugin
             '',
             _('Limit proxy access to working time')
           ),
-          new workingTime (
+          new workingTime(
             _('Working Stop'),
             'gosaProxyWorkingStop',
              [
-              new SelectAttribute ( _('-'), _('HourStart'), 'hourstop',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
-              new SelectAttribute ( _(':'), _('MinuteStop'), 'minutestop', TRUE, ['00','15','30','45'])
+              new SelectAttribute( _('-'), _('HourStart'), 'hourstop',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
+              new SelectAttribute( _(':'), _('MinuteStop'), 'minutestop', TRUE, ['00','15','30','45'])
             ],
             '',
             ''
           ),
-          new CompositeAttribute (
+          new CompositeAttribute(
             _('Restrict proxy usage by quota'),
             'gosaProxyQuota',
             [
               new IntAttribute    ('',  _('Up'), 'quota_size', FALSE, 0, FALSE, 21),
-              new SelectAttribute ('', '', 'quota_unit', FALSE, ['k','m','g'], '', ['KB','MB','GB']),
+              new SelectAttribute('', '', 'quota_unit', FALSE, ['k','m','g'], '', ['KB','MB','GB']),
             ],
             '/^(\\d+)(.)$/',
             '%d%s',
@@ -131,14 +131,14 @@ class proxyAccount extends simplePlugin
             '',
             _('Restrict proxy usage by quota')
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('per'),
             _('per'),
             'gosaProxyQuotaPeriod',
             FALSE,
              ['h','d','w','m'], "",  [_("hour"),_("day"),_("week"),_("month")]
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Start Working Hours'),
             _('Starting hours for internet access'),
             'enableWorkingTime',
@@ -147,7 +147,7 @@ class proxyAccount extends simplePlugin
             // acl
             'gosaProxyWorkingStart'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Proxy Quota'),
             _('Max Data quota for the proxy'),
             'enableQuota',
diff --git a/subcontracting/personal/subcontracting/class_subContracting.inc b/subcontracting/personal/subcontracting/class_subContracting.inc
index 13d7272c84..bafeb767a8 100644
--- a/subcontracting/personal/subcontracting/class_subContracting.inc
+++ b/subcontracting/personal/subcontracting/class_subContracting.inc
@@ -46,35 +46,35 @@ class subContractingAccount extends simplePlugin
       'main' => [
         'name'  => _('SubContracting Information'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Intermediate'),
             _('Contact to the final customer'),
             'fdMissionIntermediate',
             FALSE,
             ''
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Final Customer'),
             _('Final Customer for this mission'),
             'fdMissionFinalCustomer',
             FALSE,
             ''
           ),
-          new MailAttribute (
+          new MailAttribute(
             _('Mail Address'),
             _('Mail address assigned for this mission'),
             'fdMissionMail',
             FALSE,
             ''
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Phone'),
             _('Phone number assigned for this mission'),
             'fdMissionPhone',
             FALSE,
             ''
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Street Address'),
             _('Address where this mission is executed'),
             'fdMissionAddress',
diff --git a/sudo/admin/sudo/class_sudoGeneric.inc b/sudo/admin/sudo/class_sudoGeneric.inc
index 7b8a51fb44..3d33328c7c 100644
--- a/sudo/admin/sudo/class_sudoGeneric.inc
+++ b/sudo/admin/sudo/class_sudoGeneric.inc
@@ -155,61 +155,61 @@ class sudo extends simplePlugin
         'name'  => _('Role settings'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new defaultRoleAttribute (FALSE),
-          new BaseSelectorAttribute (get_ou('sudoRDN')),
-          new StringAttribute (
+          new defaultRoleAttribute(FALSE),
+          new BaseSelectorAttribute(get_ou('sudoRDN')),
+          new StringAttribute(
             _('Name'), _('Name of the role'),
             'cn', TRUE,
             ''
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('Description for the new sudo role'),
             'description', FALSE
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Commands'),
               _('A Unix command with optional command line arguments, potentially including globbing characters (aka wild cards)'),
               'sudoCommand', FALSE
             )
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Run as (user)'),
               _('User(s) impersonated by sudo'),
               'sudoRunAsUser', FALSE
             ),
             ['ALL']
           ),
-          new SetAttribute (
-            new StringAttribute (
+          new SetAttribute(
+            new StringAttribute(
               _('Run as (group)'),
               _('Group(s) impersonated by sudo'),
               'sudoRunAsGroup', FALSE
             ),
             ['ALL']
           ),
-          new SudoSystemsAttribute (
+          new SudoSystemsAttribute(
             _('Systems'), _('A host name, IP address or IP network'),
             'sudoHost', FALSE,
             ['ALL']
           ),
-          new SudoUsersGroupsAttribute (
+          new SudoUsersGroupsAttribute(
             _('Users and groups'),
             _("A user name, user ID (prefixed with '#'), Unix group (prefixed with '%')"),
             'sudoUser', FALSE
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Priority'), _('This rule priority compared to others'),
             'sudoOrder', FALSE,
             0, FALSE, 0
           ),
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('Valid starting from'), _('Start of time interval for which the entry is valid (leave empty to disable)'),
             'sudoNotBefore', FALSE,
             ''
           ),
-          new GeneralizedTimeDateAttribute (
+          new GeneralizedTimeDateAttribute(
             _('Valid until'), _('End of time interval for which the entry is valid (leave empty to disable)'),
             'sudoNotAfter', FALSE,
             ''
diff --git a/sudo/admin/sudo/class_sudoOption.inc b/sudo/admin/sudo/class_sudoOption.inc
index 25b5b216fd..1a32030e7a 100644
--- a/sudo/admin/sudo/class_sudoOption.inc
+++ b/sudo/admin/sudo/class_sudoOption.inc
@@ -116,7 +116,7 @@ class AvailableSudoOptionAttribute extends SelectAttribute
   {
     $choices = sudoOptions::listOptions();
     sort($choices);
-    parent::__construct ($label, $description, $ldapName, $required, $choices, "", NULL, $acl);
+    parent::__construct($label, $description, $ldapName, $required, $choices, "", NULL, $acl);
     $this->setInLdap(FALSE);
   }
 
@@ -340,7 +340,7 @@ class sudoOption extends simplePlugin
       'available_options' => [
         'name'  => _('Available options'),
         'attrs' => [
-          new AvailableSudoOptionAttribute (
+          new AvailableSudoOptionAttribute(
             _('Option'), _('Add a new sudo option'), 'availableSudoOptions'
           ),
         ]
@@ -348,7 +348,7 @@ class sudoOption extends simplePlugin
       'used_options' => [
         'name'  => _('Used sudo role options'),
         'attrs' => [
-          new UsedOptionAttribute (_('Used sudo role options'), 'sudoOption')
+          new UsedOptionAttribute(_('Used sudo role options'), 'sudoOption')
         ],
         'template' => get_template_path('usedoptions_section.tpl', TRUE, dirname(__FILE__))
       ],
diff --git a/sudo/config/sudo/class_sudoConfig.inc b/sudo/config/sudo/class_sudoConfig.inc
index 2a82444cf5..a4c1345bf9 100644
--- a/sudo/config/sudo/class_sudoConfig.inc
+++ b/sudo/config/sudo/class_sudoConfig.inc
@@ -41,7 +41,7 @@ class sudoConfig extends simplePlugin
       'main' => [
         'name'  => _('Sudo'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Sudo RDN'), _('Branch in which sudoers will be stored'),
             'fdSudoRDN', TRUE,
             'ou=sudoers'
diff --git a/supann/config/supann/class_supannConfig.inc b/supann/config/supann/class_supannConfig.inc
index 1ee4353e60..96ecbff44c 100644
--- a/supann/config/supann/class_supannConfig.inc
+++ b/supann/config/supann/class_supannConfig.inc
@@ -40,12 +40,12 @@ class supannConfig extends simplePlugin
       'main' => [
         'name'  => _('SupAnn'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('SupAnn RDN'), _('Branch in which SupAnn structures will be stored'),
             'fdSupannStructuresRDN', TRUE,
             'ou=structures'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('SupAnn mail for recovery'), _('Allow the use of mail addresses from the personal mail address field from SupAnn account for password recovery'),
             'fdSupannPasswordRecovery', FALSE,
             TRUE
diff --git a/sympa/admin/sympa/class_sympaAlias.inc b/sympa/admin/sympa/class_sympaAlias.inc
index 29f3c5631d..4ab65e91d2 100644
--- a/sympa/admin/sympa/class_sympaAlias.inc
+++ b/sympa/admin/sympa/class_sympaAlias.inc
@@ -48,19 +48,19 @@ class sympaAlias extends simplePlugin
       'main' => [
         'name'  => _('Sympa list alias'),
         'attrs' => [
-          new BaseSelectorAttribute (get_ou('sympaRDN')),
+          new BaseSelectorAttribute(get_ou('sympaRDN')),
           new StringAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Description'), _('Description of this alias'),
             'description', FALSE
           ),
           new SetAttribute(
-            new MailAttribute (
+            new MailAttribute(
               _('Email address'), _('Email address'),
               'mail', TRUE
             )
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Sympa server'), _('Sympa server for this alias'),
             'sympaServerURL', TRUE,
             []
diff --git a/sympa/admin/systems/services/sympa/class_serviceSympa.inc b/sympa/admin/systems/services/sympa/class_serviceSympa.inc
index fc66c5d9c1..0a0e76f3c6 100644
--- a/sympa/admin/systems/services/sympa/class_serviceSympa.inc
+++ b/sympa/admin/systems/services/sympa/class_serviceSympa.inc
@@ -45,15 +45,15 @@ class serviceSympa extends simpleService
       'main' => [
         'name'  => _('Sympa server'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('URL'), _('URL to access the sympa server'),
             'sympaServerURL', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('User'), _('User to access sympa server SOAP API.'),
             'sympaServerUser', FALSE
           ),
-          new PasswordAttribute (
+          new PasswordAttribute(
             _('Password'), _('Password to access sympa server SOAP API.'),
             'sympaServerPassword', FALSE
           )
diff --git a/sympa/config/sympa/class_sympaConfig.inc b/sympa/config/sympa/class_sympaConfig.inc
index 5c9792fa05..dc9740324a 100644
--- a/sympa/config/sympa/class_sympaConfig.inc
+++ b/sympa/config/sympa/class_sympaConfig.inc
@@ -41,7 +41,7 @@ class sympaConfig extends simplePlugin
       'main' => [
         'name'  => _('Sympa'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Sympa RDN'), _('Branch in which Sympa objects will be stored'),
             'fdSympaRDN', TRUE,
             'ou=sympa'
diff --git a/systems/addons/dashboard/class_dashBoardNetwork.inc b/systems/addons/dashboard/class_dashBoardNetwork.inc
index e122156c0e..47505e7831 100644
--- a/systems/addons/dashboard/class_dashBoardNetwork.inc
+++ b/systems/addons/dashboard/class_dashBoardNetwork.inc
@@ -116,7 +116,7 @@ class dashboardNetwork extends simplePlugin
     $servers  = [];
     $zones    = objects::ls('dnsZone', ['zoneName' => 1, 'sOARecord' => 1], NULL, '', TRUE);
     foreach ($zones as $zonedn => $zone) {
-      list ($fqdn)  = explode(' ', $zone['sOARecord']);
+      list($fqdn)  = explode(' ', $zone['sOARecord']);
       $search = dnsManagement::findServerByFQDN($fqdn, $zonedn);
       foreach ($search as $dn => $name) {
         if (!isset($servers[$dn])) {
diff --git a/systems/admin/systems/class_componentGeneric.inc b/systems/admin/systems/class_componentGeneric.inc
index 13bb85a1e5..0335f3e6d7 100644
--- a/systems/admin/systems/class_componentGeneric.inc
+++ b/systems/admin/systems/class_componentGeneric.inc
@@ -53,11 +53,11 @@ class componentGeneric extends ipHostPlugin
       'main' => [
         'name'  => _('Properties'),
         'attrs' => [
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('The name of the component'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of the component'),
             'description', FALSE
           ),
diff --git a/systems/admin/systems/class_mobilePhoneGeneric.inc b/systems/admin/systems/class_mobilePhoneGeneric.inc
index bdf7463dd9..51cc33036c 100644
--- a/systems/admin/systems/class_mobilePhoneGeneric.inc
+++ b/systems/admin/systems/class_mobilePhoneGeneric.inc
@@ -56,11 +56,11 @@ class mobilePhoneGeneric extends ipHostPlugin
         'name'  => _('Properties'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('mobilePhoneRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('The name of the mobile phone'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of the mobile phone'),
             'description', FALSE
           ),
@@ -69,16 +69,16 @@ class mobilePhoneGeneric extends ipHostPlugin
       'phone' => [
         'name'  => _('Phone'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Serial Number'), _('The serial number of the mobile phone'),
             'serialNumber', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('IMEI Number'), _('The IMEI number of the mobile phone'),
             'fdMobileIMEI', FALSE, '', '',
             '/[[:digit:]]+/'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('OS'), _('The Operating System installed on this phone'),
             'fdMobileOS', FALSE
           ),
@@ -87,11 +87,11 @@ class mobilePhoneGeneric extends ipHostPlugin
       'simcard' => [
         'name'  => _('SimCard'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Telephone Number'), _('The telephone number of the mobile phone'),
             'telephoneNumber', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('PUK Number'), _('The PUK number of the simcard in this mobile phone'),
             'fdMobilePUK', FALSE, '', '',
             '/[[:digit:]]+/'
diff --git a/systems/admin/systems/class_phoneGeneric.inc b/systems/admin/systems/class_phoneGeneric.inc
index 346c3f48d6..f23b9e8f7b 100644
--- a/systems/admin/systems/class_phoneGeneric.inc
+++ b/systems/admin/systems/class_phoneGeneric.inc
@@ -52,11 +52,11 @@ class phoneGeneric extends ipHostPlugin
         'name'  => _('Properties'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('phoneRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('The name of the phone'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of the phone'),
             'description', FALSE
           ),
@@ -65,11 +65,11 @@ class phoneGeneric extends ipHostPlugin
       'phone' => [
         'name'  => _('Phone'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Serial Number'), _('The serial number of the phone'),
             'serialNumber', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Telephone Number'), _('The telephone number of the phone'),
             'telephoneNumber', FALSE
           ),
diff --git a/systems/admin/systems/class_printGeneric.inc b/systems/admin/systems/class_printGeneric.inc
index 0244e38161..471ae9c122 100644
--- a/systems/admin/systems/class_printGeneric.inc
+++ b/systems/admin/systems/class_printGeneric.inc
@@ -58,11 +58,11 @@ class printGeneric extends ipHostPlugin
         'name'  => _('Properties'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('printerRDN')),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'), _('The name of the printer'),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'), _('A short description of the printer'),
             'description', FALSE
           ),
@@ -71,11 +71,11 @@ class printGeneric extends ipHostPlugin
       'details' => [
         'name'  => _('Details'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Printer location'), _('The location of the printer'),
             'l', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Printer URL'), _('The URL of the printer'),
             'labeledURI', TRUE
           ),
@@ -121,15 +121,15 @@ class printGeneric extends ipHostPlugin
         'name'      => _('Windows paths'),
         'icon'      => 'geticon.php?context=devices&icon=computer-windows&size=16',
         'attrs'     => [
-          new StringAttribute (
+          new StringAttribute(
             _('Inf file'), _('Path to windows inf file for this printer'),
             'fdPrinterWindowsInfFile', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Driver directory'), _('Path to directory that contains windows drivers for this printer'),
             'fdPrinterWindowsDriverDir', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Driver name'), _('Windows name of the printer driver'),
             'fdPrinterWindowsDriverName', FALSE
           ),
diff --git a/systems/admin/systems/class_systemImport.inc b/systems/admin/systems/class_systemImport.inc
index a42be29366..62537156df 100644
--- a/systems/admin/systems/class_systemImport.inc
+++ b/systems/admin/systems/class_systemImport.inc
@@ -48,12 +48,12 @@ class systemImport extends simplePlugin
             'type', TRUE,
             [], '', NULL
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Template'), _('Select a template to apply to imported entries'),
             'template_dn', FALSE,
             [], '', NULL
           ),
-          new ButtonAttribute (
+          new ButtonAttribute(
             '', '',
             'import',
             _('Import')
diff --git a/systems/admin/systems/class_workstationGeneric.inc b/systems/admin/systems/class_workstationGeneric.inc
index 8d4b39e5d0..6ff60d604a 100644
--- a/systems/admin/systems/class_workstationGeneric.inc
+++ b/systems/admin/systems/class_workstationGeneric.inc
@@ -58,22 +58,22 @@ class workstationGeneric extends ipHostPlugin
         'name'  => _('Properties'),
         'attrs' => [
           new BaseSelectorAttribute($rdn),
-          new HostNameAttribute (
+          new HostNameAttribute(
             _('Name'),
             sprintf(_('The name of the %s'), $word),
             'cn', TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Description'),
             sprintf(_('A short description of the %s'), $word),
             'description', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Location'),
             sprintf(_('The location of the %s'), $word),
             'l', FALSE
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             sprintf(_('Lock this %s'), $word),
             sprintf(_('This will prevent the %s from being reinstalled'), $word),
             'fdMode',
diff --git a/systems/admin/systems/services/ldap/class_serviceLDAP.inc b/systems/admin/systems/services/ldap/class_serviceLDAP.inc
index e8a5802a3c..70073e8abd 100644
--- a/systems/admin/systems/services/ldap/class_serviceLDAP.inc
+++ b/systems/admin/systems/services/ldap/class_serviceLDAP.inc
@@ -35,51 +35,51 @@ class serviceLDAP extends simpleService
         'name'  => _('LDAP service'),
         'class' => ['fullwidth'],
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('LDAP Base'), _('The LDAP base to use for this LDAP server'),
             'goLdapBase', TRUE,
             $config->current['BASE']
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('LDAP URI'), _('The LDAP URI to use in order to contact this LDAP server'),
             'goLdapURI', TRUE,
             'ldap://'._('fill-in-your-servers-dns-name').':389/',
             '',
             '/^ldap[si]?:\/\/([0-9a-z_.-]+|\[[0-9a-f:]+\])(:[0-9]+)?(\/.*)?$/'
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Size limit'), _('Limit the number of record returned'),
             'goLdapSizeLimit', FALSE,
             0, FALSE, ''
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Time limit'), _('Time limit for the result to be returned'),
             'goLdapTimeLimit', FALSE,
             0, FALSE, 15
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('Deref'), _('Specifies how alias dereferencing is done when performing a search'),
             'goLdapDeref', TRUE,
             ['never','searching','finding','always'], 'never'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('TLS Cert'), _('Filepath to tls certificate'),
             'goLdapTlsCert', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('TLS Key'), _('Filepath to tls key'),
             'goLdapTlsKey', FALSE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('TLS CaCert'), _('Filepath to tls ca certificate'),
             'goLdapTlsCaCert', FALSE
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('TLS ReqCert'), _('Specifies what checks to perform on server certificates in a TLS session, if any'),
             'goLdapReqCert', TRUE,
             ['never','allow','try','demand'], 'never'
           ),
-          new SelectAttribute (
+          new SelectAttribute(
             _('TLS CrlCheck'), _('Specifies if the Certificate Revocation List (CRL) of the CA should be used to verify if the server certificates have  not  been  revoked'),
             'goLdapCrlCheck', TRUE,
             ['none','peer','all'], 'none'
diff --git a/systems/admin/systems/services/terminal/class_serviceTerminal.inc b/systems/admin/systems/services/terminal/class_serviceTerminal.inc
index 7812cd4c54..13a15ab03f 100644
--- a/systems/admin/systems/services/terminal/class_serviceTerminal.inc
+++ b/systems/admin/systems/services/terminal/class_serviceTerminal.inc
@@ -40,7 +40,7 @@ class serviceTerminal extends simpleService
       'section1' => [
         'name'  => _('Terminal service'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Temporary disable login'),
             _('Disables the login on this terminal server'),
             'goXdmcpIsEnabled', FALSE,
@@ -49,8 +49,8 @@ class serviceTerminal extends simpleService
             1,
             0
           ),
-          new SetAttribute (
-            new SelectAttribute (
+          new SetAttribute(
+            new SelectAttribute(
               _('Supported session types'),
               _('The session types supported by this terminal server'),
               'gotoSessionType', FALSE,
diff --git a/systems/config/systems/class_systemsPluginConfig.inc b/systems/config/systems/class_systemsPluginConfig.inc
index ab88f75768..b2115bda01 100644
--- a/systems/config/systems/class_systemsPluginConfig.inc
+++ b/systems/config/systems/class_systemsPluginConfig.inc
@@ -41,42 +41,42 @@ class systemsPluginConfig extends simplePlugin
       'rdns' => [
         'name'  => _('LDAP tree for systems'),
         'attrs' => [
-          new StringAttribute (
+          new StringAttribute(
             _('Systems RDN'), _('Branch in which systems will be stored'),
             'fdSystemRDN', TRUE,
             'ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Server RDN'), _('Branch in which servers will be stored'),
             'fdServerRDN', TRUE,
             'ou=servers,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Workstations RDN'), _('Branch in which workstations will be stored'),
             'fdWorkstationRDN', TRUE,
             'ou=workstations,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Terminal RDN'), _('Branch in which terminals will be stored'),
             'fdTerminalRDN', TRUE,
             'ou=terminals,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Printer RDN'), _('Branch in which printers will be stored'),
             'fdPrinterRDN', TRUE,
             'ou=printers,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Component RDN'), _('Branch in which network devices will be stored'),
             'fdComponentRDN', TRUE,
             'ou=netdevices,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Phone RDN'), _('Branch in which phones will be stored'),
             'fdPhoneRDN', TRUE,
             'ou=phones,ou=systems'
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Mobile phone RDN'), _('Branch in which mobile phones will be stored'),
             'fdMobilePhoneRDN', TRUE,
             'ou=mobile,ou=systems'
@@ -86,17 +86,17 @@ class systemsPluginConfig extends simplePlugin
       'config' => [
         'name'  => _('Miscellaneous'),
         'attrs' => [
-          new OrderedArrayAttribute (
+          new OrderedArrayAttribute(
             new CompositeAttribute(
               _('Available encodings for share services'),
               'fdEncodings',
               [
-                new StringAttribute (
+                new StringAttribute(
                   _('Encoding'), _('The encoding code name'),
                   'encoding_code', TRUE, '', '',
                   '/^[^=]+$/'
                 ),
-                new StringAttribute (
+                new StringAttribute(
                   _('Label'), _('The encoding displayed name'),
                   'encoding_label', TRUE, '', '',
                   '/^[^=]+$/'
diff --git a/user-reminder/config/user-reminder/class_userReminderConfig.inc b/user-reminder/config/user-reminder/class_userReminderConfig.inc
index 2008bb2595..3929ae9148 100644
--- a/user-reminder/config/user-reminder/class_userReminderConfig.inc
+++ b/user-reminder/config/user-reminder/class_userReminderConfig.inc
@@ -39,27 +39,27 @@ class userReminderConfig extends simplePlugin
       'main' => [
         'name'  => _('User reminder settings'),
         'attrs' => [
-          new IntAttribute (
+          new IntAttribute(
             _('Delay before expiration'), _('Days before expiration to send the first mail'),
             'fdUserReminderAlertDelay', TRUE,
             1, FALSE, 15
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Delay before sending again'), _('Days before sending a second mail (0 to disable)'),
             'fdUserReminderResendDelay', TRUE,
             0, FALSE, 7
           ),
-          new IntAttribute (
+          new IntAttribute(
             _('Extension of the validity'), _('Extension of the duration of the account in days'),
             'fdUserReminderPostponeDays', TRUE,
             1, FALSE, 15
           ),
-          new MailAttribute (
+          new MailAttribute(
             _('Sender email address'), _('Email address from which mails will be sent'),
             'fdUserReminderEmail', TRUE,
             'to.be@chang.ed'
           ),
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Allow use of alternate addresses'), _('Whether the field gosaMailAlternateAddress should be used as well to send reminders'),
             'fdUserReminderUseAlternate', TRUE,
             TRUE
@@ -69,17 +69,17 @@ class userReminderConfig extends simplePlugin
       'emailppolicy' => [
         'name'  => _('Ppolicy email settings'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Forward alerts to the manager'), _('Forward ppolicy alerts to the manager'),
             'fdUserReminderForwardPpolicyAlert', FALSE,
             TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Subject'), _('Subject of the ppolicy alert email'),
             'fdUserReminderPpolicyAlertSubject', FALSE,
             _('[FusionDirectory] Your password is about to expire')
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Body (%s are cn and login)'),
             _('Body of the ppolicy alert email, sent when the user password is about to expire. Use %s for the cn and uid.'),
             'fdUserReminderPpolicyAlertBody', FALSE,
@@ -95,12 +95,12 @@ class userReminderConfig extends simplePlugin
       'email1' => [
         'name'  => _('Alert email settings'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Forward alerts to the manager'), _('Forward alerts to the manager'),
             'fdUserReminderForwardAlert', TRUE,
             TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Subject'), _('Subject of the alert email'),
             'fdUserReminderAlertSubject', FALSE,
             _('[FusionDirectory] Your account is about to expire')
@@ -121,23 +121,23 @@ class userReminderConfig extends simplePlugin
       'email2' => [
         'name'  => _('Confirmation email settings'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Forward confirmation to the manager'), _('Forward account extension confirmation to the manager'),
             'fdUserReminderForwardConfirmation', TRUE,
             TRUE
           ),
-          new StringAttribute (
+          new StringAttribute(
             _('Subject'), _('Subject of the confirmation email'),
             'fdUserReminderConfirmationSubject', FALSE,
             _('[FusionDirectory] Your account expiration has been postponed')
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Body (%s are cn and login)'),
             _('Body of the confirmation email, sent when the user has postponed expiration. Use %s for the cn and uid.'),
             'fdUserReminderConfirmationBody', FALSE,
             _('Dear %1$s,'."\n".' your account %2$s expiration has been successfully postponed.'."\n")
           ),
-          new HiddenAttribute (
+          new HiddenAttribute(
             'fdReminderTokenRDN',
             FALSE,
             'ou=reminder'
diff --git a/weblink/admin/systems/weblink/class_webLink.inc b/weblink/admin/systems/weblink/class_webLink.inc
index 2219f74172..d50f042b8e 100644
--- a/weblink/admin/systems/weblink/class_webLink.inc
+++ b/weblink/admin/systems/weblink/class_webLink.inc
@@ -45,7 +45,7 @@ class webLink extends simplePlugin
       'links' => [
         'name'  => _('Links'),
         'attrs' => [
-          new DisplayAttribute (
+          new DisplayAttribute(
             _('Links'), _('Web links to this computer'),
             'fdWebLink', FALSE
           ),
@@ -54,13 +54,13 @@ class webLink extends simplePlugin
       'settings' => [
         'name'  => _('Settings'),
         'attrs' => [
-          new SelectAttribute (
+          new SelectAttribute(
             _('Protocol'), _('Protocol to use to access this computer Web page'),
             'fdWebLinkProtocol', TRUE,
             ['https', 'http']
           ),
-          new SetAttribute (
-            new URLAttribute (
+          new SetAttribute(
+            new URLAttribute(
               _('Arbitrary links'), _('Any URL you want to associate to this computer'),
               'fdWebLinkURL', FALSE
             )
diff --git a/webservice/config/class_webserviceConfig.inc b/webservice/config/class_webserviceConfig.inc
index d18e94636b..90401799ed 100644
--- a/webservice/config/class_webserviceConfig.inc
+++ b/webservice/config/class_webserviceConfig.inc
@@ -41,7 +41,7 @@ class webserviceConfig extends simplePlugin
       'main' => [
         'name'  => _('Webservice'),
         'attrs' => [
-          new BooleanAttribute (
+          new BooleanAttribute(
             _('Force SSL'), _('Allow only HTTPS JSON-RPC requests'),
             'fdWebserviceForceSSL', TRUE,
             TRUE
diff --git a/webservice/html/jsonrpc.php b/webservice/html/jsonrpc.php
index 1ffc9b5b05..096810d7af 100644
--- a/webservice/html/jsonrpc.php
+++ b/webservice/html/jsonrpc.php
@@ -591,7 +591,7 @@ class fdRPCService
       if ($user = get_lock($dn)) {
         return ['errors' => [sprintf(_('Cannot delete %s. It has been locked by %s.'), $dn, $user)]];
       }
-      add_lock ($dn, $ui->dn);
+      add_lock($dn, $ui->dn);
 
       // Delete the object
       $tabobject = objects::open($dn, $type);
-- 
GitLab


From 3eb71468155e1b137cbae8ecba535eac48824329 Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Thu, 21 Jul 2022 12:06:49 +0100
Subject: [PATCH 63/73] :sparkles: Feat(Plugins-1.3.1) - 1.4 CodeStyle applied

Application of code style 1.4 rules to 1.3.1 plugins
---
 .../alias/class_mailAliasDistribution.inc     |  2 +-
 .../alias/class_mailAliasRedirection.inc      |  2 +-
 .../applications/class_applicationGeneric.inc |  2 +-
 argonaut/include/class_supportDaemon.inc      |  8 ++---
 audit/admin/audit/class_auditEvent.inc        | 10 +++---
 .../certificates/class_userCertificates.inc   |  2 +-
 .../mail-methods/class_mail-methods-cyrus.inc | 34 +++++++++----------
 .../class_debconfProfileGeneric.inc           |  5 ---
 dns/admin/dns/class_DnsRecordAttribute.inc    |  6 ----
 .../class_mail-methods-dovecot.inc            | 10 +++---
 fai/admin/fai/class_faiManagement.inc         |  1 -
 fai/admin/fai/class_faiPackage.inc            |  2 +-
 fai/admin/systems/class_faiStartup.inc        |  2 +-
 fusioninventory/html/collect.php              |  4 +--
 mail/personal/mail/class_mail-methods.inc     | 30 ++++++++--------
 mail/personal/mail/class_mailAccount.inc      |  2 +-
 mail/personal/mail/class_sieve.inc            | 18 +++++-----
 posix/personal/posix/class_posixAccount.inc   | 10 +++---
 .../class_mail-methods-renater-partage.inc    | 10 +++---
 .../repository/class_buildRepository.inc      |  2 +-
 .../systems/samba/class_sambaSystemTab.inc    |  4 +--
 samba/include/class_smbHash.inc               |  4 +--
 samba/personal/samba/class_sambaAccount.inc   |  2 +-
 .../personal/samba/class_sambaMungedDial.inc  |  4 +--
 squid/personal/squid/class_proxyAccount.inc   |  2 +-
 .../admin/supannStructures/class_supann.inc   |  2 +-
 sympa/admin/sympa/class_sympaAlias.inc        |  2 +-
 .../admin/systems/class_systemManagement.inc  |  2 +-
 .../class_userReminderConfig.inc              |  2 +-
 29 files changed, 87 insertions(+), 99 deletions(-)

diff --git a/alias/admin/alias/class_mailAliasDistribution.inc b/alias/admin/alias/class_mailAliasDistribution.inc
index 6607307174..a771cd7a29 100644
--- a/alias/admin/alias/class_mailAliasDistribution.inc
+++ b/alias/admin/alias/class_mailAliasDistribution.inc
@@ -51,7 +51,7 @@ class mailAliasDistribution extends simplePlugin
         'name'  => _('Mail distribution'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('aliasRDN')),
-          new HostNameAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
+          new HostNameAttribute(_('Name'), _('Name to identify this alias'), 'cn', TRUE),
           new TextAreaAttribute(
             _('Description'), _('Description of this alias'),
             'description', FALSE
diff --git a/alias/admin/alias/class_mailAliasRedirection.inc b/alias/admin/alias/class_mailAliasRedirection.inc
index bfbbf9ee7b..c16fb832a0 100644
--- a/alias/admin/alias/class_mailAliasRedirection.inc
+++ b/alias/admin/alias/class_mailAliasRedirection.inc
@@ -52,7 +52,7 @@ class mailAliasRedirection extends simplePlugin
         'name'  => _('Mail redirection'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('aliasRDN')),
-          new HostNameAttribute (_('Name'), _('Name to identify this redirection'), 'cn', TRUE),
+          new HostNameAttribute(_('Name'), _('Name to identify this redirection'), 'cn', TRUE),
           new TextAreaAttribute(
             _('Description'), _('Description of this redirection'),
             'description', FALSE
diff --git a/applications/admin/applications/class_applicationGeneric.inc b/applications/admin/applications/class_applicationGeneric.inc
index d9a40d3457..b5e0fefe5a 100644
--- a/applications/admin/applications/class_applicationGeneric.inc
+++ b/applications/admin/applications/class_applicationGeneric.inc
@@ -121,7 +121,7 @@ class application extends simplePlugin
 
     if (file_exists($filename)) {
       $fd = fopen($filename, 'rb');
-      $this->attributesAccess['fdApplicationImage']->setDefaultValue(fread ($fd, filesize($filename)));
+      $this->attributesAccess['fdApplicationImage']->setDefaultValue(fread($fd, filesize($filename)));
       fclose($fd);
       if (empty($this->fdApplicationImage)) {
         $this->attributesAccess['fdApplicationImage']->resetToDefault();
diff --git a/argonaut/include/class_supportDaemon.inc b/argonaut/include/class_supportDaemon.inc
index 6bc71a6130..d2b12dbca7 100644
--- a/argonaut/include/class_supportDaemon.inc
+++ b/argonaut/include/class_supportDaemon.inc
@@ -166,7 +166,7 @@ class supportDaemon
 
   private function new_state ($state_value)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date ('H.i.s').' Setting state('.$state_value.') to ');
+    @DEBUG(DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $this->s_error, date('H.i.s').' Setting state('.$state_value.') to ');
     session::global_set('argonaut_state', [
       'date'  => time(),
       'error' => $this->s_error,
@@ -211,7 +211,7 @@ class supportDaemon
    */
   public function append_call ($action, $targets, $data)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, ['action' => $action, 'targets' => $targets, 'data' => $data], date('H.i.s').' Appending call to');
+    @DEBUG(DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, ['action' => $action, 'targets' => $targets, 'data' => $data], date('H.i.s').' Appending call to');
     if ($this->s_host == '') {
       $this->set_error($this->host_error);
       return FALSE;
@@ -229,7 +229,7 @@ class supportDaemon
         $tmpTargets = $targets;
       }
       $status = $client->action($action, $tmpTargets, $data);
-      @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date('H.i.s').' Answer');
+      @DEBUG(DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $status, date('H.i.s').' Answer');
       $this->reset_error();
       $this->new_state(TRUE);
       if (is_array($status) && !is_array($targets) && isset($status[0])) {
@@ -256,7 +256,7 @@ class supportDaemon
    */
   private function set_error ($str)
   {
-    @DEBUG (DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date('H.i.s').' Setting error to');
+    @DEBUG(DEBUG_SI, __LINE__, __FUNCTION__, __FILE__, $str, date('H.i.s').' Setting error to');
     $this->b_error = TRUE;
     $this->s_error = $str;
   }
diff --git a/audit/admin/audit/class_auditEvent.inc b/audit/admin/audit/class_auditEvent.inc
index 6f9fad4572..5a68981356 100644
--- a/audit/admin/audit/class_auditEvent.inc
+++ b/audit/admin/audit/class_auditEvent.inc
@@ -65,12 +65,12 @@ class auditEvent extends simplePlugin
             _('Time'), _('Date and time this event happened'),
             'fdAuditDateTime', TRUE
           ),
-          new DisplayLDAPAttribute  (_('Action'),       _('Action type'),     'fdAuditAction',      TRUE),
-          new UserLinkAttribute     (_('Author'),       _('Action author'),   'fdAuditAuthorDN',    TRUE),
-          new DisplayLDAPAttribute  (_('Object type'),  _('Object type'),     'fdAuditObjectType',  TRUE),
-          new DisplayLDAPAttribute  (_('Object'),       _('Target object'),   'fdAuditObject',      TRUE),
+          new DisplayLDAPAttribute(_('Action'),       _('Action type'),     'fdAuditAction',      TRUE),
+          new UserLinkAttribute(_('Author'),       _('Action author'),   'fdAuditAuthorDN',    TRUE),
+          new DisplayLDAPAttribute(_('Object type'),  _('Object type'),     'fdAuditObjectType',  TRUE),
+          new DisplayLDAPAttribute(_('Object'),       _('Target object'),   'fdAuditObject',      TRUE),
           new DisplayLDAPArrayAttribute(_('Attributes'), _('Target attributes'), 'fdAuditAttributes', FALSE),
-          new DisplayLDAPAttribute  (_('Result'),       _('Result or error'), 'fdAuditResult',      FALSE),
+          new DisplayLDAPAttribute(_('Result'),       _('Result or error'), 'fdAuditResult',      FALSE),
         ]
       ],
     ];
diff --git a/certificates/personal/certificates/class_userCertificates.inc b/certificates/personal/certificates/class_userCertificates.inc
index 896457dd5e..214a5e6a73 100644
--- a/certificates/personal/certificates/class_userCertificates.inc
+++ b/certificates/personal/certificates/class_userCertificates.inc
@@ -132,7 +132,7 @@ class userCertificates extends simplePlugin
         'name'  => _('Certificates'),
         'attrs' => [
           new CertificateOrderedArrayAttribute(
-            new CertificateFileAttribute (
+            new CertificateFileAttribute(
               '', _('Certificate content'),
               'userCertificate;binary', TRUE
             ),
diff --git a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
index 17f99f1967..0c2977ce8b 100644
--- a/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
+++ b/cyrus/personal/mail/mail-methods/class_mail-methods-cyrus.inc
@@ -85,13 +85,13 @@ class mailMethodCyrus extends mailMethod
     if ($this->imap_handle === FALSE) {
       $this->error = imap_last_error();
 
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
 
       $this->connected = FALSE;
       return FALSE;
     }
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>successful</b>",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>successful</b>",
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
     $this->connected = TRUE;
 
@@ -110,9 +110,9 @@ class mailMethodCyrus extends mailMethod
     $list = @imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
     $res  = (is_array($list) && count($list));
     if ($res) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "", "<b>IMAP: Account exists in imap server.</b>");
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "", "<b>IMAP: Account exists in imap server.</b>");
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "", "<b>IMAP: Account seems NOT to exists in imap server.</b>");
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "", "<b>IMAP: Account seems NOT to exists in imap server.</b>");
     }
     return $res;
   }
@@ -187,7 +187,7 @@ class mailMethodCyrus extends mailMethod
       @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $quota,
           "<b>IMAP: Successfully received account quota</b>");
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
@@ -240,11 +240,11 @@ class mailMethodCyrus extends mailMethod
     if (!imap_set_quota($this->imap_handle, $this->account_id, $this->quotaValue)) {
       msg_dialog::display(_("IMAP error"), sprintf(_("Cannot modify IMAP mailbox quota: %s"),
             '<br><br><i>'.imap_last_error().'</i>'), ERROR_DIALOG);
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>",
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>",
           "<b>IMAP: Set account quota</b> on server '".$this->parent->gosaMailServer."' <b>".imap_last_error()."</b>");
       return FALSE;
     }
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id.": (".$debug_number.")</b>",
         "<b>IMAP: Set account quota</b> on server :".$this->parent->gosaMailServer);
     return TRUE;
   }
@@ -264,7 +264,7 @@ class mailMethodCyrus extends mailMethod
       $cfg  = $this->ServerList[$this->parent->gosaMailServer];
       $list = imap_listmailbox($this->imap_handle, $cfg["connect"], $this->account_id);
       if ($list === FALSE) {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
           "<b>IMAP: Add/Update account</b> on server :".$this->parent->gosaMailServer);
         if (!imap_createmailbox($this->imap_handle, $cfg["connect"].$this->account_id)) {
           $this->error = imap_last_error();
@@ -278,7 +278,7 @@ class mailMethodCyrus extends mailMethod
 
           // Walk thru list of specified folders
           foreach ($folders as $folder) {
-            @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<b>'.$this->account_id.'</b>',
+            @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<b>'.$this->account_id.'</b>',
               '<b>IMAP: Add/Update account folder '.$folder.'</b> on server :'.$this->parent->gosaMailServer);
             if (!imap_createmailbox($this->imap_handle, $cfg['connect'].$this->account_id.$cyrus_delim.$folder)) {
               $this->error = imap_last_error();
@@ -371,15 +371,15 @@ class mailMethodCyrus extends mailMethod
         if ($with_domain) {
           $str = trim(preg_replace("/\@.*$/", "", $str));
         }
-        $str = preg_replace ("/^.*".preg_quote($folder, '/')."/", "INBOX",
+        $str = preg_replace("/^.*".preg_quote($folder, '/')."/", "INBOX",
           mb_convert_encoding($str, "UTF-8", "UTF7-IMAP"));
         $result[] = $str;
       }
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim (implode($result, ", "), ", "),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, trim(implode($result, ", "), ", "),
           "<b>IMAP: Received mailbox folders.</b>");
       $this->error = imap_last_error();
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Cannot receive mailbox folders.</b>");
       $this->error = imap_last_error();
       return [];
@@ -400,7 +400,7 @@ class mailMethodCyrus extends mailMethod
     $this->reset_error();
 
     /* imap_getacl available? */
-    if (!function_exists ('imap_getacl')) {
+    if (!function_exists('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
       @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
@@ -438,7 +438,7 @@ class mailMethodCyrus extends mailMethod
     $this->reset_error();
 
     /* imap_getacl available? */
-    if (!function_exists ('imap_getacl')) {
+    if (!function_exists('imap_getacl')) {
       $this->error = _("The module imap_getacl is not implemented!");
       @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "The imap_getacl module is missing!",
           "<b>IMAP: Cannot set folder acls.</b>");
@@ -493,7 +493,7 @@ class mailMethodCyrus extends mailMethod
     $sieve  = new sieve($cfg["sieve_server"], $cfg["sieve_port"], $this->getUAttribValue(),
                         $cfg["password"], $cfg["admin"], $cfg["sieve_option"]);
     if (!$sieve->sieve_login()) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $sieve->error_raw, "<b>SIEVE: login failed.</b>");
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $sieve->error_raw, "<b>SIEVE: login failed.</b>");
       $this->error = $sieve->error_raw;
       return FALSE;
     }
@@ -518,7 +518,7 @@ class mailMethodCyrus extends mailMethod
           if (empty($line)) {
             continue;
           }
-          if (preg_match ('/^###FUSIONDIRECTORY/', $line) && strlen($script) == 0) {
+          if (preg_match('/^###FUSIONDIRECTORY/', $line) && strlen($script) == 0) {
             $is_valid_script = TRUE;
           }
           $line   = rtrim($line);
@@ -576,7 +576,7 @@ class mailMethodCyrus extends mailMethod
     /* Upload script and make it the default one */
     if (!$sieve->sieve_sendscript("fusiondirectory", $script)) {
       $this->error = sprintf(_("Cannot store SIEVE script: %s"), to_string($sieve->error_raw));
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "Error was: ".to_string($sieve->error_raw),
         "<b>SIEVE: Writing new Sieve script failed!</b>");
       return FALSE;
     }
diff --git a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
index f7b6cbc1a4..71598f01cb 100644
--- a/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
+++ b/debconf/admin/debconfProfile/class_debconfProfileGeneric.inc
@@ -51,8 +51,6 @@ class DebconfEntriesAttribute extends CompositeAttribute
         $this->attributes[$cn] = new StringAttribute($cn, $desc, "debconfentry_$cn", FALSE, $default);
         $this->attributes[$cn]->setInLdap(FALSE);
         $this->attributes[$cn]->setAcl($this->getAcl());
-        //~ 'choices'
-        //~ 'extendedDescription'
       }
     }
     $ldap->cd("ou=questions,".$this->plugin->dn);
@@ -64,9 +62,6 @@ class DebconfEntriesAttribute extends CompositeAttribute
           $this->attributes[$cn]->setValue($entry['value'][0]);
           // set initialValue
           $this->attributes[$cn]->loadValue(NULL);
-          //~ 'flags'
-          //~ 'owners'
-          //~ 'template'
         } else {
           msg_dialog::display(_("Error"),  _("There is no template for this profile"), ERROR_DIALOG);
         }
diff --git a/dns/admin/dns/class_DnsRecordAttribute.inc b/dns/admin/dns/class_DnsRecordAttribute.inc
index b1f2a133aa..5dcc2f1f41 100644
--- a/dns/admin/dns/class_DnsRecordAttribute.inc
+++ b/dns/admin/dns/class_DnsRecordAttribute.inc
@@ -60,7 +60,6 @@ class LocRecordLatLongAttribute extends CompositeAttribute
 
   function writeValues ($values)
   {
-    /* The format is: d1 [m1 [s1]] {"N"|"S"|"E"|"W"} */
     $str = $values['degrees'];
     if ($values['minutes'] != '') {
       $str .= ' '.$values['minutes'];
@@ -81,23 +80,18 @@ class DnsRecordAttribute extends CompositeAttribute
 
   public static $types = [
     'aRecord'     => 'A',
-    //~ 'a6Record'    => 'A6',
     'aAAARecord'  => 'AAAA',
     'aFSDBRecord' => 'AFSDB',
     'certRecord'  => 'CERT',
     'cNAMERecord' => 'CNAME',
     'dSRecord'    => 'DS',
-    //~ 'hInfoRecord' => 'HINFO',
     'KeyRecord'   => 'KEY',
     'kXRecord'    => 'KX',
     'LocRecord'   => 'LOC',
-    //~ 'mDRecord'    => 'MD',
-    //~ 'mInfoRecord' => 'MINFO',
     'mXRecord'    => 'MX',
     'nAPTRRecord' => 'NAPTR',
     'nSRecord'    => 'NS',
     'nSECRecord'  => 'NSEC',
-    //~ 'nXTRecord'   => 'NXT',
     'pTRRecord'   => 'PTR',
     'rRSIGRecord' => 'RRSIG',
     'SigRecord'   => 'SIG',
diff --git a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
index 6da5e6fd9f..86c97f2eb2 100644
--- a/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
+++ b/dovecot/personal/mail/mail-methods/class_mail-methods-dovecot.inc
@@ -86,7 +86,7 @@ class mailMethodDovecot extends mailMethod
 
     /* Mailbox reachable? */
     if ($this->imap_handle === FALSE) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
       if ($cfg['mkdir']) {
         if ($this->argonautCreateFolder()) {
@@ -98,14 +98,14 @@ class mailMethodDovecot extends mailMethod
       if ($this->imap_handle === FALSE) {
         $this->error = imap_last_error();
 
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error (),
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Failed</b> :".imap_last_error(),
           "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
 
         $this->connected = FALSE;
         return FALSE;
       }
     }
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>successful</b>",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>successful</b>",
         "<b>IMAP:</b> ".$cfg['admin']."@".$cfg['connect']);
     $this->connected = TRUE;
 
@@ -157,7 +157,7 @@ class mailMethodDovecot extends mailMethod
       }
     } else {
       $this->error = imap_last_error();
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, imap_last_error(),
           "<b>IMAP: Failed to receive account quota</b>");
     }
   }
@@ -187,7 +187,7 @@ class mailMethodDovecot extends mailMethod
    */
   private function argonautCreateFolder ()
   {
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
       "<b>Attempting to create folder through Argonaut</b> on server :".$this->parent->gosaMailServer);
 
     $servers  = parent::getMailServers();
diff --git a/fai/admin/fai/class_faiManagement.inc b/fai/admin/fai/class_faiManagement.inc
index 9330f8e151..489d44ec55 100644
--- a/fai/admin/fai/class_faiManagement.inc
+++ b/fai/admin/fai/class_faiManagement.inc
@@ -107,7 +107,6 @@ class faiManagement extends simpleManagement
 
   protected $departmentBrowser      = FALSE;
   protected $departmentRootVisible  = FALSE;
-  //~ protected $baseMode               = FALSE;
 
   protected $headpageClass = 'faiListing';
 
diff --git a/fai/admin/fai/class_faiPackage.inc b/fai/admin/fai/class_faiPackage.inc
index 6de04bd43f..650120bca2 100644
--- a/fai/admin/fai/class_faiPackage.inc
+++ b/fai/admin/fai/class_faiPackage.inc
@@ -299,7 +299,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute
           }
         }
       }
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count($packages), "$release done, packages left");
+      @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, count($packages), "$release done, packages left");
     }
 
     if (count($packages) > 0) {
diff --git a/fai/admin/systems/class_faiStartup.inc b/fai/admin/systems/class_faiStartup.inc
index b04fee7320..5f0bb20ec4 100644
--- a/fai/admin/systems/class_faiStartup.inc
+++ b/fai/admin/systems/class_faiStartup.inc
@@ -126,7 +126,7 @@ class faiStartup extends simplePlugin
       }
       return FALSE;
     } else {
-      return parent::foreignKeyCheck ($field, $fieldvalue, $source);
+      return parent::foreignKeyCheck($field, $fieldvalue, $source);
     }
   }
 
diff --git a/fusioninventory/html/collect.php b/fusioninventory/html/collect.php
index 15d0bf8f67..aa3bf5ae5c 100644
--- a/fusioninventory/html/collect.php
+++ b/fusioninventory/html/collect.php
@@ -25,13 +25,13 @@ if (strpos($http_raw_post_data, "<?xml") === 0) {
   $xml = $http_raw_post_data;
 } elseif ($xml = @gzuncompress($http_raw_post_data)) {
   $compressmode = "gzcompress";
-} elseif ($xml = @gzinflate ("\x1f\x8b\x08\x00\x00\x00\x00\x00".$http_raw_post_data)) {
+} elseif ($xml = @gzinflate("\x1f\x8b\x08\x00\x00\x00\x00\x00".$http_raw_post_data)) {
   // ** OCS agent 2.0 Compatibility, but return in gzcompress
   $compressmode = "gzdeflate";
   if (strstr($xml, "<QUERY>PROLOG</QUERY>") && !strstr($xml, "<TOKEN>")) {
     $compressmode = "gzcompress";
   }
-} elseif ($xml = @gzinflate (substr($http_raw_post_data, 2))) {
+} elseif ($xml = @gzinflate(substr($http_raw_post_data, 2))) {
   // ** OCS agent 2.0 Compatibility, but return in gzcompress
   $compressmode = "gzdeflate";
   if (strstr($xml, "<QUERY>PROLOG</QUERY>") && !strstr($xml, "<TOKEN>")) {
diff --git a/mail/personal/mail/class_mail-methods.inc b/mail/personal/mail/class_mail-methods.inc
index 60ab75f186..4e83639b58 100644
--- a/mail/personal/mail/class_mail-methods.inc
+++ b/mail/personal/mail/class_mail-methods.inc
@@ -131,9 +131,9 @@ class mailMethod
     /* Get config value for cyrusUseSlashes */
     if ($config->get_cfg_value('cyrusUseSlashes') == 'TRUE') {
       $this->cyrusUseSlashes = TRUE;
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, 'Enabled', '<b>MAIL:</b> cyrusUseSlashes');
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, 'Enabled', '<b>MAIL:</b> cyrusUseSlashes');
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, 'Disabled', '<b>MAIL:</b> cyrusUseSlashes');
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, 'Disabled', '<b>MAIL:</b> cyrusUseSlashes');
     }
 
     /* Check if the mail account identification attribute
@@ -143,7 +143,7 @@ class mailMethod
       if (in_array($new_uattrib, ['mail','uid'])) {
         $this->uattrib = $new_uattrib;
       } else {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$new_uattrib."</b>",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$new_uattrib."</b>",
           "<b>MAIL:</b> Unsupported 'mailAttribute' in FusionDirectory configuration specified");
         msg_dialog::display(_("Configuration error"),
             sprintf(_("The configured mail attribute '%s' is unsupported!"), $new_uattrib), ERROR_DIALOG);
@@ -158,19 +158,19 @@ class mailMethod
     /* Check if we have an individual user/folder creation syntax */
     $tmp = $config->get_cfg_value('mailUserCreation');
     if (!empty($tmp)) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
           '<b>MAIL:</b> User creation set to');
       $this->user_id  = $tmp;
     }
     $tmp = $config->get_cfg_value('mailFolderCreation');
     if (!empty($tmp)) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
           '<b>MAIL:</b> Shared folder creation set to');
       $this->share_id = $tmp;
     }
     $tmp = $config->get_cfg_value('mailSharedPrefix');
     if (!empty($tmp)) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<i>'.$tmp.'</i>',
           '<b>MAIL:</b> Shared folder prefix set to');
       $this->mailSharedPrefix = $tmp;
     }
@@ -247,8 +247,8 @@ class mailMethod
   public function connect ()
   {
     $this->reset_error();
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class ($this), '<b>MAIL: Connect method</b>');
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->parent->gosaMailServer, '<b>MAIL: Current server</b>');
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class($this), '<b>MAIL: Connect method</b>');
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $this->parent->gosaMailServer, '<b>MAIL: Current server</b>');
 
     $this->connected = TRUE;
     return TRUE;
@@ -269,7 +269,7 @@ class mailMethod
   {
     $this->reset_error();
     if ($this->is_connected()) {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class ($this), '<b>MAIL: Disconnect method</b>');
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, get_class($this), '<b>MAIL: Disconnect method</b>');
       $this->connected = FALSE;
     }
   }
@@ -387,7 +387,7 @@ class mailMethod
     if (preg_match("/%/", $acc_id)) {
       $notr = preg_replace("/^[^%]*/", "", $acc_id);
       if (!empty($notr)) {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Warning</b>",
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>Warning</b>",
             sprintf("<b>MAIL: WARNING unknown pattern in account creation string '%s' near '%s'</b>", $acc_id, $notr));
 
         /* Remove incomprehensible patterns */
@@ -398,7 +398,7 @@ class mailMethod
 
     if ($this->account_id != $acc_id) {
       $this->account_id = $acc_id;
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $acc_id, "<b>MAIL:</b> AccountID generated");
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $acc_id, "<b>MAIL:</b> AccountID generated");
     }
   }
 
@@ -454,7 +454,7 @@ class mailMethod
     if (preg_match("/%/", $acc_id)) {
       $notr = preg_replace("/^[^%]*/", '', $acc_id);
       if (!empty($notr)) {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<b>Warning</b>',
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '<b>Warning</b>',
             sprintf("<b>MAIL: WARNING unknown pattern in account creation string '%s' near '%s'</b>", $acc_id, $notr));
 
         /* Remove incomprehensible patterns */
@@ -493,7 +493,7 @@ class mailMethod
   public function deleteMailbox ()
   {
     $this->reset_error();
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "<b>".$this->account_id."</b>",
         "<b>MAIL: Remove account</b> from server :".$this->parent->gosaMailServer);
 
     return TRUE;
@@ -660,11 +660,11 @@ class mailMethod
     $methods = mailMethod::get_methods();
     foreach ($methods as $class) {
       if ($class::serverMatch($server)) {
-        @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $class, 'Mail method for server "'.$server.'"');
+        @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $class, 'Mail method for server "'.$server.'"');
         return $class;
       }
     }
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '', 'No method found for server "'.$server.'"');
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, '', 'No method found for server "'.$server.'"');
     return 'mailMethod';
   }
 
diff --git a/mail/personal/mail/class_mailAccount.inc b/mail/personal/mail/class_mailAccount.inc
index 3c64bfd75a..7dad873871 100644
--- a/mail/personal/mail/class_mailAccount.inc
+++ b/mail/personal/mail/class_mailAccount.inc
@@ -237,7 +237,7 @@ class mailAccount extends simplePlugin
       mailMethod::resetMailServersCache();
       $this->attributesAccess['gosaMailServer']->setChoices(array_keys(mailMethod::getMailServers()));
     }
-    parent::foreignKeyUpdate ($field, $oldvalue, $newvalue, $source);
+    parent::foreignKeyUpdate($field, $oldvalue, $newvalue, $source);
   }
 
   public function mailServerChanged ()
diff --git a/mail/personal/mail/class_sieve.inc b/mail/personal/mail/class_sieve.inc
index 1064f2ec39..e437643514 100644
--- a/mail/personal/mail/class_sieve.inc
+++ b/mail/personal/mail/class_sieve.inc
@@ -442,7 +442,7 @@ class sieve
           "<b>SIEVE: Script '".$scriptname."' successfully send!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Script couldn't be send!</b>");
       return(FALSE);
     }
@@ -471,7 +471,7 @@ class sieve
           "<b>SIEVE: Set active script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Set active script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -490,7 +490,7 @@ class sieve
           "<b>SIEVE: Get script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Get script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -509,7 +509,7 @@ class sieve
           "<b>SIEVE: Delete script '".$scriptname."' was successful!</b>");
       return(TRUE);
     }else{
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
           "<b>SIEVE: Delete  script '".$scriptname."' failed!</b>");
       return(FALSE);
     }
@@ -521,7 +521,7 @@ class sieve
     fputs($this->fp, "LISTSCRIPTS\r\n");
     sieve::get_response();    //should always return true, even if there are no scripts...
     if(isset($this->found_script) and $this->found_script){
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode($this->response,", "),
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, implode($this->response,", "),
           "<b>SIEVE: List scripts was successful!</b>");
       return true;
     }else{
@@ -557,7 +557,7 @@ class sieve
 
       /* Check if PHP supports TLS encryption for sockets
        */
-      if(function_exists ("stream_socket_enable_crypto")){
+      if(function_exists("stream_socket_enable_crypto")){
 
         /* Initiate TLS and get response
          */
@@ -573,8 +573,8 @@ class sieve
               "<b>SIEVE: TLS couldn't be initiated. </b>");
           return (false);
         }
-        if (! preg_match ("/\\s*OK\\s/i", $linha)) {
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"server returned '".trim ($linha)."' instead of 'OK'",
+        if (! preg_match("/\\s*OK\\s/i", $linha)) {
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,"server returned '".trim ($linha)."' instead of 'OK'",
               "<b>SIEVE: TLS couldn't be initiated. </b>");
           $this->error_raw = "expected an 'OK', but server replied: '" . trim($linha) . "'";
           return (false);
@@ -607,7 +607,7 @@ class sieve
 
         if(sieve::status($this->line) == F_NO){
           $this->error_raw = $this->line;
-          @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
+          @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__,trim($this->error_raw),
               "<b>SIEVE: Authentication for '".$this->user."-".$this->auth_in_use."' failed.</b>");
 
           return false;
diff --git a/posix/personal/posix/class_posixAccount.inc b/posix/personal/posix/class_posixAccount.inc
index 03aa7b3fa4..1a280be135 100644
--- a/posix/personal/posix/class_posixAccount.inc
+++ b/posix/personal/posix/class_posixAccount.inc
@@ -547,20 +547,20 @@ class posixAccount extends simplePlugin
           );
           return $errors;
         } else {
-          @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
+          @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
             sprintf('Primary group "%s" created, using gidNumber "%s".', $tabObject->dn, $this->gidNumber), '');
         }
       } else {
         $attrs = $ldap->fetch();
         $this->gidNumber = $attrs['gidNumber'][0];
-        @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
+        @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
           'Found and used: <i>'.$attrs['dn'].'</i>',
           sprintf('Primary group "%s" exists, gidNumber is "%s".', $this->getUid(), $this->gidNumber));
       }
     } else {
       /* Primary group was selected by user */
       $this->gidNumber = $this->primaryGroup;
-      @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
+      @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
         sprintf('Primary group "%s" for user "%s" manually selected.',
         $this->gidNumber, $this->getUid()), '');
     }
@@ -839,7 +839,7 @@ class posixAccount extends simplePlugin
 
       /* Look for ID map entry */
       $ldap->cd($config->current['BASE']);
-      $ldap->search ("(&(objectClass=sambaUnixIdPool)($attrib=*))", ["$attrib"]);
+      $ldap->search("(&(objectClass=sambaUnixIdPool)($attrib=*))", ["$attrib"]);
 
       /* If it does not exist, create one with these defaults */
       if ($ldap->count() == 0) {
@@ -925,7 +925,7 @@ class posixAccount extends simplePlugin
     } else {
       $oc = 'posixAccount';
     }
-    $ldap->search ("(&(objectClass=$oc)($attrib=*))", ["$attrib"]);
+    $ldap->search("(&(objectClass=$oc)($attrib=*))", ["$attrib"]);
 
     /* Get list of ids */
     while ($attrs = $ldap->fetch()) {
diff --git a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
index 7b4f547232..79e2dbcd46 100644
--- a/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
+++ b/renater-partage/personal/mail/mail-methods/class_mail-methods-renater-partage.inc
@@ -82,8 +82,8 @@ class mailMethodRenaterPartage extends mailMethod
       $post = preg_replace('/%5B[0-9]+%5D/simU', '%5B%5D', $post);
     }
 
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $command, '<b>MAIL: Command</b>');
-    @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities($post, ENT_COMPAT, 'UTF-8'),
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $command, '<b>MAIL: Command</b>');
+    @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, htmlentities($post, ENT_COMPAT, 'UTF-8'),
       '<b>MAIL: Query</b>');
 
     // performs the HTTP(S) POST
@@ -123,7 +123,7 @@ class mailMethodRenaterPartage extends mailMethod
         $response .= trim($row)."\n";
       }
       $response = xml::xml2array($response, FALSE);
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $response, '<b>MAIL: Answer</b>');
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $response, '<b>MAIL: Answer</b>');
 
       if (!isset($response['Response']['status'])) {
         $this->error = _('Partage API answer malformated');
@@ -139,7 +139,7 @@ class mailMethodRenaterPartage extends mailMethod
 
       return $response;
     } else {
-      @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $fp, '<b>MAIL: No Answer</b>');
+      @DEBUG(DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, $fp, '<b>MAIL: No Answer</b>');
       if (!empty($fp)) {
         $this->error = sprintf(_('Unable to connect to %s: %s'), $infos['uri'], implode("\n", $fp));
       } else {
@@ -664,7 +664,7 @@ class mailMethodRenaterPartage extends mailMethod
 
     $ldap = $config->get_ldap_link();
     $ldap->cd($config->current['BASE']);
-    $ldap->search ('(&(objectClass=fdRenaterPartageServer)(fdRenaterPartageServerMailDomain=*))',
+    $ldap->search('(&(objectClass=fdRenaterPartageServer)(fdRenaterPartageServerMailDomain=*))',
                   ['cn', 'fdRenaterPartageServerUri', 'fdRenaterPartageServerMailDomain', 'fdRenaterPartageServerUserAgent', 'fdRenaterPartageServerDeletionType']);
     while ($attrs = $ldap->fetch()) {
       unset($attrs['fdRenaterPartageServerMailDomain']['count']);
diff --git a/repository/admin/repository/class_buildRepository.inc b/repository/admin/repository/class_buildRepository.inc
index 419c9b6839..9df991e42f 100644
--- a/repository/admin/repository/class_buildRepository.inc
+++ b/repository/admin/repository/class_buildRepository.inc
@@ -134,7 +134,7 @@ class buildRepository extends simplePlugin
         }
       }
     } else {
-      return parent::foreignKeyCheck ($field, $fieldvalue, $source);
+      return parent::foreignKeyCheck($field, $fieldvalue, $source);
     }
   }
 
diff --git a/samba/admin/systems/samba/class_sambaSystemTab.inc b/samba/admin/systems/samba/class_sambaSystemTab.inc
index 8ef5170883..309bbe3682 100644
--- a/samba/admin/systems/samba/class_sambaSystemTab.inc
+++ b/samba/admin/systems/samba/class_sambaSystemTab.inc
@@ -45,7 +45,7 @@ class sambaSystemTab extends simplePlugin
         'attrs' => [
           new HiddenAttribute('uid'),
           new HiddenAttribute('sambaSID'),
-          new HiddenAttribute ('homeDirectory', TRUE, '/dev/null'),
+          new HiddenAttribute('homeDirectory', TRUE, '/dev/null'),
           new HiddenAttribute('uidNumber', TRUE, 1000),
           new HiddenAttribute('gidNumber', TRUE, 515),
           new HiddenAttribute('sambaAcctFlags', TRUE, '[W          ]'),
@@ -69,7 +69,7 @@ class sambaSystemTab extends simplePlugin
 
     // Get samba domain and its sid/rid base
     if ($this->sambaSID != '') {
-      $this->SID = preg_replace ('/-[^-]+$/', '', $this->sambaSID);
+      $this->SID = preg_replace('/-[^-]+$/', '', $this->sambaSID);
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
       $ldap->search('(&(objectClass=sambaDomain)(sambaSID='.$this->SID.'))', ['sambaAlgorithmicRidBase','sambaDomainName']);
diff --git a/samba/include/class_smbHash.inc b/samba/include/class_smbHash.inc
index 1980de0fb7..9ddd4d88ed 100644
--- a/samba/include/class_smbHash.inc
+++ b/samba/include/class_smbHash.inc
@@ -361,9 +361,9 @@ class smbHash {
   */
   public function nthash ($password = "")
   {
-    if (function_exists ('mhash') && defined ('MHASH_MD4')) {
+    if (function_exists('mhash') && defined('MHASH_MD4')) {
       return strtoupper(bin2hex(mhash(MHASH_MD4, iconv('UTF-8', 'UTF-16LE', $password))));
-    } elseif (function_exists ('hash')) {
+    } elseif (function_exists('hash')) {
       return strtoupper(hash('md4', iconv('UTF-8', 'UTF-16LE', $password)));
     } else {
       die(_('Your PHP install does not have the mhash() nor the hash function. Cannot do MD4 hashes.'));
diff --git a/samba/personal/samba/class_sambaAccount.inc b/samba/personal/samba/class_sambaAccount.inc
index 74827a0412..d95feb07da 100644
--- a/samba/personal/samba/class_sambaAccount.inc
+++ b/samba/personal/samba/class_sambaAccount.inc
@@ -421,7 +421,7 @@ class sambaAccount extends simplePlugin
 
     // Get samba domain and its sid/rid base
     if ($this->sambaSID != "") {
-      $this->SID = preg_replace ("/-[^-]+$/", "", $this->sambaSID);
+      $this->SID = preg_replace("/-[^-]+$/", "", $this->sambaSID);
       $ldap = $config->get_ldap_link();
       $ldap->cd($config->current['BASE']);
       $ldap->search("(&(objectClass=sambaDomain)(sambaSID=$this->SID))", ["sambaAlgorithmicRidBase","sambaDomainName"]);
diff --git a/samba/personal/samba/class_sambaMungedDial.inc b/samba/personal/samba/class_sambaMungedDial.inc
index 69aa2e674c..13848af896 100644
--- a/samba/personal/samba/class_sambaMungedDial.inc
+++ b/samba/personal/samba/class_sambaMungedDial.inc
@@ -148,7 +148,7 @@ class sambaMungedDial
       return FALSE;
     }
 
-    return preg_match ("/\\\\.+$/", $path);
+    return preg_match("/\\\\.+$/", $path);
   }
 
   /* Encode full MungedDial-String */
@@ -193,7 +193,7 @@ class sambaMungedDial
     $result = "";
 
     /* Encode paramName to UTF-16 */
-    if (function_exists ("recode")) {
+    if (function_exists("recode")) {
       $utfName = recode("ISO8859-15..UTF-16", $paramName);
     } else {
       $utfName = iconv("ISO8859-15", "UTF-16BE", $paramName);
diff --git a/squid/personal/squid/class_proxyAccount.inc b/squid/personal/squid/class_proxyAccount.inc
index 161c67b40c..fda386a8d7 100644
--- a/squid/personal/squid/class_proxyAccount.inc
+++ b/squid/personal/squid/class_proxyAccount.inc
@@ -122,7 +122,7 @@ class proxyAccount extends simplePlugin
             _('Restrict proxy usage by quota'),
             'gosaProxyQuota',
             [
-              new IntAttribute    ('',  _('Up'), 'quota_size', FALSE, 0, FALSE, 21),
+              new IntAttribute('',  _('Up'), 'quota_size', FALSE, 0, FALSE, 21),
               new SelectAttribute('', '', 'quota_unit', FALSE, ['k','m','g'], '', ['KB','MB','GB']),
             ],
             '/^(\\d+)(.)$/',
diff --git a/supann/admin/supannStructures/class_supann.inc b/supann/admin/supannStructures/class_supann.inc
index 792691945d..2b6dfc29b0 100644
--- a/supann/admin/supannStructures/class_supann.inc
+++ b/supann/admin/supannStructures/class_supann.inc
@@ -58,7 +58,7 @@ class supann
       }
       while (($line = fgets($entiteList)) !== FALSE) {
         $line = trim($line);
-        if (!preg_match ('/^#/', $line) && !empty($line)) {
+        if (!preg_match('/^#/', $line) && !empty($line)) {
           $entite_line = preg_split('/;/', $line);
 
           $entity_codes[]   = $prefix.$entite_line[0];
diff --git a/sympa/admin/sympa/class_sympaAlias.inc b/sympa/admin/sympa/class_sympaAlias.inc
index 4ab65e91d2..771da5b5af 100644
--- a/sympa/admin/sympa/class_sympaAlias.inc
+++ b/sympa/admin/sympa/class_sympaAlias.inc
@@ -49,7 +49,7 @@ class sympaAlias extends simplePlugin
         'name'  => _('Sympa list alias'),
         'attrs' => [
           new BaseSelectorAttribute(get_ou('sympaRDN')),
-          new StringAttribute (_('Name'), _('Name to identify this alias'), 'cn', TRUE),
+          new StringAttribute(_('Name'), _('Name to identify this alias'), 'cn', TRUE),
           new TextAreaAttribute(
             _('Description'), _('Description of this alias'),
             'description', FALSE
diff --git a/systems/admin/systems/class_systemManagement.inc b/systems/admin/systems/class_systemManagement.inc
index 26440c058f..9b94b286ec 100644
--- a/systems/admin/systems/class_systemManagement.inc
+++ b/systems/admin/systems/class_systemManagement.inc
@@ -357,7 +357,7 @@ class systemManagement extends simpleManagement
                                'alt="'.$infos['plShortName'].'" title="'.$infos['plShortName'].'" '.
                                'name="listing_edit_service_'.$class.'_'.$row.'"/>';
           } else {
-            @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $infos['plShortName']." ($class)", "No icon for");
+            @DEBUG(DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $infos['plShortName']." ($class)", "No icon for");
           }
         }
       }
diff --git a/user-reminder/config/user-reminder/class_userReminderConfig.inc b/user-reminder/config/user-reminder/class_userReminderConfig.inc
index 3929ae9148..0bdf10be05 100644
--- a/user-reminder/config/user-reminder/class_userReminderConfig.inc
+++ b/user-reminder/config/user-reminder/class_userReminderConfig.inc
@@ -105,7 +105,7 @@ class userReminderConfig extends simplePlugin
             'fdUserReminderAlertSubject', FALSE,
             _('[FusionDirectory] Your account is about to expire')
           ),
-          new TextAreaAttribute (
+          new TextAreaAttribute(
             _('Body (%s are cn, login, and link token)'),
             _('Body of the alert email, sent when the user is about to expire. Use %s for the cn, uid and token.'),
             'fdUserReminderAlertBody', FALSE,
-- 
GitLab


From 3fea3076e6a50247a5c6cf11a8ce1f6c34864cff Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Thu, 21 Jul 2022 16:22:16 +0100
Subject: [PATCH 64/73] :sparkles: Feat(1.3.1) - Plugins - Update CI

Updates CI to take the container from FD instead
of FD-plugin for the code style.
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1b96acdd22..ba23df4abf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,7 +21,7 @@ create_php_lint_rapport_stretch:
 
 # PHP codesniffer
 create_php_code_sniffer_rapport:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:buster
+  image: registry.fusiondirectory.org/fusiondirectory/fd/phpcodesniffer-cli:buster
   stage: codestyle
   only:
     - branches
-- 
GitLab


From 096e96d0fbaa610ef640226ce72a5008318223f6 Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Thu, 21 Jul 2022 17:48:15 +0200
Subject: [PATCH 65/73] :ambulance: fix(ci) add fix for ci

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1a0b87db46..ba23df4abf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,13 +21,13 @@ create_php_lint_rapport_stretch:
 
 # PHP codesniffer
 create_php_code_sniffer_rapport:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd/phpcodesniffer-cli:buster
   stage: codestyle
   only:
     - branches
   script:
     - test -d ../dev-tools/ && rm -Rf ../dev-tools/
-    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools
+    - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
     - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
-- 
GitLab


From 16281434f60383cfc31bf770526851c82bf04b1e Mon Sep 17 00:00:00 2001
From: Thibault Dockx <dockx.thibault@gmail.com>
Date: Thu, 21 Jul 2022 18:00:51 +0100
Subject: [PATCH 66/73] :ambulance: Feat(Plugins) -Fix indentation

Fixing indentation not reported previously.
---
 .../admin/systems/services/spam/class_serviceSpamAssassin.inc | 2 +-
 squid/personal/squid/class_proxyAccount.inc                   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
index 3b0a09bdb5..56041895a8 100644
--- a/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
+++ b/spamassassin/admin/systems/services/spam/class_serviceSpamAssassin.inc
@@ -115,7 +115,7 @@ class serviceSpamAssassin extends simpleService {
                [
                 new StringAttribute(_('Name'), '', 'ruleName'),
                 new TextAreaAttribute(_('Rule'), '', 'ruleDesc'),
-              ],
+               ],
               '/^([^:]*):(.*)$/',
               '%s:%s',
               '', _('Edit spam rule')
diff --git a/squid/personal/squid/class_proxyAccount.inc b/squid/personal/squid/class_proxyAccount.inc
index fda386a8d7..7734713373 100644
--- a/squid/personal/squid/class_proxyAccount.inc
+++ b/squid/personal/squid/class_proxyAccount.inc
@@ -99,7 +99,7 @@ class proxyAccount extends simplePlugin
              [
               new SelectAttribute( '',  _('HourStart'),   'hourstart',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
               new SelectAttribute( ':', _('MinuteStart'), 'minutestart', TRUE, ['00','15','30','45'])
-            ],
+             ],
             // read format (not used)
             '',
             // write format (not used)
@@ -114,7 +114,7 @@ class proxyAccount extends simplePlugin
              [
               new SelectAttribute( _('-'), _('HourStart'), 'hourstop',   TRUE, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], 1, ['01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']),
               new SelectAttribute( _(':'), _('MinuteStop'), 'minutestop', TRUE, ['00','15','30','45'])
-            ],
+             ],
             '',
             ''
           ),
-- 
GitLab


From 0d88dbc514525a8b30c934066a4bebdc57c28aa8 Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Thu, 28 Jul 2022 16:15:20 +0200
Subject: [PATCH 67/73] :ambulance: fix(ci) remove stretch images

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ba23df4abf..eee3482c16 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,9 +8,9 @@ stages:
 
 ## Stage lint
 
-# PHP lint (stretch)
-create_php_lint_rapport_stretch:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/phpcodesniffer-cli:stretch
+# PHP lint
+create_php_lint_rapport:
+  image: registry.fusiondirectory.org/fusiondirectory/fd/phpcodesniffer-cli:buster
   stage: lint
   only:
     - branches
@@ -33,7 +33,7 @@ create_php_code_sniffer_rapport:
 
 # fusiondirectory-update-locale
 fusiondirectory-update-locale:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/transifex-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd/transifex-cli:buster
   stage: transifex
   only:
     - branches
@@ -44,7 +44,7 @@ fusiondirectory-update-locale:
 
 # Update transifex
 update-transifex:
-  image: registry.fusiondirectory.org/fusiondirectory/fd-plugins/transifex-cli:stretch
+  image: registry.fusiondirectory.org/fusiondirectory/fd/transifex-cli:buster
   stage: transifex
   only:
     - /^1.*$/
-- 
GitLab


From 516a35761ea43c68ae7c69e61b7f6d1eac36f130 Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Thu, 8 Sep 2022 14:52:45 +0200
Subject: [PATCH 68/73] :handshake: fix(locales) updates locales for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 alias/locale/af_ZA/fusiondirectory.po         |   2 +-
 alias/locale/ar/fusiondirectory.po            |   2 +-
 alias/locale/ca/fusiondirectory.po            |   2 +-
 alias/locale/cs_CZ/fusiondirectory.po         |   2 +-
 alias/locale/de/fusiondirectory.po            |   2 +-
 alias/locale/el_GR/fusiondirectory.po         |   2 +-
 alias/locale/es/fusiondirectory.po            |   4 +-
 alias/locale/es_CO/fusiondirectory.po         |   4 +-
 alias/locale/es_VE/fusiondirectory.po         |   4 +-
 alias/locale/fa_IR/fusiondirectory.po         |   2 +-
 alias/locale/fi_FI/fusiondirectory.po         |   2 +-
 alias/locale/fr/fusiondirectory.po            |   4 +-
 alias/locale/hu_HU/fusiondirectory.po         |   2 +-
 alias/locale/id/fusiondirectory.po            |   2 +-
 alias/locale/it_IT/fusiondirectory.po         |   8 +-
 alias/locale/ja/fusiondirectory.po            |   2 +-
 alias/locale/ko/fusiondirectory.po            |   2 +-
 alias/locale/lv/fusiondirectory.po            |   2 +-
 alias/locale/nb/fusiondirectory.po            |   2 +-
 alias/locale/nl/fusiondirectory.po            |   2 +-
 alias/locale/pl/fusiondirectory.po            |   2 +-
 alias/locale/pt/fusiondirectory.po            |   4 +-
 alias/locale/pt_BR/fusiondirectory.po         |   4 +-
 alias/locale/ru/fusiondirectory.po            |   2 +-
 alias/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 alias/locale/sv/fusiondirectory.po            |   2 +-
 alias/locale/tr_TR/fusiondirectory.po         |   2 +-
 alias/locale/ug/fusiondirectory.po            |   2 +-
 alias/locale/vi_VN/fusiondirectory.po         |   2 +-
 alias/locale/zh/fusiondirectory.po            |   2 +-
 alias/locale/zh_TW/fusiondirectory.po         |   2 +-
 applications/locale/af_ZA/fusiondirectory.po  |   2 +-
 applications/locale/ar/fusiondirectory.po     |   2 +-
 applications/locale/ca/fusiondirectory.po     |   2 +-
 applications/locale/cs_CZ/fusiondirectory.po  |   2 +-
 applications/locale/de/fusiondirectory.po     |   2 +-
 applications/locale/el_GR/fusiondirectory.po  |   2 +-
 applications/locale/es/fusiondirectory.po     |   4 +-
 applications/locale/es_CO/fusiondirectory.po  |   4 +-
 applications/locale/es_VE/fusiondirectory.po  |   4 +-
 applications/locale/fa_IR/fusiondirectory.po  |   2 +-
 applications/locale/fi_FI/fusiondirectory.po  |   2 +-
 applications/locale/fr/fusiondirectory.po     |   4 +-
 applications/locale/hu_HU/fusiondirectory.po  |   2 +-
 applications/locale/id/fusiondirectory.po     |   2 +-
 applications/locale/it_IT/fusiondirectory.po  |   4 +-
 applications/locale/ja/fusiondirectory.po     |   2 +-
 applications/locale/ko/fusiondirectory.po     |   2 +-
 applications/locale/lv/fusiondirectory.po     |   2 +-
 applications/locale/nb/fusiondirectory.po     |   2 +-
 applications/locale/nl/fusiondirectory.po     |   2 +-
 applications/locale/pl/fusiondirectory.po     |   2 +-
 applications/locale/pt/fusiondirectory.po     |   4 +-
 applications/locale/pt_BR/fusiondirectory.po  |   4 +-
 applications/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 applications/locale/sv/fusiondirectory.po     |   2 +-
 applications/locale/tr_TR/fusiondirectory.po  |   2 +-
 applications/locale/ug/fusiondirectory.po     |   2 +-
 applications/locale/vi_VN/fusiondirectory.po  |   2 +-
 applications/locale/zh/fusiondirectory.po     |   2 +-
 applications/locale/zh_TW/fusiondirectory.po  |   2 +-
 argonaut/locale/af_ZA/fusiondirectory.po      |   2 +-
 argonaut/locale/ar/fusiondirectory.po         |   2 +-
 argonaut/locale/ca/fusiondirectory.po         |   2 +-
 argonaut/locale/cs_CZ/fusiondirectory.po      |   2 +-
 argonaut/locale/de/fusiondirectory.po         |   2 +-
 argonaut/locale/el_GR/fusiondirectory.po      |   2 +-
 argonaut/locale/es/fusiondirectory.po         |   4 +-
 argonaut/locale/es_CO/fusiondirectory.po      |   4 +-
 argonaut/locale/es_VE/fusiondirectory.po      |   4 +-
 argonaut/locale/fa_IR/fusiondirectory.po      |   2 +-
 argonaut/locale/fi_FI/fusiondirectory.po      |   2 +-
 argonaut/locale/fr/fusiondirectory.po         |   4 +-
 argonaut/locale/hu_HU/fusiondirectory.po      |   2 +-
 argonaut/locale/id/fusiondirectory.po         |   2 +-
 argonaut/locale/it_IT/fusiondirectory.po      |   8 +-
 argonaut/locale/ja/fusiondirectory.po         |   2 +-
 argonaut/locale/ko/fusiondirectory.po         |   2 +-
 argonaut/locale/lv/fusiondirectory.po         |   2 +-
 argonaut/locale/nb/fusiondirectory.po         |   2 +-
 argonaut/locale/nl/fusiondirectory.po         |   2 +-
 argonaut/locale/pl/fusiondirectory.po         |   2 +-
 argonaut/locale/pt/fusiondirectory.po         |   4 +-
 argonaut/locale/pt_BR/fusiondirectory.po      |   4 +-
 argonaut/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 argonaut/locale/sv/fusiondirectory.po         |   2 +-
 argonaut/locale/tr_TR/fusiondirectory.po      |  14 +-
 argonaut/locale/ug/fusiondirectory.po         |   2 +-
 argonaut/locale/vi_VN/fusiondirectory.po      |   2 +-
 argonaut/locale/zh/fusiondirectory.po         |   2 +-
 argonaut/locale/zh_TW/fusiondirectory.po      |   2 +-
 audit/locale/af_ZA/fusiondirectory.po         |   2 +-
 audit/locale/ar/fusiondirectory.po            |   2 +-
 audit/locale/ca/fusiondirectory.po            |   2 +-
 audit/locale/cs_CZ/fusiondirectory.po         |   2 +-
 audit/locale/de/fusiondirectory.po            |   2 +-
 audit/locale/el_GR/fusiondirectory.po         |   2 +-
 audit/locale/es/fusiondirectory.po            |   4 +-
 audit/locale/es_CO/fusiondirectory.po         |   4 +-
 audit/locale/es_VE/fusiondirectory.po         |   4 +-
 audit/locale/fa_IR/fusiondirectory.po         |   2 +-
 audit/locale/fi_FI/fusiondirectory.po         |   2 +-
 audit/locale/fr/fusiondirectory.po            |   4 +-
 audit/locale/hu_HU/fusiondirectory.po         |   2 +-
 audit/locale/id/fusiondirectory.po            |   2 +-
 audit/locale/it_IT/fusiondirectory.po         |   8 +-
 audit/locale/ja/fusiondirectory.po            |   2 +-
 audit/locale/ko/fusiondirectory.po            |   2 +-
 audit/locale/lv/fusiondirectory.po            |   2 +-
 audit/locale/nb/fusiondirectory.po            |   2 +-
 audit/locale/nl/fusiondirectory.po            |   2 +-
 audit/locale/pl/fusiondirectory.po            |   2 +-
 audit/locale/pt/fusiondirectory.po            |   4 +-
 audit/locale/pt_BR/fusiondirectory.po         |   4 +-
 audit/locale/ru/fusiondirectory.po            |   2 +-
 audit/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 audit/locale/sv/fusiondirectory.po            |   2 +-
 audit/locale/tr_TR/fusiondirectory.po         |  10 +-
 audit/locale/ug/fusiondirectory.po            |   2 +-
 audit/locale/vi_VN/fusiondirectory.po         |   2 +-
 audit/locale/zh/fusiondirectory.po            |   2 +-
 audit/locale/zh_TW/fusiondirectory.po         |   2 +-
 autofs/locale/af_ZA/fusiondirectory.po        |   2 +-
 autofs/locale/ar/fusiondirectory.po           |   2 +-
 autofs/locale/ca/fusiondirectory.po           |   2 +-
 autofs/locale/cs_CZ/fusiondirectory.po        |   2 +-
 autofs/locale/de/fusiondirectory.po           |   2 +-
 autofs/locale/el_GR/fusiondirectory.po        |   2 +-
 autofs/locale/es/fusiondirectory.po           |   4 +-
 autofs/locale/es_CO/fusiondirectory.po        |   4 +-
 autofs/locale/es_VE/fusiondirectory.po        |   4 +-
 autofs/locale/fa_IR/fusiondirectory.po        |   2 +-
 autofs/locale/fi_FI/fusiondirectory.po        |   2 +-
 autofs/locale/fr/fusiondirectory.po           |   4 +-
 autofs/locale/hu_HU/fusiondirectory.po        |   2 +-
 autofs/locale/id/fusiondirectory.po           |   2 +-
 autofs/locale/it_IT/fusiondirectory.po        |   4 +-
 autofs/locale/ja/fusiondirectory.po           |   2 +-
 autofs/locale/ko/fusiondirectory.po           |   2 +-
 autofs/locale/lv/fusiondirectory.po           |   2 +-
 autofs/locale/nb/fusiondirectory.po           |   2 +-
 autofs/locale/nl/fusiondirectory.po           |   2 +-
 autofs/locale/pl/fusiondirectory.po           |   2 +-
 autofs/locale/pt/fusiondirectory.po           |   4 +-
 autofs/locale/pt_BR/fusiondirectory.po        |   4 +-
 autofs/locale/ru/fusiondirectory.po           |   2 +-
 autofs/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 autofs/locale/sv/fusiondirectory.po           |   2 +-
 autofs/locale/tr_TR/fusiondirectory.po        |   2 +-
 autofs/locale/ug/fusiondirectory.po           |   2 +-
 autofs/locale/vi_VN/fusiondirectory.po        |   2 +-
 autofs/locale/zh/fusiondirectory.po           |   2 +-
 autofs/locale/zh_TW/fusiondirectory.po        |   2 +-
 certificates/locale/af_ZA/fusiondirectory.po  |   2 +-
 certificates/locale/ar/fusiondirectory.po     |   2 +-
 certificates/locale/ca/fusiondirectory.po     |   2 +-
 certificates/locale/cs_CZ/fusiondirectory.po  |   2 +-
 certificates/locale/de/fusiondirectory.po     |   2 +-
 certificates/locale/el_GR/fusiondirectory.po  |   2 +-
 certificates/locale/es/fusiondirectory.po     |   4 +-
 certificates/locale/es_CO/fusiondirectory.po  |   4 +-
 certificates/locale/es_VE/fusiondirectory.po  |   4 +-
 certificates/locale/fa_IR/fusiondirectory.po  |   2 +-
 certificates/locale/fi_FI/fusiondirectory.po  |   2 +-
 certificates/locale/fr/fusiondirectory.po     |   4 +-
 certificates/locale/hu_HU/fusiondirectory.po  |   2 +-
 certificates/locale/id/fusiondirectory.po     |   2 +-
 certificates/locale/it_IT/fusiondirectory.po  |   4 +-
 certificates/locale/ja/fusiondirectory.po     |   2 +-
 certificates/locale/ko/fusiondirectory.po     |   2 +-
 certificates/locale/lv/fusiondirectory.po     |   2 +-
 certificates/locale/nb/fusiondirectory.po     |   2 +-
 certificates/locale/nl/fusiondirectory.po     |   2 +-
 certificates/locale/pl/fusiondirectory.po     |   2 +-
 certificates/locale/pt/fusiondirectory.po     |   4 +-
 certificates/locale/pt_BR/fusiondirectory.po  |   4 +-
 certificates/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 certificates/locale/sv/fusiondirectory.po     |   2 +-
 certificates/locale/tr_TR/fusiondirectory.po  |   8 +-
 certificates/locale/ug/fusiondirectory.po     |   2 +-
 certificates/locale/vi_VN/fusiondirectory.po  |   2 +-
 certificates/locale/zh/fusiondirectory.po     |   2 +-
 certificates/locale/zh_TW/fusiondirectory.po  |   2 +-
 community/locale/af_ZA/fusiondirectory.po     |   2 +-
 community/locale/ar/fusiondirectory.po        |   2 +-
 community/locale/ca/fusiondirectory.po        |   2 +-
 community/locale/cs_CZ/fusiondirectory.po     |   2 +-
 community/locale/de/fusiondirectory.po        |   2 +-
 community/locale/el_GR/fusiondirectory.po     |   2 +-
 community/locale/es/fusiondirectory.po        |   4 +-
 community/locale/es_CO/fusiondirectory.po     |   4 +-
 community/locale/es_VE/fusiondirectory.po     |   4 +-
 community/locale/fa_IR/fusiondirectory.po     |   2 +-
 community/locale/fi_FI/fusiondirectory.po     |   2 +-
 community/locale/fr/fusiondirectory.po        |   4 +-
 community/locale/hu_HU/fusiondirectory.po     |   2 +-
 community/locale/id/fusiondirectory.po        |   2 +-
 community/locale/it_IT/fusiondirectory.po     |   8 +-
 community/locale/ja/fusiondirectory.po        |   2 +-
 community/locale/ko/fusiondirectory.po        |   2 +-
 community/locale/lv/fusiondirectory.po        |   2 +-
 community/locale/nb/fusiondirectory.po        |   2 +-
 community/locale/nl/fusiondirectory.po        |   2 +-
 community/locale/pl/fusiondirectory.po        |   2 +-
 community/locale/pt/fusiondirectory.po        |   4 +-
 community/locale/pt_BR/fusiondirectory.po     |   4 +-
 community/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 community/locale/sv/fusiondirectory.po        |   2 +-
 community/locale/tr_TR/fusiondirectory.po     |   2 +-
 community/locale/ug/fusiondirectory.po        |   2 +-
 community/locale/vi_VN/fusiondirectory.po     |   2 +-
 community/locale/zh/fusiondirectory.po        |   2 +-
 community/locale/zh_TW/fusiondirectory.po     |   2 +-
 cyrus/locale/af_ZA/fusiondirectory.po         |   2 +-
 cyrus/locale/ar/fusiondirectory.po            |   2 +-
 cyrus/locale/ca/fusiondirectory.po            |   2 +-
 cyrus/locale/cs_CZ/fusiondirectory.po         |   2 +-
 cyrus/locale/de/fusiondirectory.po            |   2 +-
 cyrus/locale/el_GR/fusiondirectory.po         |   2 +-
 cyrus/locale/es/fusiondirectory.po            |   4 +-
 cyrus/locale/es_CO/fusiondirectory.po         |   4 +-
 cyrus/locale/es_VE/fusiondirectory.po         |   4 +-
 cyrus/locale/fa_IR/fusiondirectory.po         |   2 +-
 cyrus/locale/fi_FI/fusiondirectory.po         |   2 +-
 cyrus/locale/fr/fusiondirectory.po            |   4 +-
 cyrus/locale/hu_HU/fusiondirectory.po         |   2 +-
 cyrus/locale/id/fusiondirectory.po            |   2 +-
 cyrus/locale/it_IT/fusiondirectory.po         |   4 +-
 cyrus/locale/ja/fusiondirectory.po            |   2 +-
 cyrus/locale/ko/fusiondirectory.po            |   2 +-
 cyrus/locale/lv/fusiondirectory.po            |   2 +-
 cyrus/locale/nb/fusiondirectory.po            |   2 +-
 cyrus/locale/nl/fusiondirectory.po            |   2 +-
 cyrus/locale/pl/fusiondirectory.po            |   2 +-
 cyrus/locale/pt/fusiondirectory.po            |   4 +-
 cyrus/locale/pt_BR/fusiondirectory.po         |   4 +-
 cyrus/locale/ru/fusiondirectory.po            |   2 +-
 cyrus/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 cyrus/locale/sv/fusiondirectory.po            |   2 +-
 cyrus/locale/tr_TR/fusiondirectory.po         |   8 +-
 cyrus/locale/ug/fusiondirectory.po            |   2 +-
 cyrus/locale/vi_VN/fusiondirectory.po         |   2 +-
 cyrus/locale/zh/fusiondirectory.po            |   2 +-
 cyrus/locale/zh_TW/fusiondirectory.po         |   2 +-
 debconf/locale/af_ZA/fusiondirectory.po       |  36 ++---
 debconf/locale/ar/fusiondirectory.po          |  36 ++---
 debconf/locale/ca/fusiondirectory.po          |  36 ++---
 debconf/locale/cs_CZ/fusiondirectory.po       |  36 ++---
 debconf/locale/de/fusiondirectory.po          |  36 ++---
 debconf/locale/el_GR/fusiondirectory.po       |  36 ++---
 debconf/locale/es/fusiondirectory.po          |  38 ++---
 debconf/locale/es_CO/fusiondirectory.po       |  38 ++---
 debconf/locale/es_VE/fusiondirectory.po       |  38 ++---
 debconf/locale/fa_IR/fusiondirectory.po       |  36 ++---
 debconf/locale/fi_FI/fusiondirectory.po       |  36 ++---
 debconf/locale/fr/fusiondirectory.po          |  38 ++---
 debconf/locale/hu_HU/fusiondirectory.po       |  36 ++---
 debconf/locale/id/fusiondirectory.po          |  36 ++---
 debconf/locale/it_IT/fusiondirectory.po       |  38 ++---
 debconf/locale/ja/fusiondirectory.po          |  36 ++---
 debconf/locale/ko/fusiondirectory.po          |  36 ++---
 debconf/locale/lv/fusiondirectory.po          |  36 ++---
 debconf/locale/nb/fusiondirectory.po          |  36 ++---
 debconf/locale/nl/fusiondirectory.po          |  36 ++---
 debconf/locale/pl/fusiondirectory.po          |  36 ++---
 debconf/locale/pt/fusiondirectory.po          |  38 ++---
 debconf/locale/pt_BR/fusiondirectory.po       |  38 ++---
 debconf/locale/ru/fusiondirectory.po          |  36 ++---
 debconf/locale/ru@petr1708/fusiondirectory.po |  36 ++---
 debconf/locale/sv/fusiondirectory.po          |  36 ++---
 debconf/locale/tr_TR/fusiondirectory.po       |  36 ++---
 debconf/locale/ug/fusiondirectory.po          |  36 ++---
 debconf/locale/vi_VN/fusiondirectory.po       |  36 ++---
 debconf/locale/zh/fusiondirectory.po          |  36 ++---
 debconf/locale/zh_TW/fusiondirectory.po       |  36 ++---
 developers/locale/af_ZA/fusiondirectory.po    |   2 +-
 developers/locale/ar/fusiondirectory.po       |   2 +-
 developers/locale/ca/fusiondirectory.po       |   2 +-
 developers/locale/cs_CZ/fusiondirectory.po    |   2 +-
 developers/locale/de/fusiondirectory.po       |   2 +-
 developers/locale/el_GR/fusiondirectory.po    |   2 +-
 developers/locale/es/fusiondirectory.po       |   4 +-
 developers/locale/es_CO/fusiondirectory.po    |   4 +-
 developers/locale/es_VE/fusiondirectory.po    |   4 +-
 developers/locale/fa_IR/fusiondirectory.po    |   2 +-
 developers/locale/fi_FI/fusiondirectory.po    |   2 +-
 developers/locale/fr/fusiondirectory.po       |   4 +-
 developers/locale/hu_HU/fusiondirectory.po    |   2 +-
 developers/locale/id/fusiondirectory.po       |   2 +-
 developers/locale/it_IT/fusiondirectory.po    |   4 +-
 developers/locale/ja/fusiondirectory.po       |   2 +-
 developers/locale/ko/fusiondirectory.po       |   2 +-
 developers/locale/lv/fusiondirectory.po       |   2 +-
 developers/locale/nb/fusiondirectory.po       |   2 +-
 developers/locale/nl/fusiondirectory.po       |   2 +-
 developers/locale/pl/fusiondirectory.po       |   2 +-
 developers/locale/pt/fusiondirectory.po       |   4 +-
 developers/locale/pt_BR/fusiondirectory.po    |   4 +-
 developers/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 developers/locale/sv/fusiondirectory.po       |   2 +-
 developers/locale/tr_TR/fusiondirectory.po    |   2 +-
 developers/locale/ug/fusiondirectory.po       |   2 +-
 developers/locale/vi_VN/fusiondirectory.po    |   2 +-
 developers/locale/zh/fusiondirectory.po       |   2 +-
 developers/locale/zh_TW/fusiondirectory.po    |   2 +-
 dhcp/locale/af_ZA/fusiondirectory.po          |   2 +-
 dhcp/locale/ar/fusiondirectory.po             |   2 +-
 dhcp/locale/ca/fusiondirectory.po             |   2 +-
 dhcp/locale/cs_CZ/fusiondirectory.po          |   2 +-
 dhcp/locale/de/fusiondirectory.po             |   2 +-
 dhcp/locale/el_GR/fusiondirectory.po          |   2 +-
 dhcp/locale/es/fusiondirectory.po             |   4 +-
 dhcp/locale/es_CO/fusiondirectory.po          |   4 +-
 dhcp/locale/es_VE/fusiondirectory.po          |   4 +-
 dhcp/locale/fa_IR/fusiondirectory.po          |   2 +-
 dhcp/locale/fi_FI/fusiondirectory.po          |   2 +-
 dhcp/locale/fr/fusiondirectory.po             |   4 +-
 dhcp/locale/hu_HU/fusiondirectory.po          |   2 +-
 dhcp/locale/id/fusiondirectory.po             |   2 +-
 dhcp/locale/it_IT/fusiondirectory.po          |   8 +-
 dhcp/locale/ja/fusiondirectory.po             |   2 +-
 dhcp/locale/ko/fusiondirectory.po             |   2 +-
 dhcp/locale/lv/fusiondirectory.po             |   2 +-
 dhcp/locale/nb/fusiondirectory.po             |   2 +-
 dhcp/locale/nl/fusiondirectory.po             |   2 +-
 dhcp/locale/pl/fusiondirectory.po             |   2 +-
 dhcp/locale/pt/fusiondirectory.po             |   4 +-
 dhcp/locale/pt_BR/fusiondirectory.po          |   4 +-
 dhcp/locale/ru/fusiondirectory.po             |   2 +-
 dhcp/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 dhcp/locale/sv/fusiondirectory.po             |   2 +-
 dhcp/locale/tr_TR/fusiondirectory.po          |   2 +-
 dhcp/locale/ug/fusiondirectory.po             |   2 +-
 dhcp/locale/vi_VN/fusiondirectory.po          |   2 +-
 dhcp/locale/zh/fusiondirectory.po             |   2 +-
 dhcp/locale/zh_TW/fusiondirectory.po          |   2 +-
 dns/locale/af_ZA/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/ar/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/ca/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/cs_CZ/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/de/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/el_GR/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/es/fusiondirectory.po              | 128 ++++++++---------
 dns/locale/es_CO/fusiondirectory.po           | 128 ++++++++---------
 dns/locale/es_VE/fusiondirectory.po           | 128 ++++++++---------
 dns/locale/fa_IR/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/fi_FI/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/fr/fusiondirectory.po              | 128 ++++++++---------
 dns/locale/hu_HU/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/id/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/it_IT/fusiondirectory.po           | 132 ++++++++---------
 dns/locale/ja/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/ko/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/lv/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/nb/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/nl/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/pl/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/pt/fusiondirectory.po              | 128 ++++++++---------
 dns/locale/pt_BR/fusiondirectory.po           | 128 ++++++++---------
 dns/locale/ru/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/ru@petr1708/fusiondirectory.po     | 126 ++++++++--------
 dns/locale/sv/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/tr_TR/fusiondirectory.po           | 136 +++++++++---------
 dns/locale/ug/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/vi_VN/fusiondirectory.po           | 126 ++++++++--------
 dns/locale/zh/fusiondirectory.po              | 126 ++++++++--------
 dns/locale/zh_TW/fusiondirectory.po           | 126 ++++++++--------
 dovecot/locale/af_ZA/fusiondirectory.po       |   2 +-
 dovecot/locale/ar/fusiondirectory.po          |   2 +-
 dovecot/locale/ca/fusiondirectory.po          |   2 +-
 dovecot/locale/cs_CZ/fusiondirectory.po       |   2 +-
 dovecot/locale/de/fusiondirectory.po          |   2 +-
 dovecot/locale/el_GR/fusiondirectory.po       |   2 +-
 dovecot/locale/es/fusiondirectory.po          |   4 +-
 dovecot/locale/es_CO/fusiondirectory.po       |   4 +-
 dovecot/locale/es_VE/fusiondirectory.po       |   4 +-
 dovecot/locale/fa_IR/fusiondirectory.po       |   2 +-
 dovecot/locale/fi_FI/fusiondirectory.po       |   2 +-
 dovecot/locale/fr/fusiondirectory.po          |   4 +-
 dovecot/locale/hu_HU/fusiondirectory.po       |   2 +-
 dovecot/locale/id/fusiondirectory.po          |   2 +-
 dovecot/locale/it_IT/fusiondirectory.po       |   4 +-
 dovecot/locale/ja/fusiondirectory.po          |   2 +-
 dovecot/locale/ko/fusiondirectory.po          |   2 +-
 dovecot/locale/lv/fusiondirectory.po          |   2 +-
 dovecot/locale/nb/fusiondirectory.po          |   2 +-
 dovecot/locale/nl/fusiondirectory.po          |   2 +-
 dovecot/locale/pl/fusiondirectory.po          |   2 +-
 dovecot/locale/pt/fusiondirectory.po          |   4 +-
 dovecot/locale/pt_BR/fusiondirectory.po       |   4 +-
 dovecot/locale/ru/fusiondirectory.po          |   2 +-
 dovecot/locale/ru@petr1708/fusiondirectory.po |   2 +-
 dovecot/locale/sv/fusiondirectory.po          |   2 +-
 dovecot/locale/tr_TR/fusiondirectory.po       |   8 +-
 dovecot/locale/ug/fusiondirectory.po          |   2 +-
 dovecot/locale/vi_VN/fusiondirectory.po       |   2 +-
 dovecot/locale/zh/fusiondirectory.po          |   2 +-
 dovecot/locale/zh_TW/fusiondirectory.po       |   2 +-
 dsa/locale/af_ZA/fusiondirectory.po           |   2 +-
 dsa/locale/ar/fusiondirectory.po              |   2 +-
 dsa/locale/ca/fusiondirectory.po              |   2 +-
 dsa/locale/cs_CZ/fusiondirectory.po           |   2 +-
 dsa/locale/de/fusiondirectory.po              |   2 +-
 dsa/locale/el_GR/fusiondirectory.po           |   2 +-
 dsa/locale/es/fusiondirectory.po              |   4 +-
 dsa/locale/es_CO/fusiondirectory.po           |   4 +-
 dsa/locale/es_VE/fusiondirectory.po           |   4 +-
 dsa/locale/fa_IR/fusiondirectory.po           |   2 +-
 dsa/locale/fi_FI/fusiondirectory.po           |   2 +-
 dsa/locale/fr/fusiondirectory.po              |   4 +-
 dsa/locale/hu_HU/fusiondirectory.po           |   2 +-
 dsa/locale/id/fusiondirectory.po              |   2 +-
 dsa/locale/it_IT/fusiondirectory.po           |   4 +-
 dsa/locale/ja/fusiondirectory.po              |   2 +-
 dsa/locale/ko/fusiondirectory.po              |   2 +-
 dsa/locale/lv/fusiondirectory.po              |   2 +-
 dsa/locale/nb/fusiondirectory.po              |   2 +-
 dsa/locale/nl/fusiondirectory.po              |   2 +-
 dsa/locale/pl/fusiondirectory.po              |   2 +-
 dsa/locale/pt/fusiondirectory.po              |   4 +-
 dsa/locale/pt_BR/fusiondirectory.po           |   4 +-
 dsa/locale/ru/fusiondirectory.po              |   2 +-
 dsa/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 dsa/locale/sv/fusiondirectory.po              |   2 +-
 dsa/locale/tr_TR/fusiondirectory.po           |   8 +-
 dsa/locale/ug/fusiondirectory.po              |   2 +-
 dsa/locale/vi_VN/fusiondirectory.po           |   2 +-
 dsa/locale/zh/fusiondirectory.po              |   2 +-
 dsa/locale/zh_TW/fusiondirectory.po           |   2 +-
 ejbca/locale/af_ZA/fusiondirectory.po         |   2 +-
 ejbca/locale/ar/fusiondirectory.po            |   2 +-
 ejbca/locale/ca/fusiondirectory.po            |   2 +-
 ejbca/locale/cs_CZ/fusiondirectory.po         |   2 +-
 ejbca/locale/de/fusiondirectory.po            |   2 +-
 ejbca/locale/el_GR/fusiondirectory.po         |   2 +-
 ejbca/locale/es/fusiondirectory.po            |   4 +-
 ejbca/locale/es_CO/fusiondirectory.po         |   4 +-
 ejbca/locale/es_VE/fusiondirectory.po         |   4 +-
 ejbca/locale/fa_IR/fusiondirectory.po         |   2 +-
 ejbca/locale/fi_FI/fusiondirectory.po         |   2 +-
 ejbca/locale/fr/fusiondirectory.po            |   4 +-
 ejbca/locale/hu_HU/fusiondirectory.po         |   2 +-
 ejbca/locale/id/fusiondirectory.po            |   2 +-
 ejbca/locale/it_IT/fusiondirectory.po         |   4 +-
 ejbca/locale/ja/fusiondirectory.po            |   2 +-
 ejbca/locale/ko/fusiondirectory.po            |   2 +-
 ejbca/locale/lv/fusiondirectory.po            |   2 +-
 ejbca/locale/nb/fusiondirectory.po            |   2 +-
 ejbca/locale/nl/fusiondirectory.po            |   2 +-
 ejbca/locale/pl/fusiondirectory.po            |   2 +-
 ejbca/locale/pt/fusiondirectory.po            |   4 +-
 ejbca/locale/pt_BR/fusiondirectory.po         |   4 +-
 ejbca/locale/ru/fusiondirectory.po            |   2 +-
 ejbca/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 ejbca/locale/sv/fusiondirectory.po            |   2 +-
 ejbca/locale/tr_TR/fusiondirectory.po         |   8 +-
 ejbca/locale/ug/fusiondirectory.po            |   2 +-
 ejbca/locale/vi_VN/fusiondirectory.po         |   2 +-
 ejbca/locale/zh/fusiondirectory.po            |   2 +-
 ejbca/locale/zh_TW/fusiondirectory.po         |   2 +-
 fai/locale/af_ZA/fusiondirectory.po           |  10 +-
 fai/locale/ar/fusiondirectory.po              |  10 +-
 fai/locale/ca/fusiondirectory.po              |  10 +-
 fai/locale/cs_CZ/fusiondirectory.po           |  10 +-
 fai/locale/de/fusiondirectory.po              |  10 +-
 fai/locale/el_GR/fusiondirectory.po           |  10 +-
 fai/locale/es/fusiondirectory.po              |  12 +-
 fai/locale/es_CO/fusiondirectory.po           |  12 +-
 fai/locale/es_VE/fusiondirectory.po           |  12 +-
 fai/locale/fa_IR/fusiondirectory.po           |  10 +-
 fai/locale/fi_FI/fusiondirectory.po           |  10 +-
 fai/locale/fr/fusiondirectory.po              |  12 +-
 fai/locale/hu_HU/fusiondirectory.po           |  10 +-
 fai/locale/id/fusiondirectory.po              |  10 +-
 fai/locale/it_IT/fusiondirectory.po           |  16 +--
 fai/locale/ja/fusiondirectory.po              |  10 +-
 fai/locale/ko/fusiondirectory.po              |  10 +-
 fai/locale/lv/fusiondirectory.po              |  10 +-
 fai/locale/nb/fusiondirectory.po              |  10 +-
 fai/locale/nl/fusiondirectory.po              |  10 +-
 fai/locale/pl/fusiondirectory.po              |  10 +-
 fai/locale/pt/fusiondirectory.po              |  12 +-
 fai/locale/pt_BR/fusiondirectory.po           |  12 +-
 fai/locale/ru/fusiondirectory.po              |  10 +-
 fai/locale/ru@petr1708/fusiondirectory.po     |  10 +-
 fai/locale/sv/fusiondirectory.po              |  10 +-
 fai/locale/tr_TR/fusiondirectory.po           |  24 ++--
 fai/locale/ug/fusiondirectory.po              |  10 +-
 fai/locale/vi_VN/fusiondirectory.po           |  10 +-
 fai/locale/zh/fusiondirectory.po              |  10 +-
 fai/locale/zh_TW/fusiondirectory.po           |  10 +-
 freeradius/locale/af_ZA/fusiondirectory.po    |   2 +-
 freeradius/locale/ar/fusiondirectory.po       |   2 +-
 freeradius/locale/ca/fusiondirectory.po       |   2 +-
 freeradius/locale/cs_CZ/fusiondirectory.po    |   2 +-
 freeradius/locale/de/fusiondirectory.po       |   2 +-
 freeradius/locale/el_GR/fusiondirectory.po    |   2 +-
 freeradius/locale/es/fusiondirectory.po       |   4 +-
 freeradius/locale/es_CO/fusiondirectory.po    |   4 +-
 freeradius/locale/es_VE/fusiondirectory.po    |   4 +-
 freeradius/locale/fa_IR/fusiondirectory.po    |   2 +-
 freeradius/locale/fi_FI/fusiondirectory.po    |   2 +-
 freeradius/locale/fr/fusiondirectory.po       |   4 +-
 freeradius/locale/hu_HU/fusiondirectory.po    |   2 +-
 freeradius/locale/id/fusiondirectory.po       |   2 +-
 freeradius/locale/it_IT/fusiondirectory.po    |   4 +-
 freeradius/locale/ja/fusiondirectory.po       |   2 +-
 freeradius/locale/ko/fusiondirectory.po       |   2 +-
 freeradius/locale/lv/fusiondirectory.po       |   2 +-
 freeradius/locale/nb/fusiondirectory.po       |   2 +-
 freeradius/locale/nl/fusiondirectory.po       |   2 +-
 freeradius/locale/pl/fusiondirectory.po       |   2 +-
 freeradius/locale/pt/fusiondirectory.po       |   4 +-
 freeradius/locale/pt_BR/fusiondirectory.po    |   4 +-
 freeradius/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 freeradius/locale/sv/fusiondirectory.po       |   2 +-
 freeradius/locale/tr_TR/fusiondirectory.po    |   2 +-
 freeradius/locale/ug/fusiondirectory.po       |   2 +-
 freeradius/locale/vi_VN/fusiondirectory.po    |   2 +-
 freeradius/locale/zh/fusiondirectory.po       |   2 +-
 freeradius/locale/zh_TW/fusiondirectory.po    |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 fusioninventory/locale/ar/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 fusioninventory/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 fusioninventory/locale/es/fusiondirectory.po  |   4 +-
 .../locale/es_CO/fusiondirectory.po           |   4 +-
 .../locale/es_VE/fusiondirectory.po           |   4 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 fusioninventory/locale/fr/fusiondirectory.po  |   4 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 fusioninventory/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   4 +-
 fusioninventory/locale/ja/fusiondirectory.po  |   2 +-
 fusioninventory/locale/ko/fusiondirectory.po  |   2 +-
 fusioninventory/locale/lv/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nb/fusiondirectory.po  |   2 +-
 fusioninventory/locale/nl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pl/fusiondirectory.po  |   2 +-
 fusioninventory/locale/pt/fusiondirectory.po  |   4 +-
 .../locale/pt_BR/fusiondirectory.po           |   4 +-
 fusioninventory/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 fusioninventory/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |  12 +-
 fusioninventory/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 fusioninventory/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 gpg/locale/af_ZA/fusiondirectory.po           |   2 +-
 gpg/locale/ar/fusiondirectory.po              |   2 +-
 gpg/locale/ca/fusiondirectory.po              |   2 +-
 gpg/locale/cs_CZ/fusiondirectory.po           |   2 +-
 gpg/locale/de/fusiondirectory.po              |   2 +-
 gpg/locale/el_GR/fusiondirectory.po           |   2 +-
 gpg/locale/es/fusiondirectory.po              |   4 +-
 gpg/locale/es_CO/fusiondirectory.po           |   4 +-
 gpg/locale/es_VE/fusiondirectory.po           |   4 +-
 gpg/locale/fa_IR/fusiondirectory.po           |   2 +-
 gpg/locale/fi_FI/fusiondirectory.po           |   2 +-
 gpg/locale/fr/fusiondirectory.po              |   4 +-
 gpg/locale/hu_HU/fusiondirectory.po           |   2 +-
 gpg/locale/id/fusiondirectory.po              |   2 +-
 gpg/locale/it_IT/fusiondirectory.po           |   4 +-
 gpg/locale/ja/fusiondirectory.po              |   2 +-
 gpg/locale/ko/fusiondirectory.po              |   2 +-
 gpg/locale/lv/fusiondirectory.po              |   2 +-
 gpg/locale/nb/fusiondirectory.po              |   2 +-
 gpg/locale/nl/fusiondirectory.po              |   2 +-
 gpg/locale/pl/fusiondirectory.po              |   2 +-
 gpg/locale/pt/fusiondirectory.po              |   4 +-
 gpg/locale/pt_BR/fusiondirectory.po           |   4 +-
 gpg/locale/ru/fusiondirectory.po              |   2 +-
 gpg/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 gpg/locale/sv/fusiondirectory.po              |   2 +-
 gpg/locale/tr_TR/fusiondirectory.po           |   8 +-
 gpg/locale/ug/fusiondirectory.po              |   2 +-
 gpg/locale/vi_VN/fusiondirectory.po           |   2 +-
 gpg/locale/zh/fusiondirectory.po              |   2 +-
 gpg/locale/zh_TW/fusiondirectory.po           |   2 +-
 ipmi/locale/af_ZA/fusiondirectory.po          |   2 +-
 ipmi/locale/ar/fusiondirectory.po             |   2 +-
 ipmi/locale/ca/fusiondirectory.po             |   2 +-
 ipmi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 ipmi/locale/de/fusiondirectory.po             |   2 +-
 ipmi/locale/el_GR/fusiondirectory.po          |   2 +-
 ipmi/locale/es/fusiondirectory.po             |   4 +-
 ipmi/locale/es_CO/fusiondirectory.po          |   4 +-
 ipmi/locale/es_VE/fusiondirectory.po          |   4 +-
 ipmi/locale/fa_IR/fusiondirectory.po          |   2 +-
 ipmi/locale/fi_FI/fusiondirectory.po          |   2 +-
 ipmi/locale/fr/fusiondirectory.po             |   4 +-
 ipmi/locale/hu_HU/fusiondirectory.po          |   2 +-
 ipmi/locale/id/fusiondirectory.po             |   2 +-
 ipmi/locale/it_IT/fusiondirectory.po          |   4 +-
 ipmi/locale/ja/fusiondirectory.po             |   2 +-
 ipmi/locale/ko/fusiondirectory.po             |   2 +-
 ipmi/locale/lv/fusiondirectory.po             |   2 +-
 ipmi/locale/nb/fusiondirectory.po             |   2 +-
 ipmi/locale/nl/fusiondirectory.po             |   2 +-
 ipmi/locale/pl/fusiondirectory.po             |   2 +-
 ipmi/locale/pt/fusiondirectory.po             |   4 +-
 ipmi/locale/pt_BR/fusiondirectory.po          |   4 +-
 ipmi/locale/ru/fusiondirectory.po             |   2 +-
 ipmi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 ipmi/locale/sv/fusiondirectory.po             |   2 +-
 ipmi/locale/tr_TR/fusiondirectory.po          |   2 +-
 ipmi/locale/ug/fusiondirectory.po             |   2 +-
 ipmi/locale/vi_VN/fusiondirectory.po          |   2 +-
 ipmi/locale/zh/fusiondirectory.po             |   2 +-
 ipmi/locale/zh_TW/fusiondirectory.po          |   2 +-
 ldapdump/locale/af_ZA/fusiondirectory.po      |   2 +-
 ldapdump/locale/ar/fusiondirectory.po         |   2 +-
 ldapdump/locale/ca/fusiondirectory.po         |   2 +-
 ldapdump/locale/cs_CZ/fusiondirectory.po      |   2 +-
 ldapdump/locale/de/fusiondirectory.po         |   2 +-
 ldapdump/locale/el_GR/fusiondirectory.po      |   2 +-
 ldapdump/locale/es/fusiondirectory.po         |   4 +-
 ldapdump/locale/es_CO/fusiondirectory.po      |   4 +-
 ldapdump/locale/es_VE/fusiondirectory.po      |   4 +-
 ldapdump/locale/fa_IR/fusiondirectory.po      |   2 +-
 ldapdump/locale/fi_FI/fusiondirectory.po      |   2 +-
 ldapdump/locale/fr/fusiondirectory.po         |   4 +-
 ldapdump/locale/hu_HU/fusiondirectory.po      |   2 +-
 ldapdump/locale/id/fusiondirectory.po         |   2 +-
 ldapdump/locale/it_IT/fusiondirectory.po      |   4 +-
 ldapdump/locale/ja/fusiondirectory.po         |   2 +-
 ldapdump/locale/ko/fusiondirectory.po         |   2 +-
 ldapdump/locale/lv/fusiondirectory.po         |   2 +-
 ldapdump/locale/nb/fusiondirectory.po         |   2 +-
 ldapdump/locale/nl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pl/fusiondirectory.po         |   2 +-
 ldapdump/locale/pt/fusiondirectory.po         |   4 +-
 ldapdump/locale/pt_BR/fusiondirectory.po      |   4 +-
 ldapdump/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapdump/locale/sv/fusiondirectory.po         |   2 +-
 ldapdump/locale/tr_TR/fusiondirectory.po      |   2 +-
 ldapdump/locale/ug/fusiondirectory.po         |   2 +-
 ldapdump/locale/vi_VN/fusiondirectory.po      |   2 +-
 ldapdump/locale/zh/fusiondirectory.po         |   2 +-
 ldapdump/locale/zh_TW/fusiondirectory.po      |   2 +-
 ldapmanager/locale/af_ZA/fusiondirectory.po   |   2 +-
 ldapmanager/locale/ar/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ca/fusiondirectory.po      |   2 +-
 ldapmanager/locale/cs_CZ/fusiondirectory.po   |   2 +-
 ldapmanager/locale/de/fusiondirectory.po      |   2 +-
 ldapmanager/locale/el_GR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/es/fusiondirectory.po      |   4 +-
 ldapmanager/locale/es_CO/fusiondirectory.po   |   4 +-
 ldapmanager/locale/es_VE/fusiondirectory.po   |   4 +-
 ldapmanager/locale/fa_IR/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fi_FI/fusiondirectory.po   |   2 +-
 ldapmanager/locale/fr/fusiondirectory.po      |   4 +-
 ldapmanager/locale/hu_HU/fusiondirectory.po   |   2 +-
 ldapmanager/locale/id/fusiondirectory.po      |   2 +-
 ldapmanager/locale/it_IT/fusiondirectory.po   |   8 +-
 ldapmanager/locale/ja/fusiondirectory.po      |   2 +-
 ldapmanager/locale/ko/fusiondirectory.po      |   2 +-
 ldapmanager/locale/lv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nb/fusiondirectory.po      |   2 +-
 ldapmanager/locale/nl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pl/fusiondirectory.po      |   2 +-
 ldapmanager/locale/pt/fusiondirectory.po      |   4 +-
 ldapmanager/locale/pt_BR/fusiondirectory.po   |   4 +-
 ldapmanager/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ldapmanager/locale/sv/fusiondirectory.po      |   2 +-
 ldapmanager/locale/tr_TR/fusiondirectory.po   |   8 +-
 ldapmanager/locale/ug/fusiondirectory.po      |   2 +-
 ldapmanager/locale/vi_VN/fusiondirectory.po   |   2 +-
 ldapmanager/locale/zh/fusiondirectory.po      |   2 +-
 ldapmanager/locale/zh_TW/fusiondirectory.po   |   2 +-
 mail/locale/af_ZA/fusiondirectory.po          |   2 +-
 mail/locale/ar/fusiondirectory.po             |   2 +-
 mail/locale/ca/fusiondirectory.po             |   2 +-
 mail/locale/cs_CZ/fusiondirectory.po          |   2 +-
 mail/locale/de/fusiondirectory.po             |   2 +-
 mail/locale/el_GR/fusiondirectory.po          |   2 +-
 mail/locale/es/fusiondirectory.po             |   4 +-
 mail/locale/es_CO/fusiondirectory.po          |   4 +-
 mail/locale/es_VE/fusiondirectory.po          |   4 +-
 mail/locale/fa_IR/fusiondirectory.po          |   2 +-
 mail/locale/fi_FI/fusiondirectory.po          |   2 +-
 mail/locale/fr/fusiondirectory.po             |   4 +-
 mail/locale/hu_HU/fusiondirectory.po          |   2 +-
 mail/locale/id/fusiondirectory.po             |   2 +-
 mail/locale/it_IT/fusiondirectory.po          |   4 +-
 mail/locale/ja/fusiondirectory.po             |   2 +-
 mail/locale/ko/fusiondirectory.po             |   2 +-
 mail/locale/lv/fusiondirectory.po             |   2 +-
 mail/locale/nb/fusiondirectory.po             |   2 +-
 mail/locale/nl/fusiondirectory.po             |   2 +-
 mail/locale/pl/fusiondirectory.po             |   2 +-
 mail/locale/pt/fusiondirectory.po             |   4 +-
 mail/locale/pt_BR/fusiondirectory.po          |   4 +-
 mail/locale/ru/fusiondirectory.po             |   2 +-
 mail/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 mail/locale/sv/fusiondirectory.po             |   2 +-
 mail/locale/tr_TR/fusiondirectory.po          |   2 +-
 mail/locale/ug/fusiondirectory.po             |   2 +-
 mail/locale/vi_VN/fusiondirectory.po          |   2 +-
 mail/locale/zh/fusiondirectory.po             |   2 +-
 mail/locale/zh_TW/fusiondirectory.po          |   2 +-
 mixedgroups/locale/af_ZA/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ar/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ca/fusiondirectory.po      |   2 +-
 mixedgroups/locale/cs_CZ/fusiondirectory.po   |   2 +-
 mixedgroups/locale/de/fusiondirectory.po      |   2 +-
 mixedgroups/locale/el_GR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/es/fusiondirectory.po      |   4 +-
 mixedgroups/locale/es_CO/fusiondirectory.po   |   4 +-
 mixedgroups/locale/es_VE/fusiondirectory.po   |   4 +-
 mixedgroups/locale/fa_IR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fi_FI/fusiondirectory.po   |   2 +-
 mixedgroups/locale/fr/fusiondirectory.po      |   4 +-
 mixedgroups/locale/hu_HU/fusiondirectory.po   |   2 +-
 mixedgroups/locale/id/fusiondirectory.po      |   2 +-
 mixedgroups/locale/it_IT/fusiondirectory.po   |   4 +-
 mixedgroups/locale/ja/fusiondirectory.po      |   2 +-
 mixedgroups/locale/ko/fusiondirectory.po      |   2 +-
 mixedgroups/locale/lv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nb/fusiondirectory.po      |   2 +-
 mixedgroups/locale/nl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pl/fusiondirectory.po      |   2 +-
 mixedgroups/locale/pt/fusiondirectory.po      |   4 +-
 mixedgroups/locale/pt_BR/fusiondirectory.po   |   4 +-
 mixedgroups/locale/ru/fusiondirectory.po      |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 mixedgroups/locale/sv/fusiondirectory.po      |   2 +-
 mixedgroups/locale/tr_TR/fusiondirectory.po   |   2 +-
 mixedgroups/locale/ug/fusiondirectory.po      |   2 +-
 mixedgroups/locale/vi_VN/fusiondirectory.po   |   2 +-
 mixedgroups/locale/zh/fusiondirectory.po      |   2 +-
 mixedgroups/locale/zh_TW/fusiondirectory.po   |   2 +-
 nagios/locale/af_ZA/fusiondirectory.po        |   2 +-
 nagios/locale/ar/fusiondirectory.po           |   2 +-
 nagios/locale/ca/fusiondirectory.po           |   2 +-
 nagios/locale/cs_CZ/fusiondirectory.po        |   2 +-
 nagios/locale/de/fusiondirectory.po           |   2 +-
 nagios/locale/el_GR/fusiondirectory.po        |   2 +-
 nagios/locale/es/fusiondirectory.po           |   4 +-
 nagios/locale/es_CO/fusiondirectory.po        |   4 +-
 nagios/locale/es_VE/fusiondirectory.po        |   4 +-
 nagios/locale/fa_IR/fusiondirectory.po        |   2 +-
 nagios/locale/fi_FI/fusiondirectory.po        |   2 +-
 nagios/locale/fr/fusiondirectory.po           |   4 +-
 nagios/locale/hu_HU/fusiondirectory.po        |   2 +-
 nagios/locale/id/fusiondirectory.po           |   2 +-
 nagios/locale/it_IT/fusiondirectory.po        |   4 +-
 nagios/locale/ja/fusiondirectory.po           |   2 +-
 nagios/locale/ko/fusiondirectory.po           |   2 +-
 nagios/locale/lv/fusiondirectory.po           |   2 +-
 nagios/locale/nb/fusiondirectory.po           |   2 +-
 nagios/locale/nl/fusiondirectory.po           |   2 +-
 nagios/locale/pl/fusiondirectory.po           |   2 +-
 nagios/locale/pt/fusiondirectory.po           |   4 +-
 nagios/locale/pt_BR/fusiondirectory.po        |   4 +-
 nagios/locale/ru/fusiondirectory.po           |   2 +-
 nagios/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 nagios/locale/sv/fusiondirectory.po           |   2 +-
 nagios/locale/tr_TR/fusiondirectory.po        |   2 +-
 nagios/locale/ug/fusiondirectory.po           |   2 +-
 nagios/locale/vi_VN/fusiondirectory.po        |   2 +-
 nagios/locale/zh/fusiondirectory.po           |   2 +-
 nagios/locale/zh_TW/fusiondirectory.po        |   2 +-
 netgroups/locale/af_ZA/fusiondirectory.po     |   2 +-
 netgroups/locale/ar/fusiondirectory.po        |   2 +-
 netgroups/locale/ca/fusiondirectory.po        |   2 +-
 netgroups/locale/cs_CZ/fusiondirectory.po     |   2 +-
 netgroups/locale/de/fusiondirectory.po        |   2 +-
 netgroups/locale/el_GR/fusiondirectory.po     |   2 +-
 netgroups/locale/es/fusiondirectory.po        |   4 +-
 netgroups/locale/es_CO/fusiondirectory.po     |   4 +-
 netgroups/locale/es_VE/fusiondirectory.po     |   4 +-
 netgroups/locale/fa_IR/fusiondirectory.po     |   2 +-
 netgroups/locale/fi_FI/fusiondirectory.po     |   2 +-
 netgroups/locale/fr/fusiondirectory.po        |   4 +-
 netgroups/locale/hu_HU/fusiondirectory.po     |   2 +-
 netgroups/locale/id/fusiondirectory.po        |   2 +-
 netgroups/locale/it_IT/fusiondirectory.po     |   4 +-
 netgroups/locale/ja/fusiondirectory.po        |   2 +-
 netgroups/locale/ko/fusiondirectory.po        |   2 +-
 netgroups/locale/lv/fusiondirectory.po        |   2 +-
 netgroups/locale/nb/fusiondirectory.po        |   2 +-
 netgroups/locale/nl/fusiondirectory.po        |   2 +-
 netgroups/locale/pl/fusiondirectory.po        |   2 +-
 netgroups/locale/pt/fusiondirectory.po        |   4 +-
 netgroups/locale/pt_BR/fusiondirectory.po     |   4 +-
 netgroups/locale/ru/fusiondirectory.po        |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 netgroups/locale/sv/fusiondirectory.po        |   2 +-
 netgroups/locale/tr_TR/fusiondirectory.po     |   2 +-
 netgroups/locale/ug/fusiondirectory.po        |   2 +-
 netgroups/locale/vi_VN/fusiondirectory.po     |   2 +-
 netgroups/locale/zh/fusiondirectory.po        |   2 +-
 netgroups/locale/zh_TW/fusiondirectory.po     |   2 +-
 newsletter/locale/af_ZA/fusiondirectory.po    |   2 +-
 newsletter/locale/ar/fusiondirectory.po       |   2 +-
 newsletter/locale/ca/fusiondirectory.po       |   2 +-
 newsletter/locale/cs_CZ/fusiondirectory.po    |   2 +-
 newsletter/locale/de/fusiondirectory.po       |   2 +-
 newsletter/locale/el_GR/fusiondirectory.po    |   2 +-
 newsletter/locale/es/fusiondirectory.po       |   4 +-
 newsletter/locale/es_CO/fusiondirectory.po    |   4 +-
 newsletter/locale/es_VE/fusiondirectory.po    |   4 +-
 newsletter/locale/fa_IR/fusiondirectory.po    |   2 +-
 newsletter/locale/fi_FI/fusiondirectory.po    |   2 +-
 newsletter/locale/fr/fusiondirectory.po       |   4 +-
 newsletter/locale/hu_HU/fusiondirectory.po    |   2 +-
 newsletter/locale/id/fusiondirectory.po       |   2 +-
 newsletter/locale/it_IT/fusiondirectory.po    |   4 +-
 newsletter/locale/ja/fusiondirectory.po       |   2 +-
 newsletter/locale/ko/fusiondirectory.po       |   2 +-
 newsletter/locale/lv/fusiondirectory.po       |   2 +-
 newsletter/locale/nb/fusiondirectory.po       |   2 +-
 newsletter/locale/nl/fusiondirectory.po       |   2 +-
 newsletter/locale/pl/fusiondirectory.po       |   2 +-
 newsletter/locale/pt/fusiondirectory.po       |   4 +-
 newsletter/locale/pt_BR/fusiondirectory.po    |   4 +-
 newsletter/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 newsletter/locale/sv/fusiondirectory.po       |   2 +-
 newsletter/locale/tr_TR/fusiondirectory.po    |   2 +-
 newsletter/locale/ug/fusiondirectory.po       |   2 +-
 newsletter/locale/vi_VN/fusiondirectory.po    |   2 +-
 newsletter/locale/zh/fusiondirectory.po       |   2 +-
 newsletter/locale/zh_TW/fusiondirectory.po    |   2 +-
 opsi/locale/af_ZA/fusiondirectory.po          |   2 +-
 opsi/locale/ar/fusiondirectory.po             |   2 +-
 opsi/locale/ca/fusiondirectory.po             |   2 +-
 opsi/locale/cs_CZ/fusiondirectory.po          |   2 +-
 opsi/locale/de/fusiondirectory.po             |   2 +-
 opsi/locale/el_GR/fusiondirectory.po          |   2 +-
 opsi/locale/es/fusiondirectory.po             |   4 +-
 opsi/locale/es_CO/fusiondirectory.po          |   4 +-
 opsi/locale/es_VE/fusiondirectory.po          |   4 +-
 opsi/locale/fa_IR/fusiondirectory.po          |   2 +-
 opsi/locale/fi_FI/fusiondirectory.po          |   2 +-
 opsi/locale/fr/fusiondirectory.po             |   4 +-
 opsi/locale/hu_HU/fusiondirectory.po          |   2 +-
 opsi/locale/id/fusiondirectory.po             |   2 +-
 opsi/locale/it_IT/fusiondirectory.po          |   8 +-
 opsi/locale/ja/fusiondirectory.po             |   2 +-
 opsi/locale/ko/fusiondirectory.po             |   2 +-
 opsi/locale/lv/fusiondirectory.po             |   2 +-
 opsi/locale/nb/fusiondirectory.po             |   2 +-
 opsi/locale/nl/fusiondirectory.po             |   2 +-
 opsi/locale/pl/fusiondirectory.po             |   2 +-
 opsi/locale/pt/fusiondirectory.po             |   4 +-
 opsi/locale/pt_BR/fusiondirectory.po          |   4 +-
 opsi/locale/ru/fusiondirectory.po             |   2 +-
 opsi/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 opsi/locale/sv/fusiondirectory.po             |   2 +-
 opsi/locale/tr_TR/fusiondirectory.po          |   8 +-
 opsi/locale/ug/fusiondirectory.po             |   2 +-
 opsi/locale/vi_VN/fusiondirectory.po          |   2 +-
 opsi/locale/zh/fusiondirectory.po             |   2 +-
 opsi/locale/zh_TW/fusiondirectory.po          |   2 +-
 personal/locale/af_ZA/fusiondirectory.po      |   2 +-
 personal/locale/ar/fusiondirectory.po         |   2 +-
 personal/locale/ca/fusiondirectory.po         |   2 +-
 personal/locale/cs_CZ/fusiondirectory.po      |   2 +-
 personal/locale/de/fusiondirectory.po         |   2 +-
 personal/locale/el_GR/fusiondirectory.po      |   2 +-
 personal/locale/es/fusiondirectory.po         |   4 +-
 personal/locale/es_CO/fusiondirectory.po      |   4 +-
 personal/locale/es_VE/fusiondirectory.po      |   4 +-
 personal/locale/fa_IR/fusiondirectory.po      |   2 +-
 personal/locale/fi_FI/fusiondirectory.po      |   2 +-
 personal/locale/fr/fusiondirectory.po         |   4 +-
 personal/locale/hu_HU/fusiondirectory.po      |   2 +-
 personal/locale/id/fusiondirectory.po         |   2 +-
 personal/locale/it_IT/fusiondirectory.po      |   6 +-
 personal/locale/ja/fusiondirectory.po         |   2 +-
 personal/locale/ko/fusiondirectory.po         |   2 +-
 personal/locale/lv/fusiondirectory.po         |   2 +-
 personal/locale/nb/fusiondirectory.po         |   2 +-
 personal/locale/nl/fusiondirectory.po         |   2 +-
 personal/locale/pl/fusiondirectory.po         |   2 +-
 personal/locale/pt/fusiondirectory.po         |   4 +-
 personal/locale/pt_BR/fusiondirectory.po      |   4 +-
 personal/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 personal/locale/sv/fusiondirectory.po         |   2 +-
 personal/locale/tr_TR/fusiondirectory.po      |   2 +-
 personal/locale/ug/fusiondirectory.po         |   2 +-
 personal/locale/vi_VN/fusiondirectory.po      |   2 +-
 personal/locale/zh/fusiondirectory.po         |   2 +-
 personal/locale/zh_TW/fusiondirectory.po      |   2 +-
 posix/locale/af_ZA/fusiondirectory.po         |   2 +-
 posix/locale/ar/fusiondirectory.po            |   2 +-
 posix/locale/ca/fusiondirectory.po            |   2 +-
 posix/locale/cs_CZ/fusiondirectory.po         |   2 +-
 posix/locale/de/fusiondirectory.po            |   2 +-
 posix/locale/el_GR/fusiondirectory.po         |   2 +-
 posix/locale/es/fusiondirectory.po            |   4 +-
 posix/locale/es_CO/fusiondirectory.po         |   4 +-
 posix/locale/es_VE/fusiondirectory.po         |   4 +-
 posix/locale/fa_IR/fusiondirectory.po         |   2 +-
 posix/locale/fi_FI/fusiondirectory.po         |   2 +-
 posix/locale/fr/fusiondirectory.po            |   4 +-
 posix/locale/hu_HU/fusiondirectory.po         |   2 +-
 posix/locale/id/fusiondirectory.po            |   2 +-
 posix/locale/it_IT/fusiondirectory.po         |   8 +-
 posix/locale/ja/fusiondirectory.po            |   2 +-
 posix/locale/ko/fusiondirectory.po            |   2 +-
 posix/locale/lv/fusiondirectory.po            |   2 +-
 posix/locale/nb/fusiondirectory.po            |   2 +-
 posix/locale/nl/fusiondirectory.po            |   2 +-
 posix/locale/pl/fusiondirectory.po            |   2 +-
 posix/locale/pt/fusiondirectory.po            |   4 +-
 posix/locale/pt_BR/fusiondirectory.po         |   4 +-
 posix/locale/ru/fusiondirectory.po            |   2 +-
 posix/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 posix/locale/sv/fusiondirectory.po            |   2 +-
 posix/locale/tr_TR/fusiondirectory.po         |   8 +-
 posix/locale/ug/fusiondirectory.po            |   2 +-
 posix/locale/vi_VN/fusiondirectory.po         |   2 +-
 posix/locale/zh/fusiondirectory.po            |   2 +-
 posix/locale/zh_TW/fusiondirectory.po         |   2 +-
 postfix/locale/af_ZA/fusiondirectory.po       |   2 +-
 postfix/locale/ar/fusiondirectory.po          |   2 +-
 postfix/locale/ca/fusiondirectory.po          |   2 +-
 postfix/locale/cs_CZ/fusiondirectory.po       |   2 +-
 postfix/locale/de/fusiondirectory.po          |   2 +-
 postfix/locale/el_GR/fusiondirectory.po       |   2 +-
 postfix/locale/es/fusiondirectory.po          |   4 +-
 postfix/locale/es_CO/fusiondirectory.po       |   4 +-
 postfix/locale/es_VE/fusiondirectory.po       |   4 +-
 postfix/locale/fa_IR/fusiondirectory.po       |   2 +-
 postfix/locale/fi_FI/fusiondirectory.po       |   2 +-
 postfix/locale/fr/fusiondirectory.po          |   4 +-
 postfix/locale/hu_HU/fusiondirectory.po       |   2 +-
 postfix/locale/id/fusiondirectory.po          |   2 +-
 postfix/locale/it_IT/fusiondirectory.po       |   8 +-
 postfix/locale/ja/fusiondirectory.po          |   2 +-
 postfix/locale/ko/fusiondirectory.po          |   2 +-
 postfix/locale/lv/fusiondirectory.po          |   2 +-
 postfix/locale/nb/fusiondirectory.po          |   2 +-
 postfix/locale/nl/fusiondirectory.po          |   2 +-
 postfix/locale/pl/fusiondirectory.po          |   2 +-
 postfix/locale/pt/fusiondirectory.po          |   4 +-
 postfix/locale/pt_BR/fusiondirectory.po       |   4 +-
 postfix/locale/ru/fusiondirectory.po          |   2 +-
 postfix/locale/ru@petr1708/fusiondirectory.po |   2 +-
 postfix/locale/sv/fusiondirectory.po          |   2 +-
 postfix/locale/tr_TR/fusiondirectory.po       |   2 +-
 postfix/locale/ug/fusiondirectory.po          |   2 +-
 postfix/locale/vi_VN/fusiondirectory.po       |   2 +-
 postfix/locale/zh/fusiondirectory.po          |   2 +-
 postfix/locale/zh_TW/fusiondirectory.po       |   2 +-
 ppolicy/locale/af_ZA/fusiondirectory.po       |   2 +-
 ppolicy/locale/ar/fusiondirectory.po          |   2 +-
 ppolicy/locale/ca/fusiondirectory.po          |   2 +-
 ppolicy/locale/cs_CZ/fusiondirectory.po       |   2 +-
 ppolicy/locale/de/fusiondirectory.po          |   2 +-
 ppolicy/locale/el_GR/fusiondirectory.po       |   2 +-
 ppolicy/locale/es/fusiondirectory.po          |   5 +-
 ppolicy/locale/es_CO/fusiondirectory.po       |   5 +-
 ppolicy/locale/es_VE/fusiondirectory.po       |   5 +-
 ppolicy/locale/fa_IR/fusiondirectory.po       |   2 +-
 ppolicy/locale/fi_FI/fusiondirectory.po       |   2 +-
 ppolicy/locale/fr/fusiondirectory.po          |   9 +-
 ppolicy/locale/hu_HU/fusiondirectory.po       |   2 +-
 ppolicy/locale/id/fusiondirectory.po          |   2 +-
 ppolicy/locale/it_IT/fusiondirectory.po       |   5 +-
 ppolicy/locale/ja/fusiondirectory.po          |   2 +-
 ppolicy/locale/ko/fusiondirectory.po          |   2 +-
 ppolicy/locale/lv/fusiondirectory.po          |   2 +-
 ppolicy/locale/nb/fusiondirectory.po          |   2 +-
 ppolicy/locale/nl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pl/fusiondirectory.po          |   2 +-
 ppolicy/locale/pt/fusiondirectory.po          |   5 +-
 ppolicy/locale/pt_BR/fusiondirectory.po       |   5 +-
 ppolicy/locale/ru/fusiondirectory.po          |   2 +-
 ppolicy/locale/ru@petr1708/fusiondirectory.po |   2 +-
 ppolicy/locale/sv/fusiondirectory.po          |   2 +-
 ppolicy/locale/tr_TR/fusiondirectory.po       |   2 +-
 ppolicy/locale/ug/fusiondirectory.po          |   2 +-
 ppolicy/locale/vi_VN/fusiondirectory.po       |   2 +-
 ppolicy/locale/zh/fusiondirectory.po          |   2 +-
 ppolicy/locale/zh_TW/fusiondirectory.po       |   2 +-
 puppet/locale/af_ZA/fusiondirectory.po        |   2 +-
 puppet/locale/ar/fusiondirectory.po           |   2 +-
 puppet/locale/ca/fusiondirectory.po           |   2 +-
 puppet/locale/cs_CZ/fusiondirectory.po        |   2 +-
 puppet/locale/de/fusiondirectory.po           |   2 +-
 puppet/locale/el_GR/fusiondirectory.po        |   2 +-
 puppet/locale/es/fusiondirectory.po           |   4 +-
 puppet/locale/es_CO/fusiondirectory.po        |   4 +-
 puppet/locale/es_VE/fusiondirectory.po        |   4 +-
 puppet/locale/fa_IR/fusiondirectory.po        |   2 +-
 puppet/locale/fi_FI/fusiondirectory.po        |   2 +-
 puppet/locale/fr/fusiondirectory.po           |   4 +-
 puppet/locale/hu_HU/fusiondirectory.po        |   2 +-
 puppet/locale/id/fusiondirectory.po           |   2 +-
 puppet/locale/it_IT/fusiondirectory.po        |   8 +-
 puppet/locale/ja/fusiondirectory.po           |   2 +-
 puppet/locale/ko/fusiondirectory.po           |   2 +-
 puppet/locale/lv/fusiondirectory.po           |   2 +-
 puppet/locale/nb/fusiondirectory.po           |   2 +-
 puppet/locale/nl/fusiondirectory.po           |   2 +-
 puppet/locale/pl/fusiondirectory.po           |   2 +-
 puppet/locale/pt/fusiondirectory.po           |   4 +-
 puppet/locale/pt_BR/fusiondirectory.po        |   4 +-
 puppet/locale/ru/fusiondirectory.po           |   2 +-
 puppet/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 puppet/locale/sv/fusiondirectory.po           |   2 +-
 puppet/locale/tr_TR/fusiondirectory.po        |   2 +-
 puppet/locale/ug/fusiondirectory.po           |   2 +-
 puppet/locale/vi_VN/fusiondirectory.po        |   2 +-
 puppet/locale/zh/fusiondirectory.po           |   2 +-
 puppet/locale/zh_TW/fusiondirectory.po        |   2 +-
 pureftpd/locale/af_ZA/fusiondirectory.po      |   2 +-
 pureftpd/locale/ar/fusiondirectory.po         |   2 +-
 pureftpd/locale/ca/fusiondirectory.po         |   2 +-
 pureftpd/locale/cs_CZ/fusiondirectory.po      |   2 +-
 pureftpd/locale/de/fusiondirectory.po         |   2 +-
 pureftpd/locale/el_GR/fusiondirectory.po      |   2 +-
 pureftpd/locale/es/fusiondirectory.po         |   4 +-
 pureftpd/locale/es_CO/fusiondirectory.po      |   4 +-
 pureftpd/locale/es_VE/fusiondirectory.po      |   4 +-
 pureftpd/locale/fa_IR/fusiondirectory.po      |   2 +-
 pureftpd/locale/fi_FI/fusiondirectory.po      |   2 +-
 pureftpd/locale/fr/fusiondirectory.po         |   4 +-
 pureftpd/locale/hu_HU/fusiondirectory.po      |   2 +-
 pureftpd/locale/id/fusiondirectory.po         |   2 +-
 pureftpd/locale/it_IT/fusiondirectory.po      |   4 +-
 pureftpd/locale/ja/fusiondirectory.po         |   2 +-
 pureftpd/locale/ko/fusiondirectory.po         |   2 +-
 pureftpd/locale/lv/fusiondirectory.po         |   2 +-
 pureftpd/locale/nb/fusiondirectory.po         |   2 +-
 pureftpd/locale/nl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pl/fusiondirectory.po         |   2 +-
 pureftpd/locale/pt/fusiondirectory.po         |   4 +-
 pureftpd/locale/pt_BR/fusiondirectory.po      |   4 +-
 pureftpd/locale/ru/fusiondirectory.po         |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 pureftpd/locale/sv/fusiondirectory.po         |   2 +-
 pureftpd/locale/tr_TR/fusiondirectory.po      |   2 +-
 pureftpd/locale/ug/fusiondirectory.po         |   2 +-
 pureftpd/locale/vi_VN/fusiondirectory.po      |   2 +-
 pureftpd/locale/zh/fusiondirectory.po         |   2 +-
 pureftpd/locale/zh_TW/fusiondirectory.po      |   2 +-
 quota/locale/af_ZA/fusiondirectory.po         |   2 +-
 quota/locale/ar/fusiondirectory.po            |   2 +-
 quota/locale/ca/fusiondirectory.po            |   2 +-
 quota/locale/cs_CZ/fusiondirectory.po         |   2 +-
 quota/locale/de/fusiondirectory.po            |   2 +-
 quota/locale/el_GR/fusiondirectory.po         |   2 +-
 quota/locale/es/fusiondirectory.po            |   4 +-
 quota/locale/es_CO/fusiondirectory.po         |   4 +-
 quota/locale/es_VE/fusiondirectory.po         |   4 +-
 quota/locale/fa_IR/fusiondirectory.po         |   2 +-
 quota/locale/fi_FI/fusiondirectory.po         |   2 +-
 quota/locale/fr/fusiondirectory.po            |   4 +-
 quota/locale/hu_HU/fusiondirectory.po         |   2 +-
 quota/locale/id/fusiondirectory.po            |   2 +-
 quota/locale/it_IT/fusiondirectory.po         |   4 +-
 quota/locale/ja/fusiondirectory.po            |   2 +-
 quota/locale/ko/fusiondirectory.po            |   2 +-
 quota/locale/lv/fusiondirectory.po            |   2 +-
 quota/locale/nb/fusiondirectory.po            |   2 +-
 quota/locale/nl/fusiondirectory.po            |   2 +-
 quota/locale/pl/fusiondirectory.po            |   2 +-
 quota/locale/pt/fusiondirectory.po            |   4 +-
 quota/locale/pt_BR/fusiondirectory.po         |   4 +-
 quota/locale/ru/fusiondirectory.po            |   2 +-
 quota/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 quota/locale/sv/fusiondirectory.po            |   2 +-
 quota/locale/tr_TR/fusiondirectory.po         |   8 +-
 quota/locale/ug/fusiondirectory.po            |   2 +-
 quota/locale/vi_VN/fusiondirectory.po         |   2 +-
 quota/locale/zh/fusiondirectory.po            |   2 +-
 quota/locale/zh_TW/fusiondirectory.po         |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 renater-partage/locale/ar/fusiondirectory.po  |   2 +-
 renater-partage/locale/ca/fusiondirectory.po  |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 renater-partage/locale/de/fusiondirectory.po  |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 renater-partage/locale/es/fusiondirectory.po  |   4 +-
 .../locale/es_CO/fusiondirectory.po           |   4 +-
 .../locale/es_VE/fusiondirectory.po           |   4 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 renater-partage/locale/fr/fusiondirectory.po  |   4 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 renater-partage/locale/id/fusiondirectory.po  |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   8 +-
 renater-partage/locale/ja/fusiondirectory.po  |   2 +-
 renater-partage/locale/ko/fusiondirectory.po  |   2 +-
 renater-partage/locale/lv/fusiondirectory.po  |   2 +-
 renater-partage/locale/nb/fusiondirectory.po  |   2 +-
 renater-partage/locale/nl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pl/fusiondirectory.po  |   2 +-
 renater-partage/locale/pt/fusiondirectory.po  |   4 +-
 .../locale/pt_BR/fusiondirectory.po           |   4 +-
 renater-partage/locale/ru/fusiondirectory.po  |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 renater-partage/locale/sv/fusiondirectory.po  |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |  12 +-
 renater-partage/locale/ug/fusiondirectory.po  |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 renater-partage/locale/zh/fusiondirectory.po  |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 repository/locale/af_ZA/fusiondirectory.po    |   2 +-
 repository/locale/ar/fusiondirectory.po       |   2 +-
 repository/locale/ca/fusiondirectory.po       |   2 +-
 repository/locale/cs_CZ/fusiondirectory.po    |   2 +-
 repository/locale/de/fusiondirectory.po       |   2 +-
 repository/locale/el_GR/fusiondirectory.po    |   2 +-
 repository/locale/es/fusiondirectory.po       |   4 +-
 repository/locale/es_CO/fusiondirectory.po    |   4 +-
 repository/locale/es_VE/fusiondirectory.po    |   4 +-
 repository/locale/fa_IR/fusiondirectory.po    |   2 +-
 repository/locale/fi_FI/fusiondirectory.po    |   2 +-
 repository/locale/fr/fusiondirectory.po       |   4 +-
 repository/locale/hu_HU/fusiondirectory.po    |   2 +-
 repository/locale/id/fusiondirectory.po       |   2 +-
 repository/locale/it_IT/fusiondirectory.po    |   4 +-
 repository/locale/ja/fusiondirectory.po       |   2 +-
 repository/locale/ko/fusiondirectory.po       |   2 +-
 repository/locale/lv/fusiondirectory.po       |   2 +-
 repository/locale/nb/fusiondirectory.po       |   2 +-
 repository/locale/nl/fusiondirectory.po       |   2 +-
 repository/locale/pl/fusiondirectory.po       |   2 +-
 repository/locale/pt/fusiondirectory.po       |   4 +-
 repository/locale/pt_BR/fusiondirectory.po    |   4 +-
 repository/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 repository/locale/sv/fusiondirectory.po       |   2 +-
 repository/locale/tr_TR/fusiondirectory.po    |   8 +-
 repository/locale/ug/fusiondirectory.po       |   2 +-
 repository/locale/vi_VN/fusiondirectory.po    |   2 +-
 repository/locale/zh/fusiondirectory.po       |   2 +-
 repository/locale/zh_TW/fusiondirectory.po    |   2 +-
 samba/locale/af_ZA/fusiondirectory.po         |   2 +-
 samba/locale/ar/fusiondirectory.po            |   2 +-
 samba/locale/ca/fusiondirectory.po            |   2 +-
 samba/locale/cs_CZ/fusiondirectory.po         |   2 +-
 samba/locale/de/fusiondirectory.po            |   2 +-
 samba/locale/el_GR/fusiondirectory.po         |   2 +-
 samba/locale/es/fusiondirectory.po            |   4 +-
 samba/locale/es_CO/fusiondirectory.po         |   4 +-
 samba/locale/es_VE/fusiondirectory.po         |   4 +-
 samba/locale/fa_IR/fusiondirectory.po         |   2 +-
 samba/locale/fi_FI/fusiondirectory.po         |   2 +-
 samba/locale/fr/fusiondirectory.po            |   4 +-
 samba/locale/hu_HU/fusiondirectory.po         |   2 +-
 samba/locale/id/fusiondirectory.po            |   2 +-
 samba/locale/it_IT/fusiondirectory.po         |   4 +-
 samba/locale/ja/fusiondirectory.po            |   2 +-
 samba/locale/ko/fusiondirectory.po            |   2 +-
 samba/locale/lv/fusiondirectory.po            |   2 +-
 samba/locale/nb/fusiondirectory.po            |   2 +-
 samba/locale/nl/fusiondirectory.po            |   2 +-
 samba/locale/pl/fusiondirectory.po            |   2 +-
 samba/locale/pt/fusiondirectory.po            |   4 +-
 samba/locale/pt_BR/fusiondirectory.po         |   4 +-
 samba/locale/ru/fusiondirectory.po            |   2 +-
 samba/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 samba/locale/sv/fusiondirectory.po            |   2 +-
 samba/locale/tr_TR/fusiondirectory.po         |   8 +-
 samba/locale/ug/fusiondirectory.po            |   2 +-
 samba/locale/vi_VN/fusiondirectory.po         |   2 +-
 samba/locale/zh/fusiondirectory.po            |   2 +-
 samba/locale/zh_TW/fusiondirectory.po         |   2 +-
 sinaps/locale/af_ZA/fusiondirectory.po        |   2 +-
 sinaps/locale/ar/fusiondirectory.po           |   2 +-
 sinaps/locale/ca/fusiondirectory.po           |   2 +-
 sinaps/locale/cs_CZ/fusiondirectory.po        |   2 +-
 sinaps/locale/de/fusiondirectory.po           |   2 +-
 sinaps/locale/el_GR/fusiondirectory.po        |   2 +-
 sinaps/locale/es/fusiondirectory.po           |   4 +-
 sinaps/locale/es_CO/fusiondirectory.po        |   4 +-
 sinaps/locale/es_VE/fusiondirectory.po        |   4 +-
 sinaps/locale/fa_IR/fusiondirectory.po        |   2 +-
 sinaps/locale/fi_FI/fusiondirectory.po        |   2 +-
 sinaps/locale/fr/fusiondirectory.po           |   4 +-
 sinaps/locale/hu_HU/fusiondirectory.po        |   2 +-
 sinaps/locale/id/fusiondirectory.po           |   2 +-
 sinaps/locale/it_IT/fusiondirectory.po        |   6 +-
 sinaps/locale/ja/fusiondirectory.po           |   2 +-
 sinaps/locale/ko/fusiondirectory.po           |   2 +-
 sinaps/locale/lv/fusiondirectory.po           |   2 +-
 sinaps/locale/nb/fusiondirectory.po           |   2 +-
 sinaps/locale/nl/fusiondirectory.po           |   2 +-
 sinaps/locale/pl/fusiondirectory.po           |   2 +-
 sinaps/locale/pt/fusiondirectory.po           |   4 +-
 sinaps/locale/pt_BR/fusiondirectory.po        |   4 +-
 sinaps/locale/ru/fusiondirectory.po           |   2 +-
 sinaps/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 sinaps/locale/sv/fusiondirectory.po           |   2 +-
 sinaps/locale/tr_TR/fusiondirectory.po        |   8 +-
 sinaps/locale/ug/fusiondirectory.po           |   2 +-
 sinaps/locale/vi_VN/fusiondirectory.po        |   2 +-
 sinaps/locale/zh/fusiondirectory.po           |   2 +-
 sinaps/locale/zh_TW/fusiondirectory.po        |   2 +-
 sogo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sogo/locale/ar/fusiondirectory.po             |   2 +-
 sogo/locale/ca/fusiondirectory.po             |   2 +-
 sogo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sogo/locale/de/fusiondirectory.po             |   2 +-
 sogo/locale/el_GR/fusiondirectory.po          |   2 +-
 sogo/locale/es/fusiondirectory.po             |   4 +-
 sogo/locale/es_CO/fusiondirectory.po          |   4 +-
 sogo/locale/es_VE/fusiondirectory.po          |   4 +-
 sogo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sogo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sogo/locale/fr/fusiondirectory.po             |   4 +-
 sogo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sogo/locale/id/fusiondirectory.po             |   2 +-
 sogo/locale/it_IT/fusiondirectory.po          |   4 +-
 sogo/locale/ja/fusiondirectory.po             |   2 +-
 sogo/locale/ko/fusiondirectory.po             |   2 +-
 sogo/locale/lv/fusiondirectory.po             |   2 +-
 sogo/locale/nb/fusiondirectory.po             |   2 +-
 sogo/locale/nl/fusiondirectory.po             |   2 +-
 sogo/locale/pl/fusiondirectory.po             |   2 +-
 sogo/locale/pt/fusiondirectory.po             |   4 +-
 sogo/locale/pt_BR/fusiondirectory.po          |   4 +-
 sogo/locale/ru/fusiondirectory.po             |   2 +-
 sogo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sogo/locale/sv/fusiondirectory.po             |   2 +-
 sogo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sogo/locale/ug/fusiondirectory.po             |   2 +-
 sogo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sogo/locale/zh/fusiondirectory.po             |   2 +-
 sogo/locale/zh_TW/fusiondirectory.po          |   2 +-
 spamassassin/locale/af_ZA/fusiondirectory.po  |   2 +-
 spamassassin/locale/ar/fusiondirectory.po     |   2 +-
 spamassassin/locale/ca/fusiondirectory.po     |   2 +-
 spamassassin/locale/cs_CZ/fusiondirectory.po  |   2 +-
 spamassassin/locale/de/fusiondirectory.po     |   2 +-
 spamassassin/locale/el_GR/fusiondirectory.po  |   2 +-
 spamassassin/locale/es/fusiondirectory.po     |   4 +-
 spamassassin/locale/es_CO/fusiondirectory.po  |   4 +-
 spamassassin/locale/es_VE/fusiondirectory.po  |   4 +-
 spamassassin/locale/fa_IR/fusiondirectory.po  |   2 +-
 spamassassin/locale/fi_FI/fusiondirectory.po  |   2 +-
 spamassassin/locale/fr/fusiondirectory.po     |   4 +-
 spamassassin/locale/hu_HU/fusiondirectory.po  |   2 +-
 spamassassin/locale/id/fusiondirectory.po     |   2 +-
 spamassassin/locale/it_IT/fusiondirectory.po  |   4 +-
 spamassassin/locale/ja/fusiondirectory.po     |   2 +-
 spamassassin/locale/ko/fusiondirectory.po     |   2 +-
 spamassassin/locale/lv/fusiondirectory.po     |   2 +-
 spamassassin/locale/nb/fusiondirectory.po     |   2 +-
 spamassassin/locale/nl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pl/fusiondirectory.po     |   2 +-
 spamassassin/locale/pt/fusiondirectory.po     |   4 +-
 spamassassin/locale/pt_BR/fusiondirectory.po  |   4 +-
 spamassassin/locale/ru/fusiondirectory.po     |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 spamassassin/locale/sv/fusiondirectory.po     |   2 +-
 spamassassin/locale/tr_TR/fusiondirectory.po  |   2 +-
 spamassassin/locale/ug/fusiondirectory.po     |   2 +-
 spamassassin/locale/vi_VN/fusiondirectory.po  |   2 +-
 spamassassin/locale/zh/fusiondirectory.po     |   2 +-
 spamassassin/locale/zh_TW/fusiondirectory.po  |   2 +-
 squid/locale/af_ZA/fusiondirectory.po         |   2 +-
 squid/locale/ar/fusiondirectory.po            |   2 +-
 squid/locale/ca/fusiondirectory.po            |   2 +-
 squid/locale/cs_CZ/fusiondirectory.po         |   2 +-
 squid/locale/de/fusiondirectory.po            |   2 +-
 squid/locale/el_GR/fusiondirectory.po         |   2 +-
 squid/locale/es/fusiondirectory.po            |   4 +-
 squid/locale/es_CO/fusiondirectory.po         |   4 +-
 squid/locale/es_VE/fusiondirectory.po         |   4 +-
 squid/locale/fa_IR/fusiondirectory.po         |   2 +-
 squid/locale/fi_FI/fusiondirectory.po         |   2 +-
 squid/locale/fr/fusiondirectory.po            |   4 +-
 squid/locale/hu_HU/fusiondirectory.po         |   2 +-
 squid/locale/id/fusiondirectory.po            |   2 +-
 squid/locale/it_IT/fusiondirectory.po         |   4 +-
 squid/locale/ja/fusiondirectory.po            |   2 +-
 squid/locale/ko/fusiondirectory.po            |   2 +-
 squid/locale/lv/fusiondirectory.po            |   2 +-
 squid/locale/nb/fusiondirectory.po            |   2 +-
 squid/locale/nl/fusiondirectory.po            |   2 +-
 squid/locale/pl/fusiondirectory.po            |   2 +-
 squid/locale/pt/fusiondirectory.po            |   4 +-
 squid/locale/pt_BR/fusiondirectory.po         |   4 +-
 squid/locale/ru/fusiondirectory.po            |   2 +-
 squid/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 squid/locale/sv/fusiondirectory.po            |   2 +-
 squid/locale/tr_TR/fusiondirectory.po         |   2 +-
 squid/locale/ug/fusiondirectory.po            |   2 +-
 squid/locale/vi_VN/fusiondirectory.po         |   2 +-
 squid/locale/zh/fusiondirectory.po            |   2 +-
 squid/locale/zh_TW/fusiondirectory.po         |   2 +-
 ssh/locale/af_ZA/fusiondirectory.po           |   2 +-
 ssh/locale/ar/fusiondirectory.po              |   2 +-
 ssh/locale/ca/fusiondirectory.po              |   2 +-
 ssh/locale/cs_CZ/fusiondirectory.po           |   2 +-
 ssh/locale/de/fusiondirectory.po              |   2 +-
 ssh/locale/el_GR/fusiondirectory.po           |   2 +-
 ssh/locale/es/fusiondirectory.po              |   4 +-
 ssh/locale/es_CO/fusiondirectory.po           |   4 +-
 ssh/locale/es_VE/fusiondirectory.po           |   4 +-
 ssh/locale/fa_IR/fusiondirectory.po           |   2 +-
 ssh/locale/fi_FI/fusiondirectory.po           |   2 +-
 ssh/locale/fr/fusiondirectory.po              |   4 +-
 ssh/locale/hu_HU/fusiondirectory.po           |   2 +-
 ssh/locale/id/fusiondirectory.po              |   2 +-
 ssh/locale/it_IT/fusiondirectory.po           |   4 +-
 ssh/locale/ja/fusiondirectory.po              |   2 +-
 ssh/locale/ko/fusiondirectory.po              |   2 +-
 ssh/locale/lv/fusiondirectory.po              |   2 +-
 ssh/locale/nb/fusiondirectory.po              |   2 +-
 ssh/locale/nl/fusiondirectory.po              |   2 +-
 ssh/locale/pl/fusiondirectory.po              |   2 +-
 ssh/locale/pt/fusiondirectory.po              |   4 +-
 ssh/locale/pt_BR/fusiondirectory.po           |   4 +-
 ssh/locale/ru/fusiondirectory.po              |   2 +-
 ssh/locale/ru@petr1708/fusiondirectory.po     |   2 +-
 ssh/locale/sv/fusiondirectory.po              |   2 +-
 ssh/locale/tr_TR/fusiondirectory.po           |   2 +-
 ssh/locale/ug/fusiondirectory.po              |   2 +-
 ssh/locale/vi_VN/fusiondirectory.po           |   2 +-
 ssh/locale/zh/fusiondirectory.po              |   2 +-
 ssh/locale/zh_TW/fusiondirectory.po           |   2 +-
 .../locale/af_ZA/fusiondirectory.po           |   2 +-
 subcontracting/locale/ar/fusiondirectory.po   |   2 +-
 subcontracting/locale/ca/fusiondirectory.po   |   2 +-
 .../locale/cs_CZ/fusiondirectory.po           |   2 +-
 subcontracting/locale/de/fusiondirectory.po   |   2 +-
 .../locale/el_GR/fusiondirectory.po           |   2 +-
 subcontracting/locale/es/fusiondirectory.po   |   4 +-
 .../locale/es_CO/fusiondirectory.po           |   4 +-
 .../locale/es_VE/fusiondirectory.po           |   4 +-
 .../locale/fa_IR/fusiondirectory.po           |   2 +-
 .../locale/fi_FI/fusiondirectory.po           |   2 +-
 subcontracting/locale/fr/fusiondirectory.po   |   4 +-
 .../locale/hu_HU/fusiondirectory.po           |   2 +-
 subcontracting/locale/id/fusiondirectory.po   |   2 +-
 .../locale/it_IT/fusiondirectory.po           |   4 +-
 subcontracting/locale/ja/fusiondirectory.po   |   2 +-
 subcontracting/locale/ko/fusiondirectory.po   |   2 +-
 subcontracting/locale/lv/fusiondirectory.po   |   2 +-
 subcontracting/locale/nb/fusiondirectory.po   |   2 +-
 subcontracting/locale/nl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pl/fusiondirectory.po   |   2 +-
 subcontracting/locale/pt/fusiondirectory.po   |   4 +-
 .../locale/pt_BR/fusiondirectory.po           |   4 +-
 subcontracting/locale/ru/fusiondirectory.po   |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 subcontracting/locale/sv/fusiondirectory.po   |   2 +-
 .../locale/tr_TR/fusiondirectory.po           |   2 +-
 subcontracting/locale/ug/fusiondirectory.po   |   2 +-
 .../locale/vi_VN/fusiondirectory.po           |   2 +-
 subcontracting/locale/zh/fusiondirectory.po   |   2 +-
 .../locale/zh_TW/fusiondirectory.po           |   2 +-
 sudo/locale/af_ZA/fusiondirectory.po          |   2 +-
 sudo/locale/ar/fusiondirectory.po             |   2 +-
 sudo/locale/ca/fusiondirectory.po             |   2 +-
 sudo/locale/cs_CZ/fusiondirectory.po          |   2 +-
 sudo/locale/de/fusiondirectory.po             |   2 +-
 sudo/locale/el_GR/fusiondirectory.po          |   2 +-
 sudo/locale/es/fusiondirectory.po             |   4 +-
 sudo/locale/es_CO/fusiondirectory.po          |   4 +-
 sudo/locale/es_VE/fusiondirectory.po          |   4 +-
 sudo/locale/fa_IR/fusiondirectory.po          |   2 +-
 sudo/locale/fi_FI/fusiondirectory.po          |   2 +-
 sudo/locale/fr/fusiondirectory.po             |   4 +-
 sudo/locale/hu_HU/fusiondirectory.po          |   2 +-
 sudo/locale/id/fusiondirectory.po             |   2 +-
 sudo/locale/it_IT/fusiondirectory.po          |   8 +-
 sudo/locale/ja/fusiondirectory.po             |   2 +-
 sudo/locale/ko/fusiondirectory.po             |   2 +-
 sudo/locale/lv/fusiondirectory.po             |   2 +-
 sudo/locale/nb/fusiondirectory.po             |   2 +-
 sudo/locale/nl/fusiondirectory.po             |   2 +-
 sudo/locale/pl/fusiondirectory.po             |   2 +-
 sudo/locale/pt/fusiondirectory.po             |   4 +-
 sudo/locale/pt_BR/fusiondirectory.po          |   4 +-
 sudo/locale/ru/fusiondirectory.po             |   2 +-
 sudo/locale/ru@petr1708/fusiondirectory.po    |   2 +-
 sudo/locale/sv/fusiondirectory.po             |   2 +-
 sudo/locale/tr_TR/fusiondirectory.po          |   2 +-
 sudo/locale/ug/fusiondirectory.po             |   2 +-
 sudo/locale/vi_VN/fusiondirectory.po          |   2 +-
 sudo/locale/zh/fusiondirectory.po             |   2 +-
 sudo/locale/zh_TW/fusiondirectory.po          |   2 +-
 supann/locale/af_ZA/fusiondirectory.po        |   2 +-
 supann/locale/ar/fusiondirectory.po           |   2 +-
 supann/locale/ca/fusiondirectory.po           |   2 +-
 supann/locale/cs_CZ/fusiondirectory.po        |   2 +-
 supann/locale/de/fusiondirectory.po           |   2 +-
 supann/locale/el_GR/fusiondirectory.po        |   2 +-
 supann/locale/es/fusiondirectory.po           |   4 +-
 supann/locale/es_CO/fusiondirectory.po        |   4 +-
 supann/locale/es_VE/fusiondirectory.po        |   4 +-
 supann/locale/fa_IR/fusiondirectory.po        |   2 +-
 supann/locale/fi_FI/fusiondirectory.po        |   2 +-
 supann/locale/fr/fusiondirectory.po           |   4 +-
 supann/locale/hu_HU/fusiondirectory.po        |   2 +-
 supann/locale/id/fusiondirectory.po           |   2 +-
 supann/locale/it_IT/fusiondirectory.po        |   8 +-
 supann/locale/ja/fusiondirectory.po           |   2 +-
 supann/locale/ko/fusiondirectory.po           |   2 +-
 supann/locale/lv/fusiondirectory.po           |   2 +-
 supann/locale/nb/fusiondirectory.po           |   2 +-
 supann/locale/nl/fusiondirectory.po           |   2 +-
 supann/locale/pl/fusiondirectory.po           |   2 +-
 supann/locale/pt/fusiondirectory.po           |   4 +-
 supann/locale/pt_BR/fusiondirectory.po        |   4 +-
 supann/locale/ru/fusiondirectory.po           |   2 +-
 supann/locale/ru@petr1708/fusiondirectory.po  |   2 +-
 supann/locale/sv/fusiondirectory.po           |   2 +-
 supann/locale/tr_TR/fusiondirectory.po        |   2 +-
 supann/locale/ug/fusiondirectory.po           |   2 +-
 supann/locale/vi_VN/fusiondirectory.po        |   2 +-
 supann/locale/zh/fusiondirectory.po           |   2 +-
 supann/locale/zh_TW/fusiondirectory.po        |   2 +-
 sympa/locale/af_ZA/fusiondirectory.po         |   2 +-
 sympa/locale/ar/fusiondirectory.po            |   2 +-
 sympa/locale/ca/fusiondirectory.po            |   2 +-
 sympa/locale/cs_CZ/fusiondirectory.po         |   2 +-
 sympa/locale/de/fusiondirectory.po            |   2 +-
 sympa/locale/el_GR/fusiondirectory.po         |   2 +-
 sympa/locale/es/fusiondirectory.po            |   4 +-
 sympa/locale/es_CO/fusiondirectory.po         |   4 +-
 sympa/locale/es_VE/fusiondirectory.po         |   4 +-
 sympa/locale/fa_IR/fusiondirectory.po         |   2 +-
 sympa/locale/fi_FI/fusiondirectory.po         |   2 +-
 sympa/locale/fr/fusiondirectory.po            |   4 +-
 sympa/locale/hu_HU/fusiondirectory.po         |   2 +-
 sympa/locale/id/fusiondirectory.po            |   2 +-
 sympa/locale/it_IT/fusiondirectory.po         |   4 +-
 sympa/locale/ja/fusiondirectory.po            |   2 +-
 sympa/locale/ko/fusiondirectory.po            |   2 +-
 sympa/locale/lv/fusiondirectory.po            |   2 +-
 sympa/locale/nb/fusiondirectory.po            |   2 +-
 sympa/locale/nl/fusiondirectory.po            |   2 +-
 sympa/locale/pl/fusiondirectory.po            |   2 +-
 sympa/locale/pt/fusiondirectory.po            |   4 +-
 sympa/locale/pt_BR/fusiondirectory.po         |   4 +-
 sympa/locale/ru/fusiondirectory.po            |   2 +-
 sympa/locale/ru@petr1708/fusiondirectory.po   |   2 +-
 sympa/locale/sv/fusiondirectory.po            |   2 +-
 sympa/locale/tr_TR/fusiondirectory.po         |   8 +-
 sympa/locale/ug/fusiondirectory.po            |   2 +-
 sympa/locale/vi_VN/fusiondirectory.po         |   2 +-
 sympa/locale/zh/fusiondirectory.po            |   2 +-
 sympa/locale/zh_TW/fusiondirectory.po         |   2 +-
 systems/locale/af_ZA/fusiondirectory.po       |   2 +-
 systems/locale/ar/fusiondirectory.po          |   2 +-
 systems/locale/ca/fusiondirectory.po          |   2 +-
 systems/locale/cs_CZ/fusiondirectory.po       |   2 +-
 systems/locale/de/fusiondirectory.po          |   2 +-
 systems/locale/el_GR/fusiondirectory.po       |   2 +-
 systems/locale/es/fusiondirectory.po          |   6 +-
 systems/locale/es_CO/fusiondirectory.po       |   6 +-
 systems/locale/es_VE/fusiondirectory.po       |   6 +-
 systems/locale/fa_IR/fusiondirectory.po       |   2 +-
 systems/locale/fi_FI/fusiondirectory.po       |   2 +-
 systems/locale/fr/fusiondirectory.po          |   8 +-
 systems/locale/hu_HU/fusiondirectory.po       |   2 +-
 systems/locale/id/fusiondirectory.po          |   2 +-
 systems/locale/it_IT/fusiondirectory.po       |  12 +-
 systems/locale/ja/fusiondirectory.po          |   2 +-
 systems/locale/ko/fusiondirectory.po          |   2 +-
 systems/locale/lv/fusiondirectory.po          |   2 +-
 systems/locale/nb/fusiondirectory.po          |   2 +-
 systems/locale/nl/fusiondirectory.po          |   2 +-
 systems/locale/pl/fusiondirectory.po          |   2 +-
 systems/locale/pt/fusiondirectory.po          |   6 +-
 systems/locale/pt_BR/fusiondirectory.po       |   6 +-
 systems/locale/ru/fusiondirectory.po          |   2 +-
 systems/locale/ru@petr1708/fusiondirectory.po |   2 +-
 systems/locale/sv/fusiondirectory.po          |   2 +-
 systems/locale/tr_TR/fusiondirectory.po       |  16 +--
 systems/locale/ug/fusiondirectory.po          |   2 +-
 systems/locale/vi_VN/fusiondirectory.po       |   2 +-
 systems/locale/zh/fusiondirectory.po          |   2 +-
 systems/locale/zh_TW/fusiondirectory.po       |   2 +-
 user-reminder/locale/af_ZA/fusiondirectory.po |   2 +-
 user-reminder/locale/ar/fusiondirectory.po    |   2 +-
 user-reminder/locale/ca/fusiondirectory.po    |   2 +-
 user-reminder/locale/cs_CZ/fusiondirectory.po |   2 +-
 user-reminder/locale/de/fusiondirectory.po    |   2 +-
 user-reminder/locale/el_GR/fusiondirectory.po |   2 +-
 user-reminder/locale/es/fusiondirectory.po    |   4 +-
 user-reminder/locale/es_CO/fusiondirectory.po |   4 +-
 user-reminder/locale/es_VE/fusiondirectory.po |   4 +-
 user-reminder/locale/fa_IR/fusiondirectory.po |   2 +-
 user-reminder/locale/fi_FI/fusiondirectory.po |   2 +-
 user-reminder/locale/fr/fusiondirectory.po    |   4 +-
 user-reminder/locale/hu_HU/fusiondirectory.po |   2 +-
 user-reminder/locale/id/fusiondirectory.po    |   2 +-
 user-reminder/locale/it_IT/fusiondirectory.po |   8 +-
 user-reminder/locale/ja/fusiondirectory.po    |   2 +-
 user-reminder/locale/ko/fusiondirectory.po    |   2 +-
 user-reminder/locale/lv/fusiondirectory.po    |   2 +-
 user-reminder/locale/nb/fusiondirectory.po    |   2 +-
 user-reminder/locale/nl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pl/fusiondirectory.po    |   2 +-
 user-reminder/locale/pt/fusiondirectory.po    |   4 +-
 user-reminder/locale/pt_BR/fusiondirectory.po |   4 +-
 user-reminder/locale/ru/fusiondirectory.po    |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 user-reminder/locale/sv/fusiondirectory.po    |   2 +-
 user-reminder/locale/tr_TR/fusiondirectory.po |   2 +-
 user-reminder/locale/ug/fusiondirectory.po    |   2 +-
 user-reminder/locale/vi_VN/fusiondirectory.po |   2 +-
 user-reminder/locale/zh/fusiondirectory.po    |   2 +-
 user-reminder/locale/zh_TW/fusiondirectory.po |   2 +-
 weblink/locale/af_ZA/fusiondirectory.po       |   2 +-
 weblink/locale/ar/fusiondirectory.po          |   2 +-
 weblink/locale/ca/fusiondirectory.po          |   2 +-
 weblink/locale/cs_CZ/fusiondirectory.po       |   2 +-
 weblink/locale/de/fusiondirectory.po          |   2 +-
 weblink/locale/el_GR/fusiondirectory.po       |   2 +-
 weblink/locale/es/fusiondirectory.po          |   4 +-
 weblink/locale/es_CO/fusiondirectory.po       |   4 +-
 weblink/locale/es_VE/fusiondirectory.po       |   4 +-
 weblink/locale/fa_IR/fusiondirectory.po       |   2 +-
 weblink/locale/fi_FI/fusiondirectory.po       |   2 +-
 weblink/locale/fr/fusiondirectory.po          |   4 +-
 weblink/locale/hu_HU/fusiondirectory.po       |   2 +-
 weblink/locale/id/fusiondirectory.po          |   2 +-
 weblink/locale/it_IT/fusiondirectory.po       |   8 +-
 weblink/locale/ja/fusiondirectory.po          |   2 +-
 weblink/locale/ko/fusiondirectory.po          |   2 +-
 weblink/locale/lv/fusiondirectory.po          |   2 +-
 weblink/locale/nb/fusiondirectory.po          |   2 +-
 weblink/locale/nl/fusiondirectory.po          |   2 +-
 weblink/locale/pl/fusiondirectory.po          |   2 +-
 weblink/locale/pt/fusiondirectory.po          |   4 +-
 weblink/locale/pt_BR/fusiondirectory.po       |   4 +-
 weblink/locale/ru/fusiondirectory.po          |   2 +-
 weblink/locale/ru@petr1708/fusiondirectory.po |   2 +-
 weblink/locale/sv/fusiondirectory.po          |   2 +-
 weblink/locale/tr_TR/fusiondirectory.po       |   2 +-
 weblink/locale/ug/fusiondirectory.po          |   2 +-
 weblink/locale/vi_VN/fusiondirectory.po       |   2 +-
 weblink/locale/zh/fusiondirectory.po          |   2 +-
 weblink/locale/zh_TW/fusiondirectory.po       |   2 +-
 webservice/locale/af_ZA/fusiondirectory.po    |   2 +-
 webservice/locale/ar/fusiondirectory.po       |   2 +-
 webservice/locale/ca/fusiondirectory.po       |   2 +-
 webservice/locale/cs_CZ/fusiondirectory.po    |   2 +-
 webservice/locale/de/fusiondirectory.po       |   2 +-
 webservice/locale/el_GR/fusiondirectory.po    |   2 +-
 webservice/locale/es/fusiondirectory.po       |   4 +-
 webservice/locale/es_CO/fusiondirectory.po    |   4 +-
 webservice/locale/es_VE/fusiondirectory.po    |   4 +-
 webservice/locale/fa_IR/fusiondirectory.po    |   2 +-
 webservice/locale/fi_FI/fusiondirectory.po    |   2 +-
 webservice/locale/fr/fusiondirectory.po       |   4 +-
 webservice/locale/hu_HU/fusiondirectory.po    |   2 +-
 webservice/locale/id/fusiondirectory.po       |   2 +-
 webservice/locale/it_IT/fusiondirectory.po    |   8 +-
 webservice/locale/ja/fusiondirectory.po       |   2 +-
 webservice/locale/ko/fusiondirectory.po       |   2 +-
 webservice/locale/lv/fusiondirectory.po       |   2 +-
 webservice/locale/nb/fusiondirectory.po       |   2 +-
 webservice/locale/nl/fusiondirectory.po       |   2 +-
 webservice/locale/pl/fusiondirectory.po       |   2 +-
 webservice/locale/pt/fusiondirectory.po       |   4 +-
 webservice/locale/pt_BR/fusiondirectory.po    |   4 +-
 webservice/locale/ru/fusiondirectory.po       |   2 +-
 .../locale/ru@petr1708/fusiondirectory.po     |   2 +-
 webservice/locale/sv/fusiondirectory.po       |   2 +-
 webservice/locale/tr_TR/fusiondirectory.po    |   2 +-
 webservice/locale/ug/fusiondirectory.po       |   2 +-
 webservice/locale/vi_VN/fusiondirectory.po    |   2 +-
 webservice/locale/zh/fusiondirectory.po       |   2 +-
 webservice/locale/zh_TW/fusiondirectory.po    |   2 +-
 1581 files changed, 4685 insertions(+), 4608 deletions(-)

diff --git a/alias/locale/af_ZA/fusiondirectory.po b/alias/locale/af_ZA/fusiondirectory.po
index 199559ae93..11fdec22a7 100644
--- a/alias/locale/af_ZA/fusiondirectory.po
+++ b/alias/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po
index 6e6c2da667..061a91b38b 100644
--- a/alias/locale/ar/fusiondirectory.po
+++ b/alias/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po
index 871eb4f254..053d07e5a1 100644
--- a/alias/locale/ca/fusiondirectory.po
+++ b/alias/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po
index 868a47f434..9fb88584e2 100644
--- a/alias/locale/cs_CZ/fusiondirectory.po
+++ b/alias/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po
index 0e8e964b85..b4735fa62f 100644
--- a/alias/locale/de/fusiondirectory.po
+++ b/alias/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po
index d381c2cedf..5cee4d434c 100644
--- a/alias/locale/el_GR/fusiondirectory.po
+++ b/alias/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po
index e816f4df0b..d7a36d4196 100644
--- a/alias/locale/es/fusiondirectory.po
+++ b/alias/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po
index 21f1efe0d7..a29998b632 100644
--- a/alias/locale/es_CO/fusiondirectory.po
+++ b/alias/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po
index 95e16c7b72..f007066f30 100644
--- a/alias/locale/es_VE/fusiondirectory.po
+++ b/alias/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po
index 623a6de347..6e4754c75b 100644
--- a/alias/locale/fa_IR/fusiondirectory.po
+++ b/alias/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po
index e8ae9885e0..77621db0cb 100644
--- a/alias/locale/fi_FI/fusiondirectory.po
+++ b/alias/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po
index 1940d85d8b..120cc47d6c 100644
--- a/alias/locale/fr/fusiondirectory.po
+++ b/alias/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po
index 310610ccd2..b6b1b08083 100644
--- a/alias/locale/hu_HU/fusiondirectory.po
+++ b/alias/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po
index 8af4c5d5b9..285edd77d3 100644
--- a/alias/locale/id/fusiondirectory.po
+++ b/alias/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po
index 962a0ea738..b28b75d3a3 100644
--- a/alias/locale/it_IT/fusiondirectory.po
+++ b/alias/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/ja/fusiondirectory.po b/alias/locale/ja/fusiondirectory.po
index e5e13eeaf9..51dea7a061 100644
--- a/alias/locale/ja/fusiondirectory.po
+++ b/alias/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ko/fusiondirectory.po b/alias/locale/ko/fusiondirectory.po
index 5b6ac111d3..b76cc191a9 100644
--- a/alias/locale/ko/fusiondirectory.po
+++ b/alias/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po
index 209ac2c905..d22e0923ec 100644
--- a/alias/locale/lv/fusiondirectory.po
+++ b/alias/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po
index 98b8325560..144d6c6d83 100644
--- a/alias/locale/nb/fusiondirectory.po
+++ b/alias/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po
index 68d86f9e86..0e80b2c1a4 100644
--- a/alias/locale/nl/fusiondirectory.po
+++ b/alias/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po
index c04cbb74a9..a682396e0b 100644
--- a/alias/locale/pl/fusiondirectory.po
+++ b/alias/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po
index e7f14101ce..d4ecc215f0 100644
--- a/alias/locale/pt/fusiondirectory.po
+++ b/alias/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po
index b2f3f03012..70d2857c68 100644
--- a/alias/locale/pt_BR/fusiondirectory.po
+++ b/alias/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/alias/class_mailAliasDistribution.inc:31
 #: admin/alias/class_mailAliasDistribution.inc:32
diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po
index 93930da433..5d48f7a5ad 100644
--- a/alias/locale/ru/fusiondirectory.po
+++ b/alias/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po
index 46232c909c..2892ed18f6 100644
--- a/alias/locale/ru@petr1708/fusiondirectory.po
+++ b/alias/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po
index f82939e3f8..ca521a3c89 100644
--- a/alias/locale/sv/fusiondirectory.po
+++ b/alias/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/alias/locale/tr_TR/fusiondirectory.po b/alias/locale/tr_TR/fusiondirectory.po
index 3518e9f760..b5cbe19abc 100644
--- a/alias/locale/tr_TR/fusiondirectory.po
+++ b/alias/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po
index c204fd0c95..9b9d01dd29 100644
--- a/alias/locale/ug/fusiondirectory.po
+++ b/alias/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po
index 3ead70db7d..aa3ea0433c 100644
--- a/alias/locale/vi_VN/fusiondirectory.po
+++ b/alias/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po
index 4890934098..302083bd42 100644
--- a/alias/locale/zh/fusiondirectory.po
+++ b/alias/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/alias/locale/zh_TW/fusiondirectory.po b/alias/locale/zh_TW/fusiondirectory.po
index b949db93af..90162df752 100644
--- a/alias/locale/zh_TW/fusiondirectory.po
+++ b/alias/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:44+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/af_ZA/fusiondirectory.po b/applications/locale/af_ZA/fusiondirectory.po
index 4cd7ce9ddf..5593da1295 100644
--- a/applications/locale/af_ZA/fusiondirectory.po
+++ b/applications/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po
index 0160753531..4c304b2adb 100644
--- a/applications/locale/ar/fusiondirectory.po
+++ b/applications/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po
index 6102885201..875059f2d8 100644
--- a/applications/locale/ca/fusiondirectory.po
+++ b/applications/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po
index 333a274f78..179a53e438 100644
--- a/applications/locale/cs_CZ/fusiondirectory.po
+++ b/applications/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po
index 1535148ef7..a8e39d1f51 100644
--- a/applications/locale/de/fusiondirectory.po
+++ b/applications/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po
index e0e2e38d18..448c13a5c5 100644
--- a/applications/locale/el_GR/fusiondirectory.po
+++ b/applications/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po
index a624ad68a3..64ec58ba01 100644
--- a/applications/locale/es/fusiondirectory.po
+++ b/applications/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po
index 9dbce1380e..e3e6c43fbf 100644
--- a/applications/locale/es_CO/fusiondirectory.po
+++ b/applications/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po
index fd10850087..8510e4b057 100644
--- a/applications/locale/es_VE/fusiondirectory.po
+++ b/applications/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po
index a04c43c2a5..8b2573f3ee 100644
--- a/applications/locale/fa_IR/fusiondirectory.po
+++ b/applications/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po
index 5dda76acb6..f8d2b713c6 100644
--- a/applications/locale/fi_FI/fusiondirectory.po
+++ b/applications/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po
index e00e81e6e8..d8d5ee41a3 100644
--- a/applications/locale/fr/fusiondirectory.po
+++ b/applications/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po
index 81f23f4c37..6f6462202c 100644
--- a/applications/locale/hu_HU/fusiondirectory.po
+++ b/applications/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po
index 4658f3179f..3832f80382 100644
--- a/applications/locale/id/fusiondirectory.po
+++ b/applications/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po
index d4f7e383f1..aa1f72b122 100644
--- a/applications/locale/it_IT/fusiondirectory.po
+++ b/applications/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/ja/fusiondirectory.po b/applications/locale/ja/fusiondirectory.po
index d33bc62112..443579d17f 100644
--- a/applications/locale/ja/fusiondirectory.po
+++ b/applications/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ko/fusiondirectory.po b/applications/locale/ko/fusiondirectory.po
index 10e4c522c9..a37e695807 100644
--- a/applications/locale/ko/fusiondirectory.po
+++ b/applications/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po
index 264b77d9c8..7ed778b353 100644
--- a/applications/locale/lv/fusiondirectory.po
+++ b/applications/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po
index ead47cc885..8e51ea3b0c 100644
--- a/applications/locale/nb/fusiondirectory.po
+++ b/applications/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po
index 522985d618..ae8bf9f5aa 100644
--- a/applications/locale/nl/fusiondirectory.po
+++ b/applications/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po
index 2ce06e6246..6f9111f443 100644
--- a/applications/locale/pl/fusiondirectory.po
+++ b/applications/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po
index 0731d0068a..608abcc8b8 100644
--- a/applications/locale/pt/fusiondirectory.po
+++ b/applications/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po
index 3a3a83c62a..fc6e1275c7 100644
--- a/applications/locale/pt_BR/fusiondirectory.po
+++ b/applications/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/applications/class_applicationManagement.inc:28
 #: admin/roles/class_applicationRights.inc:30
diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po
index 71d90d80d1..b2e77c563d 100644
--- a/applications/locale/ru/fusiondirectory.po
+++ b/applications/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po
index 3e6d63edb6..ec412d8f15 100644
--- a/applications/locale/ru@petr1708/fusiondirectory.po
+++ b/applications/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po
index 2cf952022a..5c97ca5e1d 100644
--- a/applications/locale/sv/fusiondirectory.po
+++ b/applications/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/applications/locale/tr_TR/fusiondirectory.po b/applications/locale/tr_TR/fusiondirectory.po
index a073aeef16..a82a203809 100644
--- a/applications/locale/tr_TR/fusiondirectory.po
+++ b/applications/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po
index 7c3c8562e0..1aca066077 100644
--- a/applications/locale/ug/fusiondirectory.po
+++ b/applications/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po
index d6a885a883..3f879906c2 100644
--- a/applications/locale/vi_VN/fusiondirectory.po
+++ b/applications/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po
index 9501c4deb1..695c3839a7 100644
--- a/applications/locale/zh/fusiondirectory.po
+++ b/applications/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/applications/locale/zh_TW/fusiondirectory.po b/applications/locale/zh_TW/fusiondirectory.po
index 11ef3c85f3..9ced1ff071 100644
--- a/applications/locale/zh_TW/fusiondirectory.po
+++ b/applications/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/af_ZA/fusiondirectory.po b/argonaut/locale/af_ZA/fusiondirectory.po
index c9cdd3e159..9f4467a10b 100644
--- a/argonaut/locale/af_ZA/fusiondirectory.po
+++ b/argonaut/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po
index 1816889f23..b75858d6e4 100644
--- a/argonaut/locale/ar/fusiondirectory.po
+++ b/argonaut/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po
index 18214c4175..dfbcf445e4 100644
--- a/argonaut/locale/ca/fusiondirectory.po
+++ b/argonaut/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po
index 0e67c1190a..5ef4861744 100644
--- a/argonaut/locale/cs_CZ/fusiondirectory.po
+++ b/argonaut/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po
index b0634012cb..e529a4d9ee 100644
--- a/argonaut/locale/de/fusiondirectory.po
+++ b/argonaut/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po
index 50b8cd4f00..bf8b0cca6b 100644
--- a/argonaut/locale/el_GR/fusiondirectory.po
+++ b/argonaut/locale/el_GR/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po
index c4cea9565c..1cf30c5dfd 100644
--- a/argonaut/locale/es/fusiondirectory.po
+++ b/argonaut/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po
index 023582c509..7276250675 100644
--- a/argonaut/locale/es_CO/fusiondirectory.po
+++ b/argonaut/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po
index 7cbf192b76..5a7b02a4dc 100644
--- a/argonaut/locale/es_VE/fusiondirectory.po
+++ b/argonaut/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po
index a5dd33662f..0d48c2bbad 100644
--- a/argonaut/locale/fa_IR/fusiondirectory.po
+++ b/argonaut/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po
index d243352e19..77ee3dafe1 100644
--- a/argonaut/locale/fi_FI/fusiondirectory.po
+++ b/argonaut/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po
index ad69bc58ac..28d95d78a4 100644
--- a/argonaut/locale/fr/fusiondirectory.po
+++ b/argonaut/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po
index f4182f2990..540c493c2a 100644
--- a/argonaut/locale/hu_HU/fusiondirectory.po
+++ b/argonaut/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po
index 4dc29d9f22..6af73fe5e6 100644
--- a/argonaut/locale/id/fusiondirectory.po
+++ b/argonaut/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po
index 8f4d60fa5f..1d8d8d8d27 100644
--- a/argonaut/locale/it_IT/fusiondirectory.po
+++ b/argonaut/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2019
+# Paola Penati <paola.penati@opensides.be>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/ja/fusiondirectory.po b/argonaut/locale/ja/fusiondirectory.po
index 0e39ca958e..67cb8c2d56 100644
--- a/argonaut/locale/ja/fusiondirectory.po
+++ b/argonaut/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/ko/fusiondirectory.po b/argonaut/locale/ko/fusiondirectory.po
index 68dea92c1e..f1337315ce 100644
--- a/argonaut/locale/ko/fusiondirectory.po
+++ b/argonaut/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po
index 730c178443..afc95d3765 100644
--- a/argonaut/locale/lv/fusiondirectory.po
+++ b/argonaut/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po
index 54b86591fd..8f552198fe 100644
--- a/argonaut/locale/nb/fusiondirectory.po
+++ b/argonaut/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po
index f9a0fbecf3..a78d7a71e6 100644
--- a/argonaut/locale/nl/fusiondirectory.po
+++ b/argonaut/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po
index 967cfca252..9075d66dad 100644
--- a/argonaut/locale/pl/fusiondirectory.po
+++ b/argonaut/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po
index dcee730072..0cdbf80deb 100644
--- a/argonaut/locale/pt/fusiondirectory.po
+++ b/argonaut/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po
index fa68215c40..edb76cc24a 100644
--- a/argonaut/locale/pt_BR/fusiondirectory.po
+++ b/argonaut/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_supportDaemon.inc:107
 msgid "Multiple argonaut server found. Only one is supported"
diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po
index d01430ad0d..a4d1ca2f95 100644
--- a/argonaut/locale/ru/fusiondirectory.po
+++ b/argonaut/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po
index b875a663b0..e756e2424e 100644
--- a/argonaut/locale/ru@petr1708/fusiondirectory.po
+++ b/argonaut/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po
index fcaa454384..feed418b9e 100644
--- a/argonaut/locale/sv/fusiondirectory.po
+++ b/argonaut/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/argonaut/locale/tr_TR/fusiondirectory.po b/argonaut/locale/tr_TR/fusiondirectory.po
index 64ed8bbfb6..a5a40024d0 100644
--- a/argonaut/locale/tr_TR/fusiondirectory.po
+++ b/argonaut/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -626,7 +626,7 @@ msgstr ""
 
 #: addons/argonaut/class_argonautImportFile.inc:63
 msgid "Upload"
-msgstr ""
+msgstr "Yükleme"
 
 #: addons/argonaut/class_argonautImportFile.inc:67
 msgid "Import file"
@@ -717,11 +717,11 @@ msgstr ""
 
 #: addons/argonaut/class_argonautAction.inc:92
 msgid "Minutes"
-msgstr ""
+msgstr "Dakikalar"
 
 #: addons/argonaut/class_argonautAction.inc:92
 msgid "Hours"
-msgstr ""
+msgstr "Saatler"
 
 #: addons/argonaut/class_argonautAction.inc:92
 msgid "Days"
@@ -773,7 +773,7 @@ msgstr ""
 #: addons/argonaut/class_argonautQueue.inc:126
 #: addons/argonaut/deploy-list.xml:86 addons/argonaut/deploy-list.xml:136
 msgid "Remove"
-msgstr ""
+msgstr "Kaldır"
 
 #: addons/argonaut/class_argonautQueue.inc:127
 #, php-format
diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po
index 41277decc8..624fde588f 100644
--- a/argonaut/locale/ug/fusiondirectory.po
+++ b/argonaut/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po
index d9507d68d2..c5d513eef2 100644
--- a/argonaut/locale/vi_VN/fusiondirectory.po
+++ b/argonaut/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po
index 819643273b..42f448e98e 100644
--- a/argonaut/locale/zh/fusiondirectory.po
+++ b/argonaut/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/argonaut/locale/zh_TW/fusiondirectory.po b/argonaut/locale/zh_TW/fusiondirectory.po
index 410451f309..526f4edbee 100644
--- a/argonaut/locale/zh_TW/fusiondirectory.po
+++ b/argonaut/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:42+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/af_ZA/fusiondirectory.po b/audit/locale/af_ZA/fusiondirectory.po
index 7b4b0b60fc..54b487d44a 100644
--- a/audit/locale/af_ZA/fusiondirectory.po
+++ b/audit/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po
index 0f0b08ed0a..abe3b30e27 100644
--- a/audit/locale/ar/fusiondirectory.po
+++ b/audit/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po
index c58ea18cfe..35d1bef989 100644
--- a/audit/locale/ca/fusiondirectory.po
+++ b/audit/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po
index 6512988540..bd3de2d3cf 100644
--- a/audit/locale/cs_CZ/fusiondirectory.po
+++ b/audit/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po
index b270e73f52..12ebad3f50 100644
--- a/audit/locale/de/fusiondirectory.po
+++ b/audit/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po
index a2d1c74bd3..28487c778a 100644
--- a/audit/locale/el_GR/fusiondirectory.po
+++ b/audit/locale/el_GR/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po
index c4d08034c3..3de2730606 100644
--- a/audit/locale/es/fusiondirectory.po
+++ b/audit/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po
index 8b09f467ac..85680a5d30 100644
--- a/audit/locale/es_CO/fusiondirectory.po
+++ b/audit/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po
index 1395ade481..894d5cf424 100644
--- a/audit/locale/es_VE/fusiondirectory.po
+++ b/audit/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po
index 98f9404f69..cf43f466d9 100644
--- a/audit/locale/fa_IR/fusiondirectory.po
+++ b/audit/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po
index afa13799e5..7b1a2f230d 100644
--- a/audit/locale/fi_FI/fusiondirectory.po
+++ b/audit/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po
index 2e828c87b5..123c9c1493 100644
--- a/audit/locale/fr/fusiondirectory.po
+++ b/audit/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po
index 1626d95df3..17c8c28d7e 100644
--- a/audit/locale/hu_HU/fusiondirectory.po
+++ b/audit/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po
index 2d88c7f00b..7277c017e1 100644
--- a/audit/locale/id/fusiondirectory.po
+++ b/audit/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po
index 6de86077b3..e819e3c310 100644
--- a/audit/locale/it_IT/fusiondirectory.po
+++ b/audit/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/ja/fusiondirectory.po b/audit/locale/ja/fusiondirectory.po
index dc20dcdb67..d8f14ac601 100644
--- a/audit/locale/ja/fusiondirectory.po
+++ b/audit/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/ko/fusiondirectory.po b/audit/locale/ko/fusiondirectory.po
index 60c47a017d..dd8c308986 100644
--- a/audit/locale/ko/fusiondirectory.po
+++ b/audit/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po
index 4b970036df..b5bc7b8c0e 100644
--- a/audit/locale/lv/fusiondirectory.po
+++ b/audit/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po
index 9080d19883..8f2cbeccd2 100644
--- a/audit/locale/nb/fusiondirectory.po
+++ b/audit/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po
index f77d41cf56..86eb58ce85 100644
--- a/audit/locale/nl/fusiondirectory.po
+++ b/audit/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po
index 5c88d72242..23acd8cf55 100644
--- a/audit/locale/pl/fusiondirectory.po
+++ b/audit/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po
index f8a6d720ba..1d474a3b80 100644
--- a/audit/locale/pt/fusiondirectory.po
+++ b/audit/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po
index 5021bf255b..4b55a04ff8 100644
--- a/audit/locale/pt_BR/fusiondirectory.po
+++ b/audit/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/audit/class_auditEvent.inc:28
 #, php-format
diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po
index 756296ecb9..7bf6589606 100644
--- a/audit/locale/ru/fusiondirectory.po
+++ b/audit/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po
index b43efb1627..53f3384f8e 100644
--- a/audit/locale/ru@petr1708/fusiondirectory.po
+++ b/audit/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po
index b6a1414677..d2f6a02f71 100644
--- a/audit/locale/sv/fusiondirectory.po
+++ b/audit/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/audit/locale/tr_TR/fusiondirectory.po b/audit/locale/tr_TR/fusiondirectory.po
index 98f2b04150..d93adbe7e6 100644
--- a/audit/locale/tr_TR/fusiondirectory.po
+++ b/audit/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,7 +41,7 @@ msgstr ""
 #: admin/audit/class_auditEvent.inc:65
 #: admin/audit/class_auditManagement.inc:111
 msgid "Time"
-msgstr ""
+msgstr "Zaman"
 
 #: admin/audit/class_auditEvent.inc:65
 msgid "Date and time this event happened"
@@ -100,7 +104,7 @@ msgstr ""
 
 #: admin/audit/class_auditManagement.inc:132
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
 #: admin/audit/class_auditManagement.inc:139
 msgid "Target"
diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po
index c1716b0263..fb4faf4115 100644
--- a/audit/locale/ug/fusiondirectory.po
+++ b/audit/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po
index 4081087c3a..e478d5844a 100644
--- a/audit/locale/vi_VN/fusiondirectory.po
+++ b/audit/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po
index 1ca83c2fce..c835da56dd 100644
--- a/audit/locale/zh/fusiondirectory.po
+++ b/audit/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/audit/locale/zh_TW/fusiondirectory.po b/audit/locale/zh_TW/fusiondirectory.po
index 4cf4686595..03de3a0624 100644
--- a/audit/locale/zh_TW/fusiondirectory.po
+++ b/audit/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:43+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/af_ZA/fusiondirectory.po b/autofs/locale/af_ZA/fusiondirectory.po
index 1c134613bc..d9eb76c040 100644
--- a/autofs/locale/af_ZA/fusiondirectory.po
+++ b/autofs/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po
index 8be55bd063..cc501b14fa 100644
--- a/autofs/locale/ar/fusiondirectory.po
+++ b/autofs/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po
index 8b77526834..f07e5674ec 100644
--- a/autofs/locale/ca/fusiondirectory.po
+++ b/autofs/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po
index f0a2bb087d..17f320d514 100644
--- a/autofs/locale/cs_CZ/fusiondirectory.po
+++ b/autofs/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po
index b3909952a7..110144294c 100644
--- a/autofs/locale/de/fusiondirectory.po
+++ b/autofs/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po
index 3d73e5607f..e76b9e0bfd 100644
--- a/autofs/locale/el_GR/fusiondirectory.po
+++ b/autofs/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po
index c41a32edec..93cb521fbb 100644
--- a/autofs/locale/es/fusiondirectory.po
+++ b/autofs/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po
index dcf30e4238..25bca29ffd 100644
--- a/autofs/locale/es_CO/fusiondirectory.po
+++ b/autofs/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po
index f0661f05c2..f1a0e56ec2 100644
--- a/autofs/locale/es_VE/fusiondirectory.po
+++ b/autofs/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po
index a84757d436..c7c81eb343 100644
--- a/autofs/locale/fa_IR/fusiondirectory.po
+++ b/autofs/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po
index f49d0c148a..b79bcadd86 100644
--- a/autofs/locale/fi_FI/fusiondirectory.po
+++ b/autofs/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po
index 1974dfafa8..28b1f9689f 100644
--- a/autofs/locale/fr/fusiondirectory.po
+++ b/autofs/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po
index 4eb0e493a4..8355035045 100644
--- a/autofs/locale/hu_HU/fusiondirectory.po
+++ b/autofs/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po
index ba8cc8b73b..27b8f8ae1a 100644
--- a/autofs/locale/id/fusiondirectory.po
+++ b/autofs/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po
index c18fb852e7..063fe24aeb 100644
--- a/autofs/locale/it_IT/fusiondirectory.po
+++ b/autofs/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/ja/fusiondirectory.po b/autofs/locale/ja/fusiondirectory.po
index ab82f6efdc..31f58a7ac2 100644
--- a/autofs/locale/ja/fusiondirectory.po
+++ b/autofs/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ko/fusiondirectory.po b/autofs/locale/ko/fusiondirectory.po
index cae2bca32f..3beee52176 100644
--- a/autofs/locale/ko/fusiondirectory.po
+++ b/autofs/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po
index 7b001e901f..60b363c4ad 100644
--- a/autofs/locale/lv/fusiondirectory.po
+++ b/autofs/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po
index f432646f61..f80212ac6d 100644
--- a/autofs/locale/nb/fusiondirectory.po
+++ b/autofs/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po
index 34465ba687..477c30a500 100644
--- a/autofs/locale/nl/fusiondirectory.po
+++ b/autofs/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po
index 24249858b4..64c2b7b7fb 100644
--- a/autofs/locale/pl/fusiondirectory.po
+++ b/autofs/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po
index 0b551945af..53c7c8d913 100644
--- a/autofs/locale/pt/fusiondirectory.po
+++ b/autofs/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po
index 96db36d8c5..8ec7f40cef 100644
--- a/autofs/locale/pt_BR/fusiondirectory.po
+++ b/autofs/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/autofs/class_autofsManagement.inc:31
 msgid "Auto fs"
diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po
index 15c455ee79..b871b17e05 100644
--- a/autofs/locale/ru/fusiondirectory.po
+++ b/autofs/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po
index c668824266..84cb8ec7bf 100644
--- a/autofs/locale/ru@petr1708/fusiondirectory.po
+++ b/autofs/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po
index d6ac112edd..2effea16e5 100644
--- a/autofs/locale/sv/fusiondirectory.po
+++ b/autofs/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/autofs/locale/tr_TR/fusiondirectory.po b/autofs/locale/tr_TR/fusiondirectory.po
index 9a1aaa1ee0..9d73ebfbb1 100644
--- a/autofs/locale/tr_TR/fusiondirectory.po
+++ b/autofs/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po
index 76dd98934b..93d6252e8a 100644
--- a/autofs/locale/ug/fusiondirectory.po
+++ b/autofs/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po
index efcf250a08..c1f666ea6c 100644
--- a/autofs/locale/vi_VN/fusiondirectory.po
+++ b/autofs/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po
index 4051051382..406068c44f 100644
--- a/autofs/locale/zh/fusiondirectory.po
+++ b/autofs/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/autofs/locale/zh_TW/fusiondirectory.po b/autofs/locale/zh_TW/fusiondirectory.po
index 662e75136d..e8dc556ccf 100644
--- a/autofs/locale/zh_TW/fusiondirectory.po
+++ b/autofs/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:05+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/af_ZA/fusiondirectory.po b/certificates/locale/af_ZA/fusiondirectory.po
index d0d93a3da2..3997e20b65 100644
--- a/certificates/locale/af_ZA/fusiondirectory.po
+++ b/certificates/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po
index 6cfe0e2096..d3d7554c5e 100644
--- a/certificates/locale/ar/fusiondirectory.po
+++ b/certificates/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po
index 2321368c19..450ab59bad 100644
--- a/certificates/locale/ca/fusiondirectory.po
+++ b/certificates/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po
index 2f45f18ae5..cb5785e669 100644
--- a/certificates/locale/cs_CZ/fusiondirectory.po
+++ b/certificates/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po
index 7e1dcbb3a2..070ceeb4cf 100644
--- a/certificates/locale/de/fusiondirectory.po
+++ b/certificates/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po
index c69102db55..0aab050239 100644
--- a/certificates/locale/el_GR/fusiondirectory.po
+++ b/certificates/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po
index bcebfaafd7..a6f422b6c8 100644
--- a/certificates/locale/es/fusiondirectory.po
+++ b/certificates/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po
index 39be44342a..25156ab695 100644
--- a/certificates/locale/es_CO/fusiondirectory.po
+++ b/certificates/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po
index 4903bf394a..472c9de096 100644
--- a/certificates/locale/es_VE/fusiondirectory.po
+++ b/certificates/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po
index f39570a685..ed2ffd1110 100644
--- a/certificates/locale/fa_IR/fusiondirectory.po
+++ b/certificates/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po
index 656c726a56..a80768f29e 100644
--- a/certificates/locale/fi_FI/fusiondirectory.po
+++ b/certificates/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po
index 2221482297..88b3766158 100644
--- a/certificates/locale/fr/fusiondirectory.po
+++ b/certificates/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po
index 293b2eec19..46ebf856b2 100644
--- a/certificates/locale/hu_HU/fusiondirectory.po
+++ b/certificates/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po
index 2043c562e7..85c583f367 100644
--- a/certificates/locale/id/fusiondirectory.po
+++ b/certificates/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po
index 41af35b5ac..8c6f788c22 100644
--- a/certificates/locale/it_IT/fusiondirectory.po
+++ b/certificates/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/ja/fusiondirectory.po b/certificates/locale/ja/fusiondirectory.po
index eb233a4136..74da39bcb1 100644
--- a/certificates/locale/ja/fusiondirectory.po
+++ b/certificates/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/ko/fusiondirectory.po b/certificates/locale/ko/fusiondirectory.po
index faf5ed1e52..f1404b27fb 100644
--- a/certificates/locale/ko/fusiondirectory.po
+++ b/certificates/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po
index ec6a8ffb55..a492d23726 100644
--- a/certificates/locale/lv/fusiondirectory.po
+++ b/certificates/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po
index ced3a994c3..8ca46c27d8 100644
--- a/certificates/locale/nb/fusiondirectory.po
+++ b/certificates/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po
index 1deeb60fd1..6a1be09a97 100644
--- a/certificates/locale/nl/fusiondirectory.po
+++ b/certificates/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po
index 7583fd32a0..b37f332eef 100644
--- a/certificates/locale/pl/fusiondirectory.po
+++ b/certificates/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po
index b5c7e546a2..ce6e23fee4 100644
--- a/certificates/locale/pt/fusiondirectory.po
+++ b/certificates/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po
index 15c89eaab7..7feb9b922e 100644
--- a/certificates/locale/pt_BR/fusiondirectory.po
+++ b/certificates/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po
index 4f519cd0b7..49ef71f891 100644
--- a/certificates/locale/ru/fusiondirectory.po
+++ b/certificates/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po
index 16ae5958a8..6a23669844 100644
--- a/certificates/locale/ru@petr1708/fusiondirectory.po
+++ b/certificates/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po
index b9250607f5..4798cc68ba 100644
--- a/certificates/locale/sv/fusiondirectory.po
+++ b/certificates/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/certificates/locale/tr_TR/fusiondirectory.po b/certificates/locale/tr_TR/fusiondirectory.po
index 26ff5c62fe..e2a09bb67c 100644
--- a/certificates/locale/tr_TR/fusiondirectory.po
+++ b/certificates/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,7 +24,7 @@ msgstr ""
 #: personal/certificates/class_userCertificates.inc:31
 #: personal/certificates/class_userCertificates.inc:32
 msgid "Download"
-msgstr ""
+msgstr "İndir"
 
 #: personal/certificates/class_userCertificates.inc:75
 msgid "Unknown format"
diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po
index 5a5eb7b86a..1c30963d14 100644
--- a/certificates/locale/ug/fusiondirectory.po
+++ b/certificates/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po
index a27550ea18..ffb5ddaa6e 100644
--- a/certificates/locale/vi_VN/fusiondirectory.po
+++ b/certificates/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po
index 58db0627e3..fe6672f209 100644
--- a/certificates/locale/zh/fusiondirectory.po
+++ b/certificates/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/certificates/locale/zh_TW/fusiondirectory.po b/certificates/locale/zh_TW/fusiondirectory.po
index cdc55d967e..bbfa94408e 100644
--- a/certificates/locale/zh_TW/fusiondirectory.po
+++ b/certificates/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/af_ZA/fusiondirectory.po b/community/locale/af_ZA/fusiondirectory.po
index 35ef4b620d..2a4c63383f 100644
--- a/community/locale/af_ZA/fusiondirectory.po
+++ b/community/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po
index 91681d4559..de975de155 100644
--- a/community/locale/ar/fusiondirectory.po
+++ b/community/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po
index 750ce90565..7af59c9e49 100644
--- a/community/locale/ca/fusiondirectory.po
+++ b/community/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po
index 450673eef1..ba086eb49f 100644
--- a/community/locale/cs_CZ/fusiondirectory.po
+++ b/community/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po
index 9368c17910..b67d2c54a3 100644
--- a/community/locale/de/fusiondirectory.po
+++ b/community/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po
index 87cbdaef75..6510d843f4 100644
--- a/community/locale/el_GR/fusiondirectory.po
+++ b/community/locale/el_GR/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po
index 8de1de15ad..b40382e694 100644
--- a/community/locale/es/fusiondirectory.po
+++ b/community/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po
index e4c7b9ca9a..bebda888ab 100644
--- a/community/locale/es_CO/fusiondirectory.po
+++ b/community/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po
index 24cc0cc1fb..7f13c22512 100644
--- a/community/locale/es_VE/fusiondirectory.po
+++ b/community/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po
index 17da1de549..d878e9f167 100644
--- a/community/locale/fa_IR/fusiondirectory.po
+++ b/community/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po
index 921aec1ae8..85a24992c4 100644
--- a/community/locale/fi_FI/fusiondirectory.po
+++ b/community/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po
index 6e2b9ed037..d35351b2e9 100644
--- a/community/locale/fr/fusiondirectory.po
+++ b/community/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po
index 9f4844f100..066a214819 100644
--- a/community/locale/hu_HU/fusiondirectory.po
+++ b/community/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po
index 599561a561..677478ad8d 100644
--- a/community/locale/id/fusiondirectory.po
+++ b/community/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po
index 8413fb9a83..e9503407c7 100644
--- a/community/locale/it_IT/fusiondirectory.po
+++ b/community/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/ja/fusiondirectory.po b/community/locale/ja/fusiondirectory.po
index 38c6d68cc6..97c02befcd 100644
--- a/community/locale/ja/fusiondirectory.po
+++ b/community/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ko/fusiondirectory.po b/community/locale/ko/fusiondirectory.po
index 792917b2bb..10eeb26679 100644
--- a/community/locale/ko/fusiondirectory.po
+++ b/community/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po
index 45bc95ec51..6c2245be0e 100644
--- a/community/locale/lv/fusiondirectory.po
+++ b/community/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po
index 6e7a3a865b..a98a657d88 100644
--- a/community/locale/nb/fusiondirectory.po
+++ b/community/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po
index b8622ade44..a87ee6da30 100644
--- a/community/locale/nl/fusiondirectory.po
+++ b/community/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po
index 919d0f45d4..106ea1273f 100644
--- a/community/locale/pl/fusiondirectory.po
+++ b/community/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po
index 7bc0f1e610..c6e73b17b3 100644
--- a/community/locale/pt/fusiondirectory.po
+++ b/community/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po
index 3d28c28551..010ebd7e2d 100644
--- a/community/locale/pt_BR/fusiondirectory.po
+++ b/community/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/departments/community/class_communityOrganization.inc:29
 msgid "Community organization"
diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po
index 0885028d4e..551daa4374 100644
--- a/community/locale/ru/fusiondirectory.po
+++ b/community/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po
index de26fb6e88..abb304f020 100644
--- a/community/locale/ru@petr1708/fusiondirectory.po
+++ b/community/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po
index 872d8b6974..bcd8a66d41 100644
--- a/community/locale/sv/fusiondirectory.po
+++ b/community/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/community/locale/tr_TR/fusiondirectory.po b/community/locale/tr_TR/fusiondirectory.po
index 421d0b31e1..0b95d5abc7 100644
--- a/community/locale/tr_TR/fusiondirectory.po
+++ b/community/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po
index 52a98035dc..aac363eed3 100644
--- a/community/locale/ug/fusiondirectory.po
+++ b/community/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po
index 0d85ec8158..c8d4bbcfe0 100644
--- a/community/locale/vi_VN/fusiondirectory.po
+++ b/community/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po
index 5832272bc3..ad106b66d1 100644
--- a/community/locale/zh/fusiondirectory.po
+++ b/community/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/community/locale/zh_TW/fusiondirectory.po b/community/locale/zh_TW/fusiondirectory.po
index 3c3aaf6d72..c5a0734f44 100644
--- a/community/locale/zh_TW/fusiondirectory.po
+++ b/community/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:06+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/af_ZA/fusiondirectory.po b/cyrus/locale/af_ZA/fusiondirectory.po
index 952031992e..e3ddcfadf5 100644
--- a/cyrus/locale/af_ZA/fusiondirectory.po
+++ b/cyrus/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po
index 269f4c0a4e..3b4cd0172f 100644
--- a/cyrus/locale/ar/fusiondirectory.po
+++ b/cyrus/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po
index 156776a395..69282d8ba7 100644
--- a/cyrus/locale/ca/fusiondirectory.po
+++ b/cyrus/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po
index 9db024684a..48e0e19d26 100644
--- a/cyrus/locale/cs_CZ/fusiondirectory.po
+++ b/cyrus/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po
index 14f87e6ebb..aeb14afdfa 100644
--- a/cyrus/locale/de/fusiondirectory.po
+++ b/cyrus/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po
index 6a380e6816..e62b72f533 100644
--- a/cyrus/locale/el_GR/fusiondirectory.po
+++ b/cyrus/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po
index 903b433eaa..ed9f9d92c1 100644
--- a/cyrus/locale/es/fusiondirectory.po
+++ b/cyrus/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po
index 74b9c31ef6..35489b1d0f 100644
--- a/cyrus/locale/es_CO/fusiondirectory.po
+++ b/cyrus/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po
index 9d04afd879..328967b70a 100644
--- a/cyrus/locale/es_VE/fusiondirectory.po
+++ b/cyrus/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po
index 2b3f24a2b8..468d196cc3 100644
--- a/cyrus/locale/fa_IR/fusiondirectory.po
+++ b/cyrus/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po
index c4376c76d3..aee6cee27c 100644
--- a/cyrus/locale/fi_FI/fusiondirectory.po
+++ b/cyrus/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po
index f8d9be70a3..9d33666344 100644
--- a/cyrus/locale/fr/fusiondirectory.po
+++ b/cyrus/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po
index 025e96e515..65c9a8cdc8 100644
--- a/cyrus/locale/hu_HU/fusiondirectory.po
+++ b/cyrus/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po
index 3d8245f6c3..9757977d7e 100644
--- a/cyrus/locale/id/fusiondirectory.po
+++ b/cyrus/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po
index fabbd2a0c3..7ccacc2538 100644
--- a/cyrus/locale/it_IT/fusiondirectory.po
+++ b/cyrus/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/ja/fusiondirectory.po b/cyrus/locale/ja/fusiondirectory.po
index 5b7d232ca0..6bead7c85a 100644
--- a/cyrus/locale/ja/fusiondirectory.po
+++ b/cyrus/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/ko/fusiondirectory.po b/cyrus/locale/ko/fusiondirectory.po
index dfc3a254de..24431f6ea3 100644
--- a/cyrus/locale/ko/fusiondirectory.po
+++ b/cyrus/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po
index 28e6906a4b..d24ab18e2a 100644
--- a/cyrus/locale/lv/fusiondirectory.po
+++ b/cyrus/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po
index 40a39d95b4..6833387bee 100644
--- a/cyrus/locale/nb/fusiondirectory.po
+++ b/cyrus/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po
index cfadbe5fc1..b4a4028d8e 100644
--- a/cyrus/locale/nl/fusiondirectory.po
+++ b/cyrus/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po
index e5adbce83d..787a9b1596 100644
--- a/cyrus/locale/pl/fusiondirectory.po
+++ b/cyrus/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po
index 278fbc2ca4..7a974747fc 100644
--- a/cyrus/locale/pt/fusiondirectory.po
+++ b/cyrus/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po
index 8ef8cf533e..d79a00e84a 100644
--- a/cyrus/locale/pt_BR/fusiondirectory.po
+++ b/cyrus/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:30
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:31
diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po
index e2859827c0..fc3c1c8ac4 100644
--- a/cyrus/locale/ru/fusiondirectory.po
+++ b/cyrus/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po
index 31ca576476..ce728fc08d 100644
--- a/cyrus/locale/ru@petr1708/fusiondirectory.po
+++ b/cyrus/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po
index 435e38e926..f57436c641 100644
--- a/cyrus/locale/sv/fusiondirectory.po
+++ b/cyrus/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/cyrus/locale/tr_TR/fusiondirectory.po b/cyrus/locale/tr_TR/fusiondirectory.po
index 3322afdf36..12219f6c12 100644
--- a/cyrus/locale/tr_TR/fusiondirectory.po
+++ b/cyrus/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -79,7 +83,7 @@ msgstr ""
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:80
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: admin/systems/services/cyrus/class_serviceCyrus.inc:80
 msgid "Admin user password"
diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po
index 53f065b224..c2a65c9176 100644
--- a/cyrus/locale/ug/fusiondirectory.po
+++ b/cyrus/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po
index 47859869b4..021828034a 100644
--- a/cyrus/locale/vi_VN/fusiondirectory.po
+++ b/cyrus/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po
index 2dd78eb861..f243aa6e31 100644
--- a/cyrus/locale/zh/fusiondirectory.po
+++ b/cyrus/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/cyrus/locale/zh_TW/fusiondirectory.po b/cyrus/locale/zh_TW/fusiondirectory.po
index 29e3332ced..433606d778 100644
--- a/cyrus/locale/zh_TW/fusiondirectory.po
+++ b/cyrus/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/debconf/locale/af_ZA/fusiondirectory.po b/debconf/locale/af_ZA/fusiondirectory.po
index 96fe74d53f..ee56f0dd6d 100644
--- a/debconf/locale/af_ZA/fusiondirectory.po
+++ b/debconf/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po
index 1a65a7cf2f..8e120a6f56 100644
--- a/debconf/locale/ar/fusiondirectory.po
+++ b/debconf/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "خطأ"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "الإسم"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po
index 089db0c971..4fff4f9fb8 100644
--- a/debconf/locale/ca/fusiondirectory.po
+++ b/debconf/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Error"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Error d'LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nom"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po
index 8890f60541..d064ef7fd7 100644
--- a/debconf/locale/cs_CZ/fusiondirectory.po
+++ b/debconf/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -31,29 +31,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Správa Debconf sady nastavení"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Chyba"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Pro tento profil neexistuje šablona"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Pro sadu nastavení %s nebyla v LDAP nalezena položka %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Chyba LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "Chyba v LDIF"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -66,38 +66,38 @@ msgstr ""
 "sablona.ldif </i><br/>S názvem souboru <b>nazev_souboru</b> a požadovaným "
 "názvem šablony <b>nazev</b>.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Debconf sada nastavení"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Údaje o sadě nastavení Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Název"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importovat debconf soubor"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Název této debconf šablony"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Položky"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Odpovědi Debconf šablony"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "import(ovat)"
 
diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po
index efd24fc2db..3955ef1141 100644
--- a/debconf/locale/de/fusiondirectory.po
+++ b/debconf/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Debconf Profilverwaltung"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Fehler"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Es gibt keine Vorlage für dieses Profil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Kann Eintrag %s in LDAP für Profil %s nicht finden"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP-Fehler"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "LDIF Fehler"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 "template.ldif </i><br/>Mit <b>filename</b> dem Dateinamen, und <b>name</b> "
 "dem gewünschten Namen für die Vorlage.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Debconf Profil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Debconf-Profilinformation"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Name"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importieren einer debconf Datei"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Name dieser debconf Vorlage"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Einträge"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Debconf Vorlage Antworten"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importieren"
 
diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po
index 127675f67f..d9e260a991 100644
--- a/debconf/locale/el_GR/fusiondirectory.po
+++ b/debconf/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Διαχείριση προφίλ Debconf "
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Σφάλμα"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Δεν υπάρχει πρότυπο για αυτό το προφίλ"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Αδυναμία εύρεσης της καταχώρισης%s στο LDAP για το προφίλ %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Σφάλμα LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "Σφάλμα LDIF"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 "template.ldif </i><br/>Με <b>filename</b> το όνομα αρχείου, και <b>name</b> "
 "το επιθυμητό όνομα για το πρότυπο.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Προφίλ Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Πληροφορίες προφίλ Debconf "
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Όνομα"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Εισαγωγή ενός αρχείου debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Όνομα  για αυτό το πρότυπο debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Καταχωρήσεις"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Απαντήσεις προτύπου Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Εισαγωγή"
 
diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po
index 19362656d5..362bd508fe 100644
--- a/debconf/locale/es/fusiondirectory.po
+++ b/debconf/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Error"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Error LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importar"
 
diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po
index 7fa4eb06ce..75e7c81742 100644
--- a/debconf/locale/es_CO/fusiondirectory.po
+++ b/debconf/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Error"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Error LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po
index 50c374653f..300e789f53 100644
--- a/debconf/locale/es_VE/fusiondirectory.po
+++ b/debconf/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Error"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Error de LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nombre"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importar"
 
diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po
index 54828c1b62..610291d856 100644
--- a/debconf/locale/fa_IR/fusiondirectory.po
+++ b/debconf/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "خطا"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "خطای LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po
index 663c31d51a..5fde9fae13 100644
--- a/debconf/locale/fi_FI/fusiondirectory.po
+++ b/debconf/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Virhe"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP virhe"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nimi"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po
index 25bbc78ec4..d408281311 100644
--- a/debconf/locale/fr/fusiondirectory.po
+++ b/debconf/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Gestion des profils Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Erreur"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Il n'y a pas de modèle pour ce profil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Impossible de trouver l'entrée %s dans l'annuaire pour le profil %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Erreur LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "Erreur LDIF"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 "template.ldif </i><br/>Avec <b>fichier</b> le nom du fichier debconf, et "
 "<b>nom</b> le nom désiré pour le modèle.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Profil Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Informations du profil Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nom"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importer un fichier Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Nom de ce modèle Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Entrées"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Réponses du modèle Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importer"
 
diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po
index 833e509d50..0edbdb212d 100644
--- a/debconf/locale/hu_HU/fusiondirectory.po
+++ b/debconf/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Név"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po
index 95015d03fc..a5132c7725 100644
--- a/debconf/locale/id/fusiondirectory.po
+++ b/debconf/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po
index d5c9e93195..aac52e32a8 100644
--- a/debconf/locale/it_IT/fusiondirectory.po
+++ b/debconf/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Gestione del profilo debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Errore"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Non ci sono modelli per questo profilo"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Non trovo nessuna voce %s per il profilo LDAP %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Errore LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "Errore LDIF"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 "template.ldif </i><br/>Con <b>nome-del-file</b> il nome del file, e "
 "<b>nome</b> il nome che si desidera dare al modello.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Profilo debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Informazioni profilo debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nome"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importare un file debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Nome di questo modello debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Voci"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Risposte al modello Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importa"
 
diff --git a/debconf/locale/ja/fusiondirectory.po b/debconf/locale/ja/fusiondirectory.po
index c57e4cb227..ff507a4979 100644
--- a/debconf/locale/ja/fusiondirectory.po
+++ b/debconf/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/ko/fusiondirectory.po b/debconf/locale/ko/fusiondirectory.po
index 4c9633cc9a..081b832c84 100644
--- a/debconf/locale/ko/fusiondirectory.po
+++ b/debconf/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Debconf 프로필 관리"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "오류"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "이 프로필에 대한 템플릿이 없습니다"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "프로필 %s의 LDAP에서 항목 %s를 찾을 수 없습니다."
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "lDAP 오류"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "LDIF 오류"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 "<b>filename</b> the file name, and <b>name</b> the desired name for the "
 "template.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Debconfi 프로필"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Debconf 프로필 정보"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "명칭"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "debconf 파일 임포트"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "debconf 템플릿의 이름"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "항목"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Debconf 템플릿 응답"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "임포트"
 
diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po
index 10d529f9a0..7dcab81a93 100644
--- a/debconf/locale/lv/fusiondirectory.po
+++ b/debconf/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Kļūda"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP kļūda"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Vārds "
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po
index a9ab4817fd..200d881155 100644
--- a/debconf/locale/nb/fusiondirectory.po
+++ b/debconf/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Feil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP-feil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Navn"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po
index 631ace8cf1..7c2e51a292 100644
--- a/debconf/locale/nl/fusiondirectory.po
+++ b/debconf/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -31,29 +31,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Debconf profile beheer"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Fout"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Er is geen sjabloon voor dit profiel"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Kan ingave niet vinden %s in LDAP voor profiel %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP fout"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "LDIF fout"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -66,38 +66,38 @@ msgstr ""
 "template.ldif </i><br/>With<b>filename</b>the file name, and <b>name</b> the"
 " desired name for the template. <br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Debconf profiel"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr "Debconf profiel informatie"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Naam"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importeer een debconf bestand"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Naam van dit debconf sjabloon"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Ingaves"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Debconf sjabloon antwoorden"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importeren"
 
diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po
index 8a904f1326..9376c0a0dd 100644
--- a/debconf/locale/pl/fusiondirectory.po
+++ b/debconf/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Błąd"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "błąd LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "ImiÄ™"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Import"
 
diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po
index c8a4245352..9c28c1b98a 100644
--- a/debconf/locale/pt/fusiondirectory.po
+++ b/debconf/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Erro"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Erro de LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nome"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po
index 22fd37f143..7f1c600afb 100644
--- a/debconf/locale/pt_BR/fusiondirectory.po
+++ b/debconf/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/debconfProfile/class_debconfProfileManagement.inc:32
 #: admin/systems/debconf/class_debconfStartup.inc:33
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr "Gerenciador de perfil Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Erro"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr "Não existe nenhum modelo para este perfil"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr "Não foi encontrado a entrada %s em LDAP para o perfil %s"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Erro de LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr "Erro LDIF"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -65,38 +65,38 @@ msgstr ""
 " template.ldif </i><br/>With <b>filename</b> the file name, and <b>name</b> "
 "the desired name for the template.<br/>"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr "Perfil Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Nome"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr "Importar arquivo debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr "Nome deste modelo debconf "
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr "Entradas"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr "Modelo de respostas Debconf"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Importar"
 
diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po
index 0240f517b2..53d64af523 100644
--- a/debconf/locale/ru/fusiondirectory.po
+++ b/debconf/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Ошибка"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Ошибка LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Фамилия"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "Импортировать"
 
diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po
index 003cde5303..4cf2d55a42 100644
--- a/debconf/locale/ru@petr1708/fusiondirectory.po
+++ b/debconf/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po
index 45b76659db..6130a915c6 100644
--- a/debconf/locale/sv/fusiondirectory.po
+++ b/debconf/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -30,29 +30,29 @@ msgstr "Debconf"
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Fel"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP-fel"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Namn"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/tr_TR/fusiondirectory.po b/debconf/locale/tr_TR/fusiondirectory.po
index 5b91ce54bd..d70e6f5b3c 100644
--- a/debconf/locale/tr_TR/fusiondirectory.po
+++ b/debconf/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Hata"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po
index 1d7b0b30c1..6a82d45b3c 100644
--- a/debconf/locale/ug/fusiondirectory.po
+++ b/debconf/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po
index 7f4c9e66c1..7ed03dc431 100644
--- a/debconf/locale/vi_VN/fusiondirectory.po
+++ b/debconf/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "Lá»—i"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "Lá»—i LDAP"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "Tên"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po
index 3c9f8ab177..a4eac79d1b 100644
--- a/debconf/locale/zh/fusiondirectory.po
+++ b/debconf/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -30,29 +30,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr "错误"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr "LDAP 错误"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -61,38 +61,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr "名称"
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr "导入"
 
diff --git a/debconf/locale/zh_TW/fusiondirectory.po b/debconf/locale/zh_TW/fusiondirectory.po
index 8b5b3f3b3c..dd4c836730 100644
--- a/debconf/locale/zh_TW/fusiondirectory.po
+++ b/debconf/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -26,29 +26,29 @@ msgstr ""
 msgid "Debconf profile management"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:85
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:80
 msgid "Error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:71
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:66
 msgid "There is no template for this profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:86
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:81
 #, php-format
 msgid "Can't find entry %s in LDAP for profile %s"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:138
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:133
 msgid "LDAP error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:141
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:136
 msgid "LDIF error"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:151
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:146
 #, php-format
 msgid ""
 "In order to import a debconf file, please run the following command : "
@@ -57,38 +57,38 @@ msgid ""
 "the desired name for the template.<br/>"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:167
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:171
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:162
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:166
 msgid "Debconf profile"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:168
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:163
 msgid "Debconf profile information"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:186
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:181
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 #: admin/debconfProfile/debconfProfile-filter.tpl.c:5
 msgid "Name"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:183
 msgid "Import a debconf file"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:189
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:184
 msgid "Name of this debconf template"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:193
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:188
 msgid "Entries"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:195
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:190
 msgid "Debconf template answers"
 msgstr ""
 
-#: admin/debconfProfile/class_debconfProfileGeneric.inc:210
+#: admin/debconfProfile/class_debconfProfileGeneric.inc:205
 msgid "Import"
 msgstr ""
 
diff --git a/developers/locale/af_ZA/fusiondirectory.po b/developers/locale/af_ZA/fusiondirectory.po
index 6beef08978..0281aabe86 100644
--- a/developers/locale/af_ZA/fusiondirectory.po
+++ b/developers/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po
index 1151dac8cc..43b7eb2ef4 100644
--- a/developers/locale/ar/fusiondirectory.po
+++ b/developers/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po
index f4dfd091ef..651ff93f7f 100644
--- a/developers/locale/ca/fusiondirectory.po
+++ b/developers/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po
index 281774d24d..3c8aab4287 100644
--- a/developers/locale/cs_CZ/fusiondirectory.po
+++ b/developers/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po
index bc3c3e3da7..6a1c9e2318 100644
--- a/developers/locale/de/fusiondirectory.po
+++ b/developers/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po
index a9b3102487..d60ada5dd4 100644
--- a/developers/locale/el_GR/fusiondirectory.po
+++ b/developers/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po
index bcef83164a..b674e5b2b7 100644
--- a/developers/locale/es/fusiondirectory.po
+++ b/developers/locale/es/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po
index de1a1f02e6..25bee7b12e 100644
--- a/developers/locale/es_CO/fusiondirectory.po
+++ b/developers/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po
index da07ac9126..7c1f21f2a2 100644
--- a/developers/locale/es_VE/fusiondirectory.po
+++ b/developers/locale/es_VE/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po
index 527e25d00b..a4b2ac8a98 100644
--- a/developers/locale/fa_IR/fusiondirectory.po
+++ b/developers/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po
index 6efecfb722..0ab462f563 100644
--- a/developers/locale/fi_FI/fusiondirectory.po
+++ b/developers/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po
index 15abd0803a..f15f7f3fc1 100644
--- a/developers/locale/fr/fusiondirectory.po
+++ b/developers/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po
index ffacd6e9fa..d9f2d261cf 100644
--- a/developers/locale/hu_HU/fusiondirectory.po
+++ b/developers/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po
index 71c9de5ec0..2d50601177 100644
--- a/developers/locale/id/fusiondirectory.po
+++ b/developers/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po
index ee0413824a..8fa0bcb10d 100644
--- a/developers/locale/it_IT/fusiondirectory.po
+++ b/developers/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/ja/fusiondirectory.po b/developers/locale/ja/fusiondirectory.po
index bb5b1cba7c..1ad1a1f91b 100644
--- a/developers/locale/ja/fusiondirectory.po
+++ b/developers/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ko/fusiondirectory.po b/developers/locale/ko/fusiondirectory.po
index 132de35314..a66e084cb6 100644
--- a/developers/locale/ko/fusiondirectory.po
+++ b/developers/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po
index b0d3fdcf5c..1ca62c38f3 100644
--- a/developers/locale/lv/fusiondirectory.po
+++ b/developers/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po
index 7d4d51a68e..09c179d5e3 100644
--- a/developers/locale/nb/fusiondirectory.po
+++ b/developers/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po
index 43737284b1..f88cc599a7 100644
--- a/developers/locale/nl/fusiondirectory.po
+++ b/developers/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po
index 968c43cc50..baeb2dfa11 100644
--- a/developers/locale/pl/fusiondirectory.po
+++ b/developers/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po
index 03ce30ed0a..c51fa99eda 100644
--- a/developers/locale/pt/fusiondirectory.po
+++ b/developers/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po
index 68b218d902..2e89ce5f53 100644
--- a/developers/locale/pt_BR/fusiondirectory.po
+++ b/developers/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/debugHelp/class_debugHelp.inc:26
 #: addons/debugHelp/class_debugHelp.inc:32
diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po
index 4e85b17b21..9b6c7b76f4 100644
--- a/developers/locale/ru/fusiondirectory.po
+++ b/developers/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po
index a29f166e1f..8694bd8d98 100644
--- a/developers/locale/ru@petr1708/fusiondirectory.po
+++ b/developers/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po
index a54d700dc4..ca2cf3b86c 100644
--- a/developers/locale/sv/fusiondirectory.po
+++ b/developers/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/developers/locale/tr_TR/fusiondirectory.po b/developers/locale/tr_TR/fusiondirectory.po
index 8384b219eb..aa6a0e51ff 100644
--- a/developers/locale/tr_TR/fusiondirectory.po
+++ b/developers/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po
index a44dc2bd19..f15b5f4348 100644
--- a/developers/locale/ug/fusiondirectory.po
+++ b/developers/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po
index 2d4a3a2ed8..ae0c571d27 100644
--- a/developers/locale/vi_VN/fusiondirectory.po
+++ b/developers/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po
index f203e210e0..b4927cd88f 100644
--- a/developers/locale/zh/fusiondirectory.po
+++ b/developers/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/developers/locale/zh_TW/fusiondirectory.po b/developers/locale/zh_TW/fusiondirectory.po
index 9c978491ca..98dab35343 100644
--- a/developers/locale/zh_TW/fusiondirectory.po
+++ b/developers/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:07+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/af_ZA/fusiondirectory.po b/dhcp/locale/af_ZA/fusiondirectory.po
index 3e2f3d7b9c..4eef960f18 100644
--- a/dhcp/locale/af_ZA/fusiondirectory.po
+++ b/dhcp/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po
index 1dde5c1b6e..f6684c5a72 100644
--- a/dhcp/locale/ar/fusiondirectory.po
+++ b/dhcp/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po
index 5250b2d8eb..0967239ff7 100644
--- a/dhcp/locale/ca/fusiondirectory.po
+++ b/dhcp/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po
index 522325806e..54fbc395ed 100644
--- a/dhcp/locale/cs_CZ/fusiondirectory.po
+++ b/dhcp/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po
index 463be54c16..a2001a3b28 100644
--- a/dhcp/locale/de/fusiondirectory.po
+++ b/dhcp/locale/de/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po
index 56b8d105e8..e95df0b781 100644
--- a/dhcp/locale/el_GR/fusiondirectory.po
+++ b/dhcp/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po
index fa4656e6eb..3fbe95ce04 100644
--- a/dhcp/locale/es/fusiondirectory.po
+++ b/dhcp/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po
index efe5de2b66..f70e3cd712 100644
--- a/dhcp/locale/es_CO/fusiondirectory.po
+++ b/dhcp/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po
index 59cdbfe71a..7e0bbc549b 100644
--- a/dhcp/locale/es_VE/fusiondirectory.po
+++ b/dhcp/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po
index efb78659a7..4578af0fb7 100644
--- a/dhcp/locale/fa_IR/fusiondirectory.po
+++ b/dhcp/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po
index 8802b801bf..85a414cb91 100644
--- a/dhcp/locale/fi_FI/fusiondirectory.po
+++ b/dhcp/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po
index 83c0e52d15..63b51f8202 100644
--- a/dhcp/locale/fr/fusiondirectory.po
+++ b/dhcp/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2021\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po
index abfcc0f20e..5a7a65fdd8 100644
--- a/dhcp/locale/hu_HU/fusiondirectory.po
+++ b/dhcp/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po
index 643452ad8a..7aeac276d5 100644
--- a/dhcp/locale/id/fusiondirectory.po
+++ b/dhcp/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po
index 02661e7a37..33203fbf04 100644
--- a/dhcp/locale/it_IT/fusiondirectory.po
+++ b/dhcp/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/ja/fusiondirectory.po b/dhcp/locale/ja/fusiondirectory.po
index 5195cbd4ff..79ec7f4cb1 100644
--- a/dhcp/locale/ja/fusiondirectory.po
+++ b/dhcp/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/ko/fusiondirectory.po b/dhcp/locale/ko/fusiondirectory.po
index f9513f539c..750538bae1 100644
--- a/dhcp/locale/ko/fusiondirectory.po
+++ b/dhcp/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po
index f817e62297..e1c56d4065 100644
--- a/dhcp/locale/lv/fusiondirectory.po
+++ b/dhcp/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po
index 8b88405758..e9fcee77e7 100644
--- a/dhcp/locale/nb/fusiondirectory.po
+++ b/dhcp/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po
index 175536ded3..20f5a3291a 100644
--- a/dhcp/locale/nl/fusiondirectory.po
+++ b/dhcp/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po
index c8ba0da479..5ebad13dd8 100644
--- a/dhcp/locale/pl/fusiondirectory.po
+++ b/dhcp/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po
index 8e5fb42f0f..d362e517e1 100644
--- a/dhcp/locale/pt/fusiondirectory.po
+++ b/dhcp/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po
index 6fcc4050bf..51a135a7ed 100644
--- a/dhcp/locale/pt_BR/fusiondirectory.po
+++ b/dhcp/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dhcp/class_dhcpPlugin.inc:31 admin/dhcp/class_dhcpManagement.inc:34
 #: admin/dhcp/sections/class_dhcpTSigKey.inc:39
diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po
index 4bcd9daeed..b78a1f9eef 100644
--- a/dhcp/locale/ru/fusiondirectory.po
+++ b/dhcp/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po
index bd4411c007..6a948db95c 100644
--- a/dhcp/locale/ru@petr1708/fusiondirectory.po
+++ b/dhcp/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po
index 6ca3f22142..2f1f9ba777 100644
--- a/dhcp/locale/sv/fusiondirectory.po
+++ b/dhcp/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dhcp/locale/tr_TR/fusiondirectory.po b/dhcp/locale/tr_TR/fusiondirectory.po
index c47581b119..05cd0b4d1b 100644
--- a/dhcp/locale/tr_TR/fusiondirectory.po
+++ b/dhcp/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po
index d549d0a43e..1612b82985 100644
--- a/dhcp/locale/ug/fusiondirectory.po
+++ b/dhcp/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po
index 5074827325..696ca14f9b 100644
--- a/dhcp/locale/vi_VN/fusiondirectory.po
+++ b/dhcp/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po
index 6d969bb8fa..7acddbf8ef 100644
--- a/dhcp/locale/zh/fusiondirectory.po
+++ b/dhcp/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dhcp/locale/zh_TW/fusiondirectory.po b/dhcp/locale/zh_TW/fusiondirectory.po
index 9d04f81aa7..3b64942d6d 100644
--- a/dhcp/locale/zh_TW/fusiondirectory.po
+++ b/dhcp/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dns/locale/af_ZA/fusiondirectory.po b/dns/locale/af_ZA/fusiondirectory.po
index 326de4d593..e23d168998 100644
--- a/dns/locale/af_ZA/fusiondirectory.po
+++ b/dns/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po
index 75db03272c..d25e3d2f64 100644
--- a/dns/locale/ar/fusiondirectory.po
+++ b/dns/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "النوع"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po
index ea7ee52d01..1dce5dbed9 100644
--- a/dns/locale/ca/fusiondirectory.po
+++ b/dns/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po
index ab4acfa4ab..2233bb6f71 100644
--- a/dns/locale/cs_CZ/fusiondirectory.po
+++ b/dns/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -149,94 +149,94 @@ msgstr "DNS zóny"
 msgid "DNS zones in this view"
 msgstr "DNS zóny v tomto pohledu"
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Typ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Obrácená (reverzní) zóna"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr "Reverzní zóna ve které by tento záznam měl být (pokud je)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "LOC záznam"
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Zeměpisná šířka"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr "StupnÄ›"
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "minuty"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Sekund"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Sever/Jih"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Sever"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Jih"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Zeměpisná délka"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Východ/západ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Východ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "Západ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Nadmořská výška (v metrech)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr "Velikost (v metrech)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr "Přesnost vodorovně (metry)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr "Přesnost svisle (metry)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "NAPTR záznam"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Pořadí"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
@@ -246,11 +246,11 @@ msgstr ""
 " se stejnými „order“ (pořadí) hodnotami, nízká čísla jsou zpracovány před "
 "těmi vyššími."
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Předvolby"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
@@ -260,11 +260,11 @@ msgstr ""
 "záznamy se stejnými „order“ (pořadí) hodnotami, nízká čísla jsou zpracovány "
 "před těmi vyššími."
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Příznaky"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
@@ -274,11 +274,11 @@ msgstr ""
 "Příznaky jsou jednoznakovové z množiny A až Z (bez diakritiky) a 0 až 9. "
 "Velikost písmen není důležitá."
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Služba"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -289,11 +289,11 @@ msgstr ""
 "protokol který je použit pro komunikaci se službou. JE NUTNÉ zadat protokol "
 "pokud kolonka příznak uvádí, že NAPTR je terminál."
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Regulární výraz"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
@@ -302,11 +302,11 @@ msgstr ""
 "ŘETĚZEC obsahující nahrazující výraz který bude použit na původní řetězec "
 "držený klientem aby vytvořil další doménový název který hledat."
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Nahrazení"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
@@ -314,24 +314,24 @@ msgstr ""
 "Příští NAME kterého se dotazovat na záznamy NAPTR, SRV nebo adresy, v "
 "závislosti na hodnotě kolonky příznaků."
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "SRV záznam"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Priorita"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr "Priorita cílového stroje, nižší hodnota znamená více upřednostňované"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Důležitost"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
@@ -339,40 +339,40 @@ msgstr ""
 "Relativní důležitost pro záznamy se stejnou prioritou, vyšší hodnota znamená"
 " více upřednostňované"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "port"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr "TCP nebo UDP port na kterém se služba nachází"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Cíl"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr "Kanonický název stroje poskytujícího službu, zakončený tečkou"
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "IPv4 adresa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "IPv6 adresa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "MX záznam"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
@@ -380,7 +380,7 @@ msgstr ""
 "Přednost daná tomuto RR mezi ostatními při stejném vlastníkovi, nižší "
 "hodnoty znamenají více upřednostňované"
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
@@ -388,7 +388,7 @@ msgstr ""
 "Doménový název který určuje stroj ochotný fungovat jako vyměňovač e-mailů "
 "pro název vlastníka"
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
@@ -396,12 +396,12 @@ msgstr ""
 "Doménový název který určuje stroj který by měl být autoritativní pro zadanou"
 " třídu a doménu"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Záznam"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
@@ -409,23 +409,23 @@ msgstr ""
 "Obsah SSHFP záznamu. Je možné získat s použitím „ssh-keygen -r "
 "nejaky.stroj.tld“, nebo sshfp příkaz například"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Přesměrovat na"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr "Doména které je tato poddoména alternativním názvem"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Obsah"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Obsah tohoto záznamu"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr "Zadaná IP adresa neodpovídá zvolené reverzní zóně"
 
diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po
index 3470d3e162..c9a7858ce6 100644
--- a/dns/locale/de/fusiondirectory.po
+++ b/dns/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -146,127 +146,127 @@ msgstr "DNS-Zonen"
 msgid "DNS zones in this view"
 msgstr "DNS-Zonen in dieser Ansicht"
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Typ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Reverse Zone"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "LOC-Eintrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Breitengrad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr "Grade"
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minuten"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Sekunden"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Nord/Süd"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Nord"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Süd"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Längengrad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Ost/West"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Ost"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "West"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Höhe (Meter)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr "Größe (Meter)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr "Horizontale Genauigkeit (Meter)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr "Vertikale Genauigkeit (Meter)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "NAPTR-Eintrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Auftrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Präferenz"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Flags"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Dienst"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Regulärer Ausdruck"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Ersatz"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "SRV-Eintrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Priorität"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Gewicht"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Anschluss"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Ziel"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "Eine IPv4-Adresse"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "Eine IPv6-Adresse"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "MX-Eintrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Eintrag"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Umleiten zu"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Inhalt"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Inhalt dieses Eintrags"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po
index 70ae45f0f5..797dde9efe 100644
--- a/dns/locale/el_GR/fusiondirectory.po
+++ b/dns/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -146,127 +146,127 @@ msgstr "Ζώνες DNS"
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Τύπος"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Αντίστροφη ζώνη"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Λεπτά"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Σημάνσεις"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Υπηρεσία"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Προτεραιότητα"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Θύρα"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Ανακατεύθυνση σε"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Περιεχόμενο"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po
index 000b8d5b55..e399e00391 100644
--- a/dns/locale/es/fusiondirectory.po
+++ b/dns/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Zona Inversa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minutos"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Servicio"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Prioridad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Puerto"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Objetivo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Contenido"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po
index 74f01935f2..0743bb5419 100644
--- a/dns/locale/es_CO/fusiondirectory.po
+++ b/dns/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Puerto"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po
index 28d715a9f3..3df5e95073 100644
--- a/dns/locale/es_VE/fusiondirectory.po
+++ b/dns/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Zona Inversa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minutos"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Servicio"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Prioridad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Puerto"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Objetivo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Contenido"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po
index 98b52bcde3..2f9e3994f8 100644
--- a/dns/locale/fa_IR/fusiondirectory.po
+++ b/dns/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po
index e4dada4155..357e2d0289 100644
--- a/dns/locale/fi_FI/fusiondirectory.po
+++ b/dns/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tyyppi"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Portti"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Määränpää"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po
index 21d0a1ce9e..3a144fd194 100644
--- a/dns/locale/fr/fusiondirectory.po
+++ b/dns/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -150,94 +150,94 @@ msgstr "Zones DNS"
 msgid "DNS zones in this view"
 msgstr "Zones DNS dans cette vue"
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Type"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Zone inverse"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr "Zone inverse dans lequel cet enregistrement devrait être"
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "Enregistrement LOC "
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Latitude"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr "Degrés"
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minutes"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Secondes"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Nord/Sud"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Nord"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Sud"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Longitude"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Est/Ouest"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Est"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "Ouest"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Altitude (mètres)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr "Taille (mètres)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr "Précision horizontale (mètres)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr "Précision verticale (mètres)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "Enregistrement NAPTR "
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Ordre"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
@@ -247,11 +247,11 @@ msgstr ""
 "traités pour assurer l'ordre correct des règles. Les petits nombres sont "
 "traités avant les grands nombres."
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Préférence"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
@@ -261,11 +261,11 @@ msgstr ""
 "valeurs \"ordre\" sont égales doivent être traités, les petits nombres sont "
 "traités avant les grands nombres."
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Drapeaux"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
@@ -275,11 +275,11 @@ msgstr ""
 " champs de l'enregistrement. Les drapeaux sont des caractères de l'ensemble "
 "[A-Z0-9]. La casse des caractères alphabétiques n’est pas prise en compte."
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Service"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -291,11 +291,11 @@ msgstr ""
 "avec un service. Un protocole doit être spécifié si les drapeaux indiquent "
 "que le NAPTR est terminal."
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Expression régulière"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
@@ -305,11 +305,11 @@ msgstr ""
 "chaîne d'origine envoyée par le client afin de construire le prochain nom de"
 " domaine à rechercher."
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Remplacement"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
@@ -317,25 +317,25 @@ msgstr ""
 "Le prochain NOM à interroger pour NAPTR, SRV, ou des enregistrements "
 "d'adresses en fonction de la valeur des drapeaux."
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "Enregistrement SRV"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Priorité"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 "Priorité de l'hôte cible, plus la valeur est basse plus c’est prioritaire"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Poids"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
@@ -343,42 +343,42 @@ msgstr ""
 "Poids relatif des enregistrements avec la même priorité, plus la valeur est "
 "grande plus c’est prioritaire"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Port"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr "Port TCP ou UDP sur lequel le service se trouve"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Cible"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 "Nom d’hôte canonique de la machine qui fournit le service, se terminant par "
 "un point"
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "Une adresse IPv4"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "Une adresse IPv6"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "Enregistrement MX"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
@@ -386,7 +386,7 @@ msgstr ""
 "Préférence donnée à ce RR entre autres du même propriétaire, les valeurs "
 "plus basses sont préférées"
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
@@ -394,7 +394,7 @@ msgstr ""
 "Nom de domaine qui indique un hôte qui sert de serveur de courriel pour le "
 "domaine"
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
@@ -402,12 +402,12 @@ msgstr ""
 "Nom de domaine qui indique un hôte qui doit faire autorité pour la classe et"
 " le domaine indiqués"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Enregistrement"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
@@ -415,23 +415,23 @@ msgstr ""
 "Contenu de l’enregistrement SSHFP. Peut être obtenu en utilisant «ssh-keygen"
 " -r some.host.tld», ou la commande sshfp par exemple"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Rediriger vers"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr "Domaine dont ce sous-domaine est un alias"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Contenu"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Contenu de cet enregistrement"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr "L'adresse IP saisie ne correspond pas à la zone inverse sélectionnée"
 
diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po
index 7114527356..10b92955cc 100644
--- a/dns/locale/hu_HU/fusiondirectory.po
+++ b/dns/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po
index de3b1ffdfe..9cfffa9519 100644
--- a/dns/locale/id/fusiondirectory.po
+++ b/dns/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po
index 9898bc4abd..995f5e1a79 100644
--- a/dns/locale/it_IT/fusiondirectory.po
+++ b/dns/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -152,94 +152,94 @@ msgstr "Zone DNS"
 msgid "DNS zones in this view"
 msgstr "Zone DNS in questa vista"
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Zona inversa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr "Zona inversa nella quale dovrebbe trovarsi questo record, se ce n'é"
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "Record LOC"
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Latitudine"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr "Gradi"
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minuti"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Secondi"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Nord/Sud"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Nord"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Sud"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Longitudine"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Est/Ovest"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Est"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "Ovest"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Altitudine (in metri)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr "Taglia (in metri)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr "Precisione orizzontale (in metri)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr "Precisione verticale (in metri)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "Record NAPTR"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Ordine"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
@@ -249,11 +249,11 @@ msgstr ""
 "per assicurare il corretto ordine delle regole. I numeri bassi vengono "
 "elaborati prima dei numeri alti ."
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Preferenza"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
@@ -263,11 +263,11 @@ msgstr ""
 "\"ordine\" dovrebbero essere trattati, i numeri bassi vengono elaborati "
 "prima dei numeri alti."
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Flags"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
@@ -277,11 +277,11 @@ msgstr ""
 "campi del record. I flags sono singoli caratteri dal set [A - Z0-9 ]. Il "
 "caso dei caratteri alfabetici non è significativo."
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Servizi"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -293,11 +293,11 @@ msgstr ""
 " servizio . Un protocollo DEVE essere specificato se il campo flags afferma "
 "che il NAPTR è terminale."
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Espressione regolare"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
@@ -307,11 +307,11 @@ msgstr ""
 " stringa originale conservata dal cliente al fine di costruire il prossimo "
 "nome di dominio da ricercare."
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Sostituzione"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
@@ -319,26 +319,26 @@ msgstr ""
 "Il successivo NOME di query per NAPTR , SRV , o record di indirizzo in base "
 "al valore del campo flags . "
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "Record SRV"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Priorità"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 "La priorità del l'host di destinazione, il valore più basso significa più "
 "preferito"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Peso"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
@@ -346,42 +346,42 @@ msgstr ""
 "Peso relativo per i record con la stessa priorità , il valore più alto "
 "significa più preferito"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Porta"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr "Port TCP o UDP sui quali i servizi devono essere trovati"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Obiettivo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 "Hostname canonico della macchina che fornisce il servizio, che termina con "
 "un punto"
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "Un indirizzo IPv4"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "Un indirizzo IPv6"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "Record MX"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
@@ -389,7 +389,7 @@ msgstr ""
 "Preferenza data a questo RR tra gli altri allo stesso proprietario, valori "
 "più bassi sono preferiti."
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
@@ -397,7 +397,7 @@ msgstr ""
 "Nome a dominio che specifica la volontà di un host ad agire come uno scambio"
 " di posta per il nome del proprietario"
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
@@ -405,12 +405,12 @@ msgstr ""
 "Nome di dominio che specifica un host che dovrebbe essere autorevole per la "
 "classe e il dominio specificati"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
@@ -419,23 +419,23 @@ msgstr ""
 "some.host.tld\", or sshfp command for instance, o per esempio il comando "
 "sshfp"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Reindirizzare verso"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr "Dominio di cui questo sottodominio é un alias"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Contenuto"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Contenuto di questo record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr "L'IP immesso non corrisponde alla zona inversa selezionata"
 
diff --git a/dns/locale/ja/fusiondirectory.po b/dns/locale/ja/fusiondirectory.po
index de48df014e..e2d90703cf 100644
--- a/dns/locale/ja/fusiondirectory.po
+++ b/dns/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/ko/fusiondirectory.po b/dns/locale/ko/fusiondirectory.po
index 47741db0e0..07ec42f22f 100644
--- a/dns/locale/ko/fusiondirectory.po
+++ b/dns/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "타입"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "ë¶„"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "ì´ˆ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "플래그"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "서비스"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "우선 순위"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "포트"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "타겟"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "로 전달"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "본문"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po
index 6bf3494d1a..eaa3fce063 100644
--- a/dns/locale/lv/fusiondirectory.po
+++ b/dns/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Veids"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Novirzīt uz"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po
index fa4582b276..4d900243aa 100644
--- a/dns/locale/nb/fusiondirectory.po
+++ b/dns/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po
index b101ddd64a..d27484170e 100644
--- a/dns/locale/nl/fusiondirectory.po
+++ b/dns/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -150,94 +150,94 @@ msgstr "DNS zones"
 msgid "DNS zones in this view"
 msgstr "DNS zones in dit venster"
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Type"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Reverse zone"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr "Reverse zone in dewelke dit record moet zitten, indien nodig"
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "LOC record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Breedtegraad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr "Graden"
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minuten"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Seconden"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Noord/Zuid"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Noord"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Zuid"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Lengtegraad"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Oost/West"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Oost"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "West"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Hoogte (meters)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr "Grootte (meters)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr "Horizontale nauwkeurigheid (meters)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr "Verticale nauwkeurigheid (meters)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "NAPTR record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Bestelling"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
@@ -247,11 +247,11 @@ msgstr ""
 "worden om de juiste regelvolgorde te verzekeren. Lage nummers worden voor "
 "hoge nummers verwerkt."
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Voorkeur"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
@@ -261,11 +261,11 @@ msgstr ""
 "\"volgorde\" waardes ZOU moeten verwerkt zijn. Lage nummers worden voor hoge"
 " nummers verwerkt."
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Vlaggen"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
@@ -275,11 +275,11 @@ msgstr ""
 " de velden in het record. Vlaggen zijn enkele karakters van het set "
 "[A-Z0-9].  De gebruikte karakters zijn niet hoofd- of kleine lettergevoelig."
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Dienst"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -291,11 +291,11 @@ msgstr ""
 " Een protocol MOET bepaald zijn als het vlaggenveld zegt dat het NAPTR "
 "definitief is"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Reguliere expressie"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
@@ -305,11 +305,11 @@ msgstr ""
 "originele string van de cliënt ter opbouw van de volgende op te zoeken "
 "domeinnaam."
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Vervanging"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
@@ -317,24 +317,24 @@ msgstr ""
 "De volgende NAME om op te vragen voor NAPTR, SRV, of adres records "
 "afhankelijk van de waarde van het afvinkveld."
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "SRV record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Prioriteit"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr "Prioriteit van de grootste host, lage waarde betekent meer aangewezen"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Gewicht"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
@@ -342,42 +342,42 @@ msgstr ""
 "Relatieve gewicht van records met dezelfde prioriteit, hogere waarde "
 "betekent hogere voorkeur"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Poort"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr "TCP of UDP poort waarop de service kan gevonden worden"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Doel"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 "Standaard voorgeschreven hostnaam van de machine die de dienst aanbied, "
 "eindigend in een punt"
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "Een IPv4 adres"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "Een IPv6 adres"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "MX record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
@@ -385,7 +385,7 @@ msgstr ""
 "Voorkeur gegeven aan dit RR tussen anderen met dezelfde eigenaar, lagere "
 "waardes hebben de voorkeur"
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
@@ -393,7 +393,7 @@ msgstr ""
 "Domein naam dewelke een host specifieert die bereidt is zich te gedragen als"
 " een mail uitwisseling voor de naam van de eigenaar"
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
@@ -401,12 +401,12 @@ msgstr ""
 "Domeinnaam die een host specificeert die autoritair zou moeten zijn voor de "
 "bepaalde klasse en het domein"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
@@ -414,23 +414,23 @@ msgstr ""
 "SSHFP ingave inhoud. Deze kan verkregen worden gebruik makend van \"ssh-"
 "keygen -r some.host.tld\", of sshfp commando bijvoorbeeld."
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Doorsturen naar"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr "Domein waarvoor dit subdomein een alias is"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Inhoud"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Inhoud van de record"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr "Het ingegeven IP komt niet overeen met de geselecteerde reverse zone"
 
diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po
index b4a9aed38a..79b8be29b6 100644
--- a/dns/locale/pl/fusiondirectory.po
+++ b/dns/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Typ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Strefa odwrotna"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Usługa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Priorytet"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Port"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po
index 48819542c2..47d367c492 100644
--- a/dns/locale/pt/fusiondirectory.po
+++ b/dns/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po
index 1d2387179d..ceb56d37c4 100644
--- a/dns/locale/pt_BR/fusiondirectory.po
+++ b/dns/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dns/class_dnsAcl.inc:30 admin/dns/class_dnsAcl.inc:31
 #: admin/dns/class_dnsAcl.inc:33
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Tipo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Zona reversa"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Minutos"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Bandeiras"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Serviço"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Porta"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr "Destino"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Redirecionar para"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Conteúdo"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po
index c4e0cf285b..480e4063a7 100644
--- a/dns/locale/ru/fusiondirectory.po
+++ b/dns/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -146,94 +146,94 @@ msgstr "Зоны DNS"
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Тип"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "Обратная зона"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr "LOC Запись"
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr "Широта"
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr "Минуты"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr "Секунды"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr "Север/Юг"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr "Север"
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr "Юг"
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr "Долготота"
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr "Восток/Запад"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr "Восток"
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr "Запад"
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr "Высота (в метрах)"
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr "NAPTR Записи"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr "Order"
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
@@ -243,11 +243,11 @@ msgstr ""
 "для точного представления упорядоченного списка правил. Упорядочивание идет "
 "от меньших значений к большим."
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr "Preference"
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
@@ -257,11 +257,11 @@ msgstr ""
 "NAPTR с одинаковыми значениями полей \"order\". Младшие номера "
 "обрабатываются раньше старших."
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr "Flags"
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
@@ -271,11 +271,11 @@ msgstr ""
 "представляют собой одиночные символы из набора [A-Z0-9]. Регистр букв во "
 "внимание не принимается."
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr "Service"
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -283,11 +283,11 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr "Regular Expression"
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
@@ -297,11 +297,11 @@ msgstr ""
 "строке, сохраняемой клиентом для конструирования следующего искомого "
 "доменного имени."
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr "Replacement"
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
@@ -309,24 +309,24 @@ msgstr ""
 "Следующие НАЗВАНИЕ, запрашиваемое для NAPTR, SRV, или адреса записей, "
 "зависит от значения поля флагов."
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr "SRV записи"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Приоритет"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr "Вес"
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
@@ -334,53 +334,53 @@ msgstr ""
 "Относительный вес записей с одинаковым приоритетом, предпочтение отдается к "
 "более высокому значению"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Порт"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr "TCP или UDP порт на котором служба должна быть найдена"
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 "Каноническое имя хоста машины предоставляющей службу, заканчивается точкой."
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr "IPv4 адресс"
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr "IPv6 адресс"
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr "MX записи"
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
@@ -388,12 +388,12 @@ msgstr ""
 "Доменное имя, которое определяет хост, который должен быть авторитативным "
 "для этого класса и домена"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr "Запись"
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
@@ -401,23 +401,23 @@ msgstr ""
 "Содержимое записи SSHFP. Может быть получено с помощью \"ssh-keygen -r "
 "some.host.tld\", или sshfp команд например"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Перенаправить куда"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Содержимое"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr "Содержимое записи"
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr "Введенный IP не соответствует выбранной обратной зоне"
 
diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po
index e28d043724..9570d4967e 100644
--- a/dns/locale/ru@petr1708/fusiondirectory.po
+++ b/dns/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po
index 3049e2bb0a..620501c54b 100644
--- a/dns/locale/sv/fusiondirectory.po
+++ b/dns/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Typ"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "Prioritet"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "Port"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr "Omdirigera till"
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr "Innehåll"
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/tr_TR/fusiondirectory.po b/dns/locale/tr_TR/fusiondirectory.po
index d9582cc710..858b223270 100644
--- a/dns/locale/tr_TR/fusiondirectory.po
+++ b/dns/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
-msgstr ""
+msgstr "Dakikalar"
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
-msgstr ""
+msgstr "Saniyeler"
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po
index 778021f767..071072943a 100644
--- a/dns/locale/ug/fusiondirectory.po
+++ b/dns/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po
index 42be83ffc5..c9cdf93b66 100644
--- a/dns/locale/vi_VN/fusiondirectory.po
+++ b/dns/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "Loại"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po
index f28040c6f1..7aacb895aa 100644
--- a/dns/locale/zh/fusiondirectory.po
+++ b/dns/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -146,127 +146,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr "类型"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr "反向解析域"
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -274,129 +274,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr "优先级"
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr "端口"
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dns/locale/zh_TW/fusiondirectory.po b/dns/locale/zh_TW/fusiondirectory.po
index f902ca360d..def13bb57b 100644
--- a/dns/locale/zh_TW/fusiondirectory.po
+++ b/dns/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:08+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -142,127 +142,127 @@ msgstr ""
 msgid "DNS zones in this view"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:117 admin/dns/class_dnsZone.inc:187
+#: admin/dns/class_DnsRecordAttribute.inc:111 admin/dns/class_dnsZone.inc:187
 msgid "Type"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:120
+#: admin/dns/class_DnsRecordAttribute.inc:114
 msgid "Reverse zone this record should be in, if any"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:153
+#: admin/dns/class_DnsRecordAttribute.inc:147
 msgid "LOC Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:157
+#: admin/dns/class_DnsRecordAttribute.inc:151
 msgid "Latitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:161
-#: admin/dns/class_DnsRecordAttribute.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:155
+#: admin/dns/class_DnsRecordAttribute.inc:182
 msgid "Degrees"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:166
-#: admin/dns/class_DnsRecordAttribute.inc:193
+#: admin/dns/class_DnsRecordAttribute.inc:160
+#: admin/dns/class_DnsRecordAttribute.inc:187
 msgid "Minutes"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:171
-#: admin/dns/class_DnsRecordAttribute.inc:198
+#: admin/dns/class_DnsRecordAttribute.inc:165
+#: admin/dns/class_DnsRecordAttribute.inc:192
 msgid "Seconds"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:176
+#: admin/dns/class_DnsRecordAttribute.inc:170
 msgid "North/South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "North"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:179
+#: admin/dns/class_DnsRecordAttribute.inc:173
 msgid "South"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:184
+#: admin/dns/class_DnsRecordAttribute.inc:178
 msgid "Longitude"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:203
+#: admin/dns/class_DnsRecordAttribute.inc:197
 msgid "East/West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "East"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:206
+#: admin/dns/class_DnsRecordAttribute.inc:200
 msgid "West"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:211
+#: admin/dns/class_DnsRecordAttribute.inc:205
 msgid "Altitude (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:216
+#: admin/dns/class_DnsRecordAttribute.inc:210
 msgid "Size (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:221
+#: admin/dns/class_DnsRecordAttribute.inc:215
 msgid "Horizontal precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:226
+#: admin/dns/class_DnsRecordAttribute.inc:220
 msgid "Vertical precision (meters)"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:237
+#: admin/dns/class_DnsRecordAttribute.inc:231
 msgid "NAPTR Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid "Order"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:241
+#: admin/dns/class_DnsRecordAttribute.inc:235
 msgid ""
 "Integer specifying the order in which the NAPTR records MUST be processed to"
 " ensure the correct ordering of rules.  Low numbers are processed before "
 "high numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid "Preference"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:246
+#: admin/dns/class_DnsRecordAttribute.inc:240
 msgid ""
 "Integer that specifies the order in which NAPTR records with equal \"order\""
 " values SHOULD be processed, low numbers being processed before high "
 "numbers."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid "Flags"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:251
+#: admin/dns/class_DnsRecordAttribute.inc:245
 msgid ""
 "Flags to control aspects of the rewriting and interpretation of the fields "
 "in the record. Flags are single characters from the set [A-Z0-9].  The case "
 "of the alphabetic characters is not significant."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid "Service"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:255
+#: admin/dns/class_DnsRecordAttribute.inc:249
 msgid ""
 "Specifies the service(s) available down this rewrite path. It may also "
 "specify the particular protocol that is used to talk with a service. A "
@@ -270,129 +270,129 @@ msgid ""
 "terminal."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid "Regular Expression"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:259
+#: admin/dns/class_DnsRecordAttribute.inc:253
 msgid ""
 "A STRING containing a substitution expression that is applied to the "
 "original string held by the client in order to construct the next domain "
 "name to lookup."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid "Replacement"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:263
+#: admin/dns/class_DnsRecordAttribute.inc:257
 msgid ""
 "The next NAME to query for NAPTR, SRV, or address records depending on the "
 "value of the flags field."
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:274
+#: admin/dns/class_DnsRecordAttribute.inc:268
 msgid "SRV Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:272
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid "Priority"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:278
+#: admin/dns/class_DnsRecordAttribute.inc:272
 msgid "Priority of the target host, lower value means more preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid "Weight"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:283
+#: admin/dns/class_DnsRecordAttribute.inc:277
 msgid ""
 "Relative weight for records with the same priority, higher value means more "
 "preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "Port"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:288
+#: admin/dns/class_DnsRecordAttribute.inc:282
 msgid "TCP or UDP port on which the service is to be found"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
-#: admin/dns/class_DnsRecordAttribute.inc:309
-#: admin/dns/class_DnsRecordAttribute.inc:316
-#: admin/dns/class_DnsRecordAttribute.inc:335
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:287
+#: admin/dns/class_DnsRecordAttribute.inc:303
+#: admin/dns/class_DnsRecordAttribute.inc:310
+#: admin/dns/class_DnsRecordAttribute.inc:329
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid "Target"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:293
+#: admin/dns/class_DnsRecordAttribute.inc:287
 msgid ""
 "Canonical hostname of the machine providing the service, ending in a dot"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:309
+#: admin/dns/class_DnsRecordAttribute.inc:303
 msgid "An IPv4 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:316
+#: admin/dns/class_DnsRecordAttribute.inc:310
 msgid "An IPv6 address"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:326
+#: admin/dns/class_DnsRecordAttribute.inc:320
 msgid "MX Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:330
+#: admin/dns/class_DnsRecordAttribute.inc:324
 msgid ""
 "Preference given to this RR among others at the same owner, lower values are"
 " preferred"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:335
+#: admin/dns/class_DnsRecordAttribute.inc:329
 msgid ""
 "Domain name which specifies a host willing to act as a mail exchange for the"
 " owner name"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:347
+#: admin/dns/class_DnsRecordAttribute.inc:341
 msgid ""
 "Domain name which specifies a host which should be authoritative for the "
 "specified class and domain"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356 admin/dns/class_dnsZone.inc:45
+#: admin/dns/class_DnsRecordAttribute.inc:350 admin/dns/class_dnsZone.inc:45
 #: admin/dns/class_dnsZone.inc:54
 msgid "Record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:356
+#: admin/dns/class_DnsRecordAttribute.inc:350
 msgid ""
 "SSHFP record content. Can be obtained using \"ssh-keygen -r some.host.tld\","
 " or sshfp command for instance"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Redirect to"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:362
+#: admin/dns/class_DnsRecordAttribute.inc:356
 msgid "Domain that this subdomain is an alias of"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368 admin/dns/class_dnsZone.inc:188
+#: admin/dns/class_DnsRecordAttribute.inc:362 admin/dns/class_dnsZone.inc:188
 msgid "Content"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:368
+#: admin/dns/class_DnsRecordAttribute.inc:362
 msgid "Content of this record"
 msgstr ""
 
-#: admin/dns/class_DnsRecordAttribute.inc:418
+#: admin/dns/class_DnsRecordAttribute.inc:412
 msgid "The entered IP does not match the selected reverse zone"
 msgstr ""
 
diff --git a/dovecot/locale/af_ZA/fusiondirectory.po b/dovecot/locale/af_ZA/fusiondirectory.po
index 04035c381d..3676df48c2 100644
--- a/dovecot/locale/af_ZA/fusiondirectory.po
+++ b/dovecot/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po
index 9ef2325799..016255c6d3 100644
--- a/dovecot/locale/ar/fusiondirectory.po
+++ b/dovecot/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po
index f6485c60e0..40920f39ce 100644
--- a/dovecot/locale/ca/fusiondirectory.po
+++ b/dovecot/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po
index 47ee851be7..c16fcaa1a4 100644
--- a/dovecot/locale/cs_CZ/fusiondirectory.po
+++ b/dovecot/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po
index c2642d0deb..c60186133a 100644
--- a/dovecot/locale/de/fusiondirectory.po
+++ b/dovecot/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po
index 31ee2d053c..30f111d699 100644
--- a/dovecot/locale/el_GR/fusiondirectory.po
+++ b/dovecot/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po
index d1643b458b..bad56fd60f 100644
--- a/dovecot/locale/es/fusiondirectory.po
+++ b/dovecot/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po
index 36136937f0..d6a7f7cae3 100644
--- a/dovecot/locale/es_CO/fusiondirectory.po
+++ b/dovecot/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po
index a223027728..a542f3779c 100644
--- a/dovecot/locale/es_VE/fusiondirectory.po
+++ b/dovecot/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po
index f205263401..ced8f218c1 100644
--- a/dovecot/locale/fa_IR/fusiondirectory.po
+++ b/dovecot/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po
index 09eede04d6..5f44c63067 100644
--- a/dovecot/locale/fi_FI/fusiondirectory.po
+++ b/dovecot/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po
index 7efec1f40e..e6923366ca 100644
--- a/dovecot/locale/fr/fusiondirectory.po
+++ b/dovecot/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po
index 058defab6d..88b2167d1c 100644
--- a/dovecot/locale/hu_HU/fusiondirectory.po
+++ b/dovecot/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po
index f3d87f71e2..7da82b2fc8 100644
--- a/dovecot/locale/id/fusiondirectory.po
+++ b/dovecot/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po
index 1510930d62..4f05dbc6db 100644
--- a/dovecot/locale/it_IT/fusiondirectory.po
+++ b/dovecot/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/ja/fusiondirectory.po b/dovecot/locale/ja/fusiondirectory.po
index 5249232bab..e1398dc015 100644
--- a/dovecot/locale/ja/fusiondirectory.po
+++ b/dovecot/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/ko/fusiondirectory.po b/dovecot/locale/ko/fusiondirectory.po
index b52195e8c5..2436b5669f 100644
--- a/dovecot/locale/ko/fusiondirectory.po
+++ b/dovecot/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po
index def26f65ae..9742b9d092 100644
--- a/dovecot/locale/lv/fusiondirectory.po
+++ b/dovecot/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po
index 59b7d06b60..ad4e30d155 100644
--- a/dovecot/locale/nb/fusiondirectory.po
+++ b/dovecot/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po
index 73b2e5c29f..a3ca11289d 100644
--- a/dovecot/locale/nl/fusiondirectory.po
+++ b/dovecot/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po
index 7dc7146dfd..409358a5bd 100644
--- a/dovecot/locale/pl/fusiondirectory.po
+++ b/dovecot/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po
index a7905a809f..fcf0ebb0d1 100644
--- a/dovecot/locale/pt/fusiondirectory.po
+++ b/dovecot/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po
index 54ebca130b..d36907dc76 100644
--- a/dovecot/locale/pt_BR/fusiondirectory.po
+++ b/dovecot/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:28
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:29
diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po
index a226f903fc..98140615cf 100644
--- a/dovecot/locale/ru/fusiondirectory.po
+++ b/dovecot/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po
index 60474de9cf..82bd792bf7 100644
--- a/dovecot/locale/ru@petr1708/fusiondirectory.po
+++ b/dovecot/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po
index 1c6798710c..0007bf555d 100644
--- a/dovecot/locale/sv/fusiondirectory.po
+++ b/dovecot/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dovecot/locale/tr_TR/fusiondirectory.po b/dovecot/locale/tr_TR/fusiondirectory.po
index d545c9d709..b0584f1c1e 100644
--- a/dovecot/locale/tr_TR/fusiondirectory.po
+++ b/dovecot/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -80,7 +84,7 @@ msgstr ""
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:83
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: admin/systems/services/dovecot/class_serviceDovecot.inc:83
 msgid "Admin user password"
diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po
index 42335d8d61..d40cfd90d2 100644
--- a/dovecot/locale/ug/fusiondirectory.po
+++ b/dovecot/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po
index d5b04e5ef2..fb294e8333 100644
--- a/dovecot/locale/vi_VN/fusiondirectory.po
+++ b/dovecot/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po
index d8a11b7349..6fb4d197fe 100644
--- a/dovecot/locale/zh/fusiondirectory.po
+++ b/dovecot/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dovecot/locale/zh_TW/fusiondirectory.po b/dovecot/locale/zh_TW/fusiondirectory.po
index 258fbab46c..4ae106c5b8 100644
--- a/dovecot/locale/zh_TW/fusiondirectory.po
+++ b/dovecot/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/af_ZA/fusiondirectory.po b/dsa/locale/af_ZA/fusiondirectory.po
index 123a94f5c5..16e64dac4f 100644
--- a/dsa/locale/af_ZA/fusiondirectory.po
+++ b/dsa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po
index 3c59a87175..2bb6dbf21c 100644
--- a/dsa/locale/ar/fusiondirectory.po
+++ b/dsa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po
index c353f8c171..94d32cf261 100644
--- a/dsa/locale/ca/fusiondirectory.po
+++ b/dsa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po
index 55e58e273f..e76f2dc09c 100644
--- a/dsa/locale/cs_CZ/fusiondirectory.po
+++ b/dsa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po
index e95b85edad..941ac1f7dc 100644
--- a/dsa/locale/de/fusiondirectory.po
+++ b/dsa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po
index 3d0e229963..d66716b62b 100644
--- a/dsa/locale/el_GR/fusiondirectory.po
+++ b/dsa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po
index 27d7b45697..81c0d7f9cd 100644
--- a/dsa/locale/es/fusiondirectory.po
+++ b/dsa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po
index f47e56b9d2..fda264b558 100644
--- a/dsa/locale/es_CO/fusiondirectory.po
+++ b/dsa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po
index 1f785c0be3..4e7b4b27d9 100644
--- a/dsa/locale/es_VE/fusiondirectory.po
+++ b/dsa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po
index fad9a92e87..15c979d82f 100644
--- a/dsa/locale/fa_IR/fusiondirectory.po
+++ b/dsa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po
index 72c141a486..b1b4345e26 100644
--- a/dsa/locale/fi_FI/fusiondirectory.po
+++ b/dsa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po
index 9d35da62a0..08f7818505 100644
--- a/dsa/locale/fr/fusiondirectory.po
+++ b/dsa/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po
index ca064ecbba..09e0333a1a 100644
--- a/dsa/locale/hu_HU/fusiondirectory.po
+++ b/dsa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po
index 7107b1aaa1..df441e7889 100644
--- a/dsa/locale/id/fusiondirectory.po
+++ b/dsa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po
index 281080ef53..1764dbbbb9 100644
--- a/dsa/locale/it_IT/fusiondirectory.po
+++ b/dsa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/ja/fusiondirectory.po b/dsa/locale/ja/fusiondirectory.po
index 0c3574bc87..266b1a8118 100644
--- a/dsa/locale/ja/fusiondirectory.po
+++ b/dsa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/ko/fusiondirectory.po b/dsa/locale/ko/fusiondirectory.po
index 49623cd917..33cab461e7 100644
--- a/dsa/locale/ko/fusiondirectory.po
+++ b/dsa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po
index adec35882d..181c8ae123 100644
--- a/dsa/locale/lv/fusiondirectory.po
+++ b/dsa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po
index 568abd79d0..bb01d22b40 100644
--- a/dsa/locale/nb/fusiondirectory.po
+++ b/dsa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po
index 52e58cb316..f59002a089 100644
--- a/dsa/locale/nl/fusiondirectory.po
+++ b/dsa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po
index cfb41c0be6..1b1aaed8b8 100644
--- a/dsa/locale/pl/fusiondirectory.po
+++ b/dsa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po
index 613a5e766a..24950f6c49 100644
--- a/dsa/locale/pt/fusiondirectory.po
+++ b/dsa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po
index 8d2f5199b6..2b8b0ae069 100644
--- a/dsa/locale/pt_BR/fusiondirectory.po
+++ b/dsa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/dsa/class_dsaManagement.inc:34 admin/dsa/class_dsaManagement.inc:39
 #: config/dsa/class_dsaConfig.inc:42
diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po
index 2cc4e2b242..207744e6df 100644
--- a/dsa/locale/ru/fusiondirectory.po
+++ b/dsa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po
index c73cb1dc1d..abcac280dc 100644
--- a/dsa/locale/ru@petr1708/fusiondirectory.po
+++ b/dsa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po
index 83c44058d8..a13886403f 100644
--- a/dsa/locale/sv/fusiondirectory.po
+++ b/dsa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/dsa/locale/tr_TR/fusiondirectory.po b/dsa/locale/tr_TR/fusiondirectory.po
index 00f340ec3c..cc1ce9d41f 100644
--- a/dsa/locale/tr_TR/fusiondirectory.po
+++ b/dsa/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +59,7 @@ msgstr ""
 
 #: admin/dsa/class_simpleSecurityObject.inc:68
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: config/dsa/class_dsaConfig.inc:28
 msgid "DSA configuration"
diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po
index 49d2ad5a05..e0e1880c30 100644
--- a/dsa/locale/ug/fusiondirectory.po
+++ b/dsa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po
index 06e0df7a5b..256ebe77e8 100644
--- a/dsa/locale/vi_VN/fusiondirectory.po
+++ b/dsa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po
index 6e40dca205..09faf5f6fa 100644
--- a/dsa/locale/zh/fusiondirectory.po
+++ b/dsa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/dsa/locale/zh_TW/fusiondirectory.po b/dsa/locale/zh_TW/fusiondirectory.po
index 888a94f0df..82039eed86 100644
--- a/dsa/locale/zh_TW/fusiondirectory.po
+++ b/dsa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:09+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/af_ZA/fusiondirectory.po b/ejbca/locale/af_ZA/fusiondirectory.po
index f76d40f16a..cce0733530 100644
--- a/ejbca/locale/af_ZA/fusiondirectory.po
+++ b/ejbca/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po
index d32fef8967..13f6c35de1 100644
--- a/ejbca/locale/ar/fusiondirectory.po
+++ b/ejbca/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po
index f6604c8e7a..f30436802e 100644
--- a/ejbca/locale/ca/fusiondirectory.po
+++ b/ejbca/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po
index 0fee31e763..58eb4d30d2 100644
--- a/ejbca/locale/cs_CZ/fusiondirectory.po
+++ b/ejbca/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po
index 1ea63fa2b0..7ae15234b3 100644
--- a/ejbca/locale/de/fusiondirectory.po
+++ b/ejbca/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po
index ee9c88caa9..216cb990ba 100644
--- a/ejbca/locale/el_GR/fusiondirectory.po
+++ b/ejbca/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po
index 84c5b51cba..29d2ef11e2 100644
--- a/ejbca/locale/es/fusiondirectory.po
+++ b/ejbca/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po
index 1265ce5086..23e8da03b6 100644
--- a/ejbca/locale/es_CO/fusiondirectory.po
+++ b/ejbca/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po
index 39298b0865..738154d5ea 100644
--- a/ejbca/locale/es_VE/fusiondirectory.po
+++ b/ejbca/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po
index ab048fdb9b..6c1f083d07 100644
--- a/ejbca/locale/fa_IR/fusiondirectory.po
+++ b/ejbca/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po
index 762f47135e..18624fa731 100644
--- a/ejbca/locale/fi_FI/fusiondirectory.po
+++ b/ejbca/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po
index ff847c4c45..99c384b319 100644
--- a/ejbca/locale/fr/fusiondirectory.po
+++ b/ejbca/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po
index 2e643ca314..551f9db18e 100644
--- a/ejbca/locale/hu_HU/fusiondirectory.po
+++ b/ejbca/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po
index 1f48af2f94..6c1f0c581d 100644
--- a/ejbca/locale/id/fusiondirectory.po
+++ b/ejbca/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po
index 05b234af3c..f93a573594 100644
--- a/ejbca/locale/it_IT/fusiondirectory.po
+++ b/ejbca/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/ja/fusiondirectory.po b/ejbca/locale/ja/fusiondirectory.po
index 1e10a6e57a..93e58c6fff 100644
--- a/ejbca/locale/ja/fusiondirectory.po
+++ b/ejbca/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/ko/fusiondirectory.po b/ejbca/locale/ko/fusiondirectory.po
index 2e973e5dae..1cb0629c31 100644
--- a/ejbca/locale/ko/fusiondirectory.po
+++ b/ejbca/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po
index 4903de650d..944d0f4c06 100644
--- a/ejbca/locale/lv/fusiondirectory.po
+++ b/ejbca/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po
index fb6b9f9e91..0fecd67390 100644
--- a/ejbca/locale/nb/fusiondirectory.po
+++ b/ejbca/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po
index 2bf4db6c2f..73e5404907 100644
--- a/ejbca/locale/nl/fusiondirectory.po
+++ b/ejbca/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po
index 2d79d8ce03..617bdef79b 100644
--- a/ejbca/locale/pl/fusiondirectory.po
+++ b/ejbca/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po
index b88dfc3758..d9953987ee 100644
--- a/ejbca/locale/pt/fusiondirectory.po
+++ b/ejbca/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po
index e74ca0c96a..5692d10088 100644
--- a/ejbca/locale/pt_BR/fusiondirectory.po
+++ b/ejbca/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ejbca/class_ejbcaManagement.inc:33
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:29
diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po
index 84cff5fd66..e3c16297fa 100644
--- a/ejbca/locale/ru/fusiondirectory.po
+++ b/ejbca/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po
index f96ac49e43..17f12183f0 100644
--- a/ejbca/locale/ru@petr1708/fusiondirectory.po
+++ b/ejbca/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po
index 92b0fd4b8d..8118ea55ac 100644
--- a/ejbca/locale/sv/fusiondirectory.po
+++ b/ejbca/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ejbca/locale/tr_TR/fusiondirectory.po b/ejbca/locale/tr_TR/fusiondirectory.po
index 840649c8e9..716657df86 100644
--- a/ejbca/locale/tr_TR/fusiondirectory.po
+++ b/ejbca/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -28,7 +32,7 @@ msgstr ""
 
 #: admin/ejbca/class_ejbcaManagement.inc:53
 msgid "Download"
-msgstr ""
+msgstr "İndir"
 
 #: admin/ejbca/certificates/class_ejbcaCertificates.inc:30
 msgid "Assign EJBCA certificates to a user"
diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po
index fc79efe1f9..5123bec187 100644
--- a/ejbca/locale/ug/fusiondirectory.po
+++ b/ejbca/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po
index b9a7adad34..59db869ecb 100644
--- a/ejbca/locale/vi_VN/fusiondirectory.po
+++ b/ejbca/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po
index 2a55480164..2e0a5d9d44 100644
--- a/ejbca/locale/zh/fusiondirectory.po
+++ b/ejbca/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ejbca/locale/zh_TW/fusiondirectory.po b/ejbca/locale/zh_TW/fusiondirectory.po
index d1c14b5a7d..2732a7e2a5 100644
--- a/ejbca/locale/zh_TW/fusiondirectory.po
+++ b/ejbca/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fai/locale/af_ZA/fusiondirectory.po b/fai/locale/af_ZA/fusiondirectory.po
index 550091e872..b482b6fd8b 100644
--- a/fai/locale/af_ZA/fusiondirectory.po
+++ b/fai/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po
index 4ff0a18d23..9ee6c67677 100644
--- a/fai/locale/ar/fusiondirectory.po
+++ b/fai/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po
index 2c75e8acf4..e5a89c0ac1 100644
--- a/fai/locale/ca/fusiondirectory.po
+++ b/fai/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po
index 6f91e2035d..ae9e87c64c 100644
--- a/fai/locale/cs_CZ/fusiondirectory.po
+++ b/fai/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
@@ -707,20 +707,20 @@ msgstr "Soubory se šablonami"
 msgid "Template files in this class"
 msgstr "Soubory se šablonami v této třídě"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Spravovat FAI balíčky programového vybavení a skripty pro nasazování"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Nejsou zde žádné FAI větve"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr "Pro vytvoření těchto přidejte alespoň jeden repozitář."
 
diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po
index 8360f36d88..208548ae6c 100644
--- a/fai/locale/de/fusiondirectory.po
+++ b/fai/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
@@ -698,20 +698,20 @@ msgstr "Vorlagendateien"
 msgid "Template files in this class"
 msgstr "Vorlagendateien in dieser Klasse"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Verwaltung von FAI Softwarepaketen und Deployment-Recipes"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Es gibt keine FAI-Zweige"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po
index dc0c5e5ee6..0d92f100b6 100644
--- a/fai/locale/el_GR/fusiondirectory.po
+++ b/fai/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
@@ -697,20 +697,20 @@ msgstr "Αρχεία προτύπων"
 msgid "Template files in this class"
 msgstr "Αρχεία προτύπων σε αυτή την κλάση"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Διαχείριση πακέτων λογισμικού FAI και οδηγιών ανάπτυξης"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Δεν υπάρχουν κλάδοι FAI"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 "Παρακαλούμε, προσθέστε τουλάχιστον μια υπηρεσία αποθετηρίου για να "
diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po
index 59eeaeeb10..14de4c574e 100644
--- a/fai/locale/es/fusiondirectory.po
+++ b/fai/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -698,20 +698,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po
index 800f6605a0..59dde347df 100644
--- a/fai/locale/es_CO/fusiondirectory.po
+++ b/fai/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po
index 641d3590b4..b58a4ddc0c 100644
--- a/fai/locale/es_VE/fusiondirectory.po
+++ b/fai/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -698,20 +698,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po
index c43c49e6f0..1bda7e8bbd 100644
--- a/fai/locale/fa_IR/fusiondirectory.po
+++ b/fai/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po
index 34c0f60760..022f1e5eb7 100644
--- a/fai/locale/fi_FI/fusiondirectory.po
+++ b/fai/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po
index ad3ffd5301..146b632b3f 100644
--- a/fai/locale/fr/fusiondirectory.po
+++ b/fai/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -711,20 +711,20 @@ msgstr "Fichiers du modèle"
 msgid "Template files in this class"
 msgstr "Fichiers de modèle de cette classe"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Gestion des paquets logiciels et recettes de déploiement FAI"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Il n'y a pas de branche FAI"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr "Veuillez ajouter au moins un service de dépôt pour créer celle-ci."
 
diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po
index 57237e634d..b3d9a08de4 100644
--- a/fai/locale/hu_HU/fusiondirectory.po
+++ b/fai/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po
index 3190bcdade..0ec7d5ef7b 100644
--- a/fai/locale/id/fusiondirectory.po
+++ b/fai/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po
index 5055323473..f547ca0322 100644
--- a/fai/locale/it_IT/fusiondirectory.po
+++ b/fai/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -708,20 +708,20 @@ msgstr "Modelli di file"
 msgid "Template files in this class"
 msgstr "File modelli di questa classe"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Gestire i pacchetti software e le ricette di implementazione di FAI"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Non ci sono rami FAI"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr "Prego aggiungere almeno un servizio repository per creare questi"
 
diff --git a/fai/locale/ja/fusiondirectory.po b/fai/locale/ja/fusiondirectory.po
index 63ba4d74ca..e9cc0dddad 100644
--- a/fai/locale/ja/fusiondirectory.po
+++ b/fai/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/ko/fusiondirectory.po b/fai/locale/ko/fusiondirectory.po
index 5577c24ba8..8714d2f117 100644
--- a/fai/locale/ko/fusiondirectory.po
+++ b/fai/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po
index 4c0a21428d..1058a9b0a6 100644
--- a/fai/locale/lv/fusiondirectory.po
+++ b/fai/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po
index 1d7de893bc..ff111839bd 100644
--- a/fai/locale/nb/fusiondirectory.po
+++ b/fai/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po
index 7eda9fed11..d295a92f11 100644
--- a/fai/locale/nl/fusiondirectory.po
+++ b/fai/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
@@ -709,20 +709,20 @@ msgstr "Sjabloonbestanden"
 msgid "Template files in this class"
 msgstr "Sjabloonbestand in deze klasse"
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Beheer FAI software pakketten and deployment recepten"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr "Er zijn geen FAI branches"
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 "A.u.b. voeg ten minste één repository service toe om deze aan te maken"
diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po
index 0b8d1647f7..f3526bf8b8 100644
--- a/fai/locale/pl/fusiondirectory.po
+++ b/fai/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po
index c924836dea..5e7426ae45 100644
--- a/fai/locale/pt/fusiondirectory.po
+++ b/fai/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po
index abeb194d04..8e99f674fe 100644
--- a/fai/locale/pt_BR/fusiondirectory.po
+++ b/fai/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/fai/class_faiVariable.inc:28
 msgid "Variable"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Gerencias pacotes de software FAI e receitas de implantação"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po
index 6180b30315..631f4e2bf3 100644
--- a/fai/locale/ru/fusiondirectory.po
+++ b/fai/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po
index d3ce21cf53..8fa156e2cd 100644
--- a/fai/locale/ru@petr1708/fusiondirectory.po
+++ b/fai/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po
index 00260c8e42..f1c4475685 100644
--- a/fai/locale/sv/fusiondirectory.po
+++ b/fai/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
@@ -697,20 +697,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "FAI"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr "Hantera FAI-programpaket och deployment-recept"
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/tr_TR/fusiondirectory.po b/fai/locale/tr_TR/fusiondirectory.po
index faf9723740..7b5d1fb600 100644
--- a/fai/locale/tr_TR/fusiondirectory.po
+++ b/fai/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -153,7 +153,7 @@ msgstr ""
 
 #: admin/fai/class_faiDiskEntry.inc:256
 msgid "Label"
-msgstr ""
+msgstr "Etiket"
 
 #: admin/fai/class_faiDiskEntry.inc:256
 msgid "UUID"
@@ -278,7 +278,7 @@ msgstr ""
 
 #: admin/fai/class_faiPartition.inc:234
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
 #: admin/fai/class_faiPartition.inc:234
 msgid "Partition type"
@@ -335,7 +335,7 @@ msgstr ""
 
 #: admin/fai/class_faiPartition.inc:296
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: admin/fai/class_faiPartition.inc:296
 msgid ""
@@ -565,7 +565,7 @@ msgstr ""
 
 #: admin/fai/class_faiPackageConfiguration.inc:172
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: admin/fai/class_faiPackageConfiguration.inc:173
 #, php-format
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
@@ -804,7 +804,7 @@ msgstr ""
 
 #: admin/systems/class_faiLogView.inc:71
 msgid "File"
-msgstr ""
+msgstr "Dosya"
 
 #: admin/systems/class_faiLogView.inc:72
 msgid "Date"
diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po
index 616dbc3214..ac60ea42ee 100644
--- a/fai/locale/ug/fusiondirectory.po
+++ b/fai/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po
index dd61d56c92..4846c3b719 100644
--- a/fai/locale/vi_VN/fusiondirectory.po
+++ b/fai/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po
index 14310fd5f5..0e8336817b 100644
--- a/fai/locale/zh/fusiondirectory.po
+++ b/fai/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
@@ -696,20 +696,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr "自动化安装"
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/fai/locale/zh_TW/fusiondirectory.po b/fai/locale/zh_TW/fusiondirectory.po
index 54d640f1d3..1c610cc81b 100644
--- a/fai/locale/zh_TW/fusiondirectory.po
+++ b/fai/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -692,20 +692,20 @@ msgstr ""
 msgid "Template files in this class"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:117 admin/fai/class_faiManagement.inc:122
+#: admin/fai/class_faiManagement.inc:116 admin/fai/class_faiManagement.inc:121
 #: admin/systems/class_faiStartup.inc:64 config/fai/class_faiConfig.inc:41
 msgid "FAI"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:118
+#: admin/fai/class_faiManagement.inc:117
 msgid "Manage FAI software packages and deployment recipes"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:138
+#: admin/fai/class_faiManagement.inc:137
 msgid "There are no FAI branches"
 msgstr ""
 
-#: admin/fai/class_faiManagement.inc:141
+#: admin/fai/class_faiManagement.inc:140
 msgid " Please add at least one repository service to create those."
 msgstr ""
 
diff --git a/freeradius/locale/af_ZA/fusiondirectory.po b/freeradius/locale/af_ZA/fusiondirectory.po
index 1653f1c952..46588cc8f3 100644
--- a/freeradius/locale/af_ZA/fusiondirectory.po
+++ b/freeradius/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po
index f664d2c2b3..98c297970d 100644
--- a/freeradius/locale/ar/fusiondirectory.po
+++ b/freeradius/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po
index af0899cb5b..0936045d2c 100644
--- a/freeradius/locale/ca/fusiondirectory.po
+++ b/freeradius/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po
index a7dc2b107e..ceec302519 100644
--- a/freeradius/locale/cs_CZ/fusiondirectory.po
+++ b/freeradius/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po
index 4a0ca953c4..0826bfd367 100644
--- a/freeradius/locale/de/fusiondirectory.po
+++ b/freeradius/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po
index dcd8ee790b..b1ad7f67ec 100644
--- a/freeradius/locale/el_GR/fusiondirectory.po
+++ b/freeradius/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po
index 565d12a863..e440c36a7f 100644
--- a/freeradius/locale/es/fusiondirectory.po
+++ b/freeradius/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po
index b45e6f72e0..64545ebfa1 100644
--- a/freeradius/locale/es_CO/fusiondirectory.po
+++ b/freeradius/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po
index 704f4ba454..d1abbe39fd 100644
--- a/freeradius/locale/es_VE/fusiondirectory.po
+++ b/freeradius/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po
index d3f99ded3e..1c80c1ed0a 100644
--- a/freeradius/locale/fa_IR/fusiondirectory.po
+++ b/freeradius/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po
index 64452dc816..bee3b29966 100644
--- a/freeradius/locale/fi_FI/fusiondirectory.po
+++ b/freeradius/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po
index e78a684cee..f0eec1f2f1 100644
--- a/freeradius/locale/fr/fusiondirectory.po
+++ b/freeradius/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po
index 07a022d43b..43e4e1b2b8 100644
--- a/freeradius/locale/hu_HU/fusiondirectory.po
+++ b/freeradius/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po
index d30338933c..2a0ce6a9ab 100644
--- a/freeradius/locale/id/fusiondirectory.po
+++ b/freeradius/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po
index d1b49f5ec7..5850f1ac5c 100644
--- a/freeradius/locale/it_IT/fusiondirectory.po
+++ b/freeradius/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/ja/fusiondirectory.po b/freeradius/locale/ja/fusiondirectory.po
index 9c963d67b7..c0bbe2c2e5 100644
--- a/freeradius/locale/ja/fusiondirectory.po
+++ b/freeradius/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/ko/fusiondirectory.po b/freeradius/locale/ko/fusiondirectory.po
index e2af79b726..4df91a262e 100644
--- a/freeradius/locale/ko/fusiondirectory.po
+++ b/freeradius/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po
index 478dc808e4..ec826511c8 100644
--- a/freeradius/locale/lv/fusiondirectory.po
+++ b/freeradius/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po
index 822921ddf7..fdbe19135d 100644
--- a/freeradius/locale/nb/fusiondirectory.po
+++ b/freeradius/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po
index 5b98348b4b..12060a213f 100644
--- a/freeradius/locale/nl/fusiondirectory.po
+++ b/freeradius/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po
index a1e0015232..3f7418c8a8 100644
--- a/freeradius/locale/pl/fusiondirectory.po
+++ b/freeradius/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po
index 5609eb52c7..467873be8b 100644
--- a/freeradius/locale/pt/fusiondirectory.po
+++ b/freeradius/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po
index 67e5d156ec..64b396d7ac 100644
--- a/freeradius/locale/pt_BR/fusiondirectory.po
+++ b/freeradius/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/freeradius/class_freeradiusGroup.inc:34
 #: personal/freeradius/class_freeradiusAccount.inc:35
diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po
index 66fa484b58..4c390dbfbb 100644
--- a/freeradius/locale/ru/fusiondirectory.po
+++ b/freeradius/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po
index f2306f3cb4..1f692bbf83 100644
--- a/freeradius/locale/ru@petr1708/fusiondirectory.po
+++ b/freeradius/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po
index 39e03eef28..607489220c 100644
--- a/freeradius/locale/sv/fusiondirectory.po
+++ b/freeradius/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/freeradius/locale/tr_TR/fusiondirectory.po b/freeradius/locale/tr_TR/fusiondirectory.po
index b50bc28bb0..08f259d98b 100644
--- a/freeradius/locale/tr_TR/fusiondirectory.po
+++ b/freeradius/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po
index 68e76c2f22..bb0c096599 100644
--- a/freeradius/locale/ug/fusiondirectory.po
+++ b/freeradius/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po
index e7b46942a4..cfd89e3faa 100644
--- a/freeradius/locale/vi_VN/fusiondirectory.po
+++ b/freeradius/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po
index 4a7706c7b6..0d7e26e51c 100644
--- a/freeradius/locale/zh/fusiondirectory.po
+++ b/freeradius/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/freeradius/locale/zh_TW/fusiondirectory.po b/freeradius/locale/zh_TW/fusiondirectory.po
index 68cafcc89a..596c89d10d 100644
--- a/freeradius/locale/zh_TW/fusiondirectory.po
+++ b/freeradius/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/af_ZA/fusiondirectory.po b/fusioninventory/locale/af_ZA/fusiondirectory.po
index e79452511e..19208d21c3 100644
--- a/fusioninventory/locale/af_ZA/fusiondirectory.po
+++ b/fusioninventory/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po
index a335e18f2d..06284af766 100644
--- a/fusioninventory/locale/ar/fusiondirectory.po
+++ b/fusioninventory/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po
index e36ffc3db0..d5ae389e1a 100644
--- a/fusioninventory/locale/ca/fusiondirectory.po
+++ b/fusioninventory/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po
index a5f186b329..b5083c84f1 100644
--- a/fusioninventory/locale/cs_CZ/fusiondirectory.po
+++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po
index f9b91c5108..f02d594b81 100644
--- a/fusioninventory/locale/de/fusiondirectory.po
+++ b/fusioninventory/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po
index 2c68c8d93a..9c68698cee 100644
--- a/fusioninventory/locale/el_GR/fusiondirectory.po
+++ b/fusioninventory/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po
index 169f1dd0ca..6b7f22f8b6 100644
--- a/fusioninventory/locale/es/fusiondirectory.po
+++ b/fusioninventory/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po
index deb430674c..00b84c487a 100644
--- a/fusioninventory/locale/es_CO/fusiondirectory.po
+++ b/fusioninventory/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po
index bc177ed1af..19140c0198 100644
--- a/fusioninventory/locale/es_VE/fusiondirectory.po
+++ b/fusioninventory/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po
index 805b44b822..4bd984338d 100644
--- a/fusioninventory/locale/fa_IR/fusiondirectory.po
+++ b/fusioninventory/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po
index b5b45583ce..bc2d8eb55f 100644
--- a/fusioninventory/locale/fi_FI/fusiondirectory.po
+++ b/fusioninventory/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po
index 02852ae50f..57f9e8e152 100644
--- a/fusioninventory/locale/fr/fusiondirectory.po
+++ b/fusioninventory/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po
index b89fd732f3..e73c8f8f95 100644
--- a/fusioninventory/locale/hu_HU/fusiondirectory.po
+++ b/fusioninventory/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po
index e290e17752..01b7a700bf 100644
--- a/fusioninventory/locale/id/fusiondirectory.po
+++ b/fusioninventory/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po
index daa51455c8..a9d33553a1 100644
--- a/fusioninventory/locale/it_IT/fusiondirectory.po
+++ b/fusioninventory/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/ja/fusiondirectory.po b/fusioninventory/locale/ja/fusiondirectory.po
index d759627268..6b289f0072 100644
--- a/fusioninventory/locale/ja/fusiondirectory.po
+++ b/fusioninventory/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/ko/fusiondirectory.po b/fusioninventory/locale/ko/fusiondirectory.po
index 681732239d..02b15453f3 100644
--- a/fusioninventory/locale/ko/fusiondirectory.po
+++ b/fusioninventory/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po
index 1ad7b9a4d3..3cdbb32396 100644
--- a/fusioninventory/locale/lv/fusiondirectory.po
+++ b/fusioninventory/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po
index c5b92e363a..dfb506b4bc 100644
--- a/fusioninventory/locale/nb/fusiondirectory.po
+++ b/fusioninventory/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po
index 123f30ca9c..69ffe15615 100644
--- a/fusioninventory/locale/nl/fusiondirectory.po
+++ b/fusioninventory/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po
index 87b13bcfc9..298263e051 100644
--- a/fusioninventory/locale/pl/fusiondirectory.po
+++ b/fusioninventory/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po
index 4288061875..a6dbbf3150 100644
--- a/fusioninventory/locale/pt/fusiondirectory.po
+++ b/fusioninventory/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po
index e5380ba680..79aa9c8830 100644
--- a/fusioninventory/locale/pt_BR/fusiondirectory.po
+++ b/fusioninventory/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/inventory/class_inventoryManagement.inc:37
 msgid "Inventory objects"
diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po
index 152ad14fa6..b40e513898 100644
--- a/fusioninventory/locale/ru/fusiondirectory.po
+++ b/fusioninventory/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
index e39844d4f3..77aa49cb83 100644
--- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po
+++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po
index ef83c19f0f..3a070efe81 100644
--- a/fusioninventory/locale/sv/fusiondirectory.po
+++ b/fusioninventory/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/fusioninventory/locale/tr_TR/fusiondirectory.po b/fusioninventory/locale/tr_TR/fusiondirectory.po
index c953eb2bbe..777e6cd472 100644
--- a/fusioninventory/locale/tr_TR/fusiondirectory.po
+++ b/fusioninventory/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,11 +52,11 @@ msgstr ""
 
 #: admin/inventory/inventory-list.xml:61 admin/inventory/inventory-list.xml:85
 msgid "Edit"
-msgstr ""
+msgstr "Düzenle"
 
 #: admin/inventory/inventory-list.xml:68 admin/inventory/inventory-list.xml:92
 msgid "Remove"
-msgstr ""
+msgstr "Kaldır"
 
 #: admin/systems/fusioninventory/class_fiInventoryAgent.inc:30
 msgid "Configuration"
@@ -169,7 +173,7 @@ msgstr ""
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:341
 msgid "Create"
-msgstr ""
+msgstr "OluÅŸtur"
 
 #: admin/systems/fusioninventory/class_fiInventory.inc:346
 msgid "No matching system"
diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po
index 666dc55f26..b69041b9f3 100644
--- a/fusioninventory/locale/ug/fusiondirectory.po
+++ b/fusioninventory/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po
index cdba7f9a2d..6e5ec3a103 100644
--- a/fusioninventory/locale/vi_VN/fusiondirectory.po
+++ b/fusioninventory/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po
index ba35ea515c..88cfaa56fb 100644
--- a/fusioninventory/locale/zh/fusiondirectory.po
+++ b/fusioninventory/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/fusioninventory/locale/zh_TW/fusiondirectory.po b/fusioninventory/locale/zh_TW/fusiondirectory.po
index 42245c7a41..4ad10349da 100644
--- a/fusioninventory/locale/zh_TW/fusiondirectory.po
+++ b/fusioninventory/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:11+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/af_ZA/fusiondirectory.po b/gpg/locale/af_ZA/fusiondirectory.po
index 8ac02cfad7..97c1fa32be 100644
--- a/gpg/locale/af_ZA/fusiondirectory.po
+++ b/gpg/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po
index 1e661f0464..8b4c7b6e0b 100644
--- a/gpg/locale/ar/fusiondirectory.po
+++ b/gpg/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po
index 27719f9a76..0925eec712 100644
--- a/gpg/locale/ca/fusiondirectory.po
+++ b/gpg/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po
index d0f19cadb5..88d62ac74b 100644
--- a/gpg/locale/cs_CZ/fusiondirectory.po
+++ b/gpg/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po
index d64f31c9ab..68cc29999f 100644
--- a/gpg/locale/de/fusiondirectory.po
+++ b/gpg/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po
index 7e8fd399d7..08e279e90f 100644
--- a/gpg/locale/el_GR/fusiondirectory.po
+++ b/gpg/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po
index abc61b6b06..99f8335064 100644
--- a/gpg/locale/es/fusiondirectory.po
+++ b/gpg/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po
index 7f6babcf3d..4e48592601 100644
--- a/gpg/locale/es_CO/fusiondirectory.po
+++ b/gpg/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po
index bdd0a73fa6..9f1dc7a318 100644
--- a/gpg/locale/es_VE/fusiondirectory.po
+++ b/gpg/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po
index a4a89d9d52..3038957ce1 100644
--- a/gpg/locale/fa_IR/fusiondirectory.po
+++ b/gpg/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po
index 2c4cf0b397..9501986b6a 100644
--- a/gpg/locale/fi_FI/fusiondirectory.po
+++ b/gpg/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po
index 9801f1abee..4edc3a3c62 100644
--- a/gpg/locale/fr/fusiondirectory.po
+++ b/gpg/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po
index a381f50ea5..13cb87c91f 100644
--- a/gpg/locale/hu_HU/fusiondirectory.po
+++ b/gpg/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po
index b915ce81d5..d4aadb78ac 100644
--- a/gpg/locale/id/fusiondirectory.po
+++ b/gpg/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po
index aba683aa1d..fbb6e19170 100644
--- a/gpg/locale/it_IT/fusiondirectory.po
+++ b/gpg/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/ja/fusiondirectory.po b/gpg/locale/ja/fusiondirectory.po
index 696079761b..fd3ed2136d 100644
--- a/gpg/locale/ja/fusiondirectory.po
+++ b/gpg/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/ko/fusiondirectory.po b/gpg/locale/ko/fusiondirectory.po
index 63a2dbfbc4..682d77ba4c 100644
--- a/gpg/locale/ko/fusiondirectory.po
+++ b/gpg/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po
index 35c3e127bb..d7c8ac91b9 100644
--- a/gpg/locale/lv/fusiondirectory.po
+++ b/gpg/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po
index 5f39bf65ba..712c55ce44 100644
--- a/gpg/locale/nb/fusiondirectory.po
+++ b/gpg/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po
index 17e510057d..478eb5e6a7 100644
--- a/gpg/locale/nl/fusiondirectory.po
+++ b/gpg/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po
index ec9c95f71f..de18e0cff9 100644
--- a/gpg/locale/pl/fusiondirectory.po
+++ b/gpg/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po
index b1bffd638f..a860651924 100644
--- a/gpg/locale/pt/fusiondirectory.po
+++ b/gpg/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po
index 7a60c4ce55..6372aefeef 100644
--- a/gpg/locale/pt_BR/fusiondirectory.po
+++ b/gpg/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/gpg/class_pgpServerInfo.inc:31 addons/gpg/class_pgpServerInfo.inc:32
 #: addons/gpg/class_pgpServerInfo.inc:38 addons/gpg/class_pgpServerInfo.inc:56
diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po
index c1dbb1bf4c..4ee4b13b39 100644
--- a/gpg/locale/ru/fusiondirectory.po
+++ b/gpg/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po
index 7edb7fd8c2..5da21178bc 100644
--- a/gpg/locale/ru@petr1708/fusiondirectory.po
+++ b/gpg/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po
index 7f5be342d6..5a22f48409 100644
--- a/gpg/locale/sv/fusiondirectory.po
+++ b/gpg/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/gpg/locale/tr_TR/fusiondirectory.po b/gpg/locale/tr_TR/fusiondirectory.po
index 4223873695..dae7763d72 100644
--- a/gpg/locale/tr_TR/fusiondirectory.po
+++ b/gpg/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -132,4 +136,4 @@ msgstr ""
 
 #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:72
 msgid "Type"
-msgstr ""
+msgstr "Tür"
diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po
index e32da44e3f..c7354c0ca5 100644
--- a/gpg/locale/ug/fusiondirectory.po
+++ b/gpg/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po
index f85e6ff3a4..cfbe442d0d 100644
--- a/gpg/locale/vi_VN/fusiondirectory.po
+++ b/gpg/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po
index 7b22bc0115..47fa1d4f7d 100644
--- a/gpg/locale/zh/fusiondirectory.po
+++ b/gpg/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/gpg/locale/zh_TW/fusiondirectory.po b/gpg/locale/zh_TW/fusiondirectory.po
index 4ca94ce966..04b90fb6f8 100644
--- a/gpg/locale/zh_TW/fusiondirectory.po
+++ b/gpg/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/af_ZA/fusiondirectory.po b/ipmi/locale/af_ZA/fusiondirectory.po
index 5985a1db93..6b8b33eccd 100644
--- a/ipmi/locale/af_ZA/fusiondirectory.po
+++ b/ipmi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po
index 035fd5f8b8..d00f828e8a 100644
--- a/ipmi/locale/ar/fusiondirectory.po
+++ b/ipmi/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po
index e1b0e37f47..83cedc9cc1 100644
--- a/ipmi/locale/ca/fusiondirectory.po
+++ b/ipmi/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po
index ee1b106a19..530b1062e5 100644
--- a/ipmi/locale/cs_CZ/fusiondirectory.po
+++ b/ipmi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po
index 819cd31518..1f0d5085f5 100644
--- a/ipmi/locale/de/fusiondirectory.po
+++ b/ipmi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po
index 2d0e581d3c..b5a58124b7 100644
--- a/ipmi/locale/el_GR/fusiondirectory.po
+++ b/ipmi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po
index 17d6e0c7c1..318b17c3ca 100644
--- a/ipmi/locale/es/fusiondirectory.po
+++ b/ipmi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po
index ca1e805e36..6506892a52 100644
--- a/ipmi/locale/es_CO/fusiondirectory.po
+++ b/ipmi/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po
index 46a8e653b4..3cadc2ede8 100644
--- a/ipmi/locale/es_VE/fusiondirectory.po
+++ b/ipmi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po
index f94fb66968..54f0c6e313 100644
--- a/ipmi/locale/fa_IR/fusiondirectory.po
+++ b/ipmi/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po
index daf90450af..5a0d715276 100644
--- a/ipmi/locale/fi_FI/fusiondirectory.po
+++ b/ipmi/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po
index 4e4f841248..722896f258 100644
--- a/ipmi/locale/fr/fusiondirectory.po
+++ b/ipmi/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po
index 17a0a40c8a..100ef9090a 100644
--- a/ipmi/locale/hu_HU/fusiondirectory.po
+++ b/ipmi/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po
index e3b5d9e1d1..4966e86632 100644
--- a/ipmi/locale/id/fusiondirectory.po
+++ b/ipmi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po
index fcea5c1a7b..bfd8f6dcd3 100644
--- a/ipmi/locale/it_IT/fusiondirectory.po
+++ b/ipmi/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/ja/fusiondirectory.po b/ipmi/locale/ja/fusiondirectory.po
index e4f29998d6..64aca01c40 100644
--- a/ipmi/locale/ja/fusiondirectory.po
+++ b/ipmi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ko/fusiondirectory.po b/ipmi/locale/ko/fusiondirectory.po
index ce8b7d2265..ce2a647e5a 100644
--- a/ipmi/locale/ko/fusiondirectory.po
+++ b/ipmi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po
index 2e7421ab4b..ab67ef0aad 100644
--- a/ipmi/locale/lv/fusiondirectory.po
+++ b/ipmi/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po
index c26efefea0..157fde5bd7 100644
--- a/ipmi/locale/nb/fusiondirectory.po
+++ b/ipmi/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po
index 88d792be28..6e5de62a34 100644
--- a/ipmi/locale/nl/fusiondirectory.po
+++ b/ipmi/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po
index 43ab3a8df0..2b7f2b6a20 100644
--- a/ipmi/locale/pl/fusiondirectory.po
+++ b/ipmi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po
index 6829a77d23..91da8a4314 100644
--- a/ipmi/locale/pt/fusiondirectory.po
+++ b/ipmi/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po
index 77f0f0ec27..71b148caab 100644
--- a/ipmi/locale/pt_BR/fusiondirectory.po
+++ b/ipmi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/ipmi/class_ipmiClient.inc:29
 msgid "IPMI client"
diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po
index 51c9485b5d..2fedd3dca4 100644
--- a/ipmi/locale/ru/fusiondirectory.po
+++ b/ipmi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po
index 76866da468..6599c1692e 100644
--- a/ipmi/locale/ru@petr1708/fusiondirectory.po
+++ b/ipmi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po
index a3adc556d5..b349c95dea 100644
--- a/ipmi/locale/sv/fusiondirectory.po
+++ b/ipmi/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/tr_TR/fusiondirectory.po b/ipmi/locale/tr_TR/fusiondirectory.po
index 1adc99ef1b..19e124c998 100644
--- a/ipmi/locale/tr_TR/fusiondirectory.po
+++ b/ipmi/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po
index 309cee7a0b..a2fe67f80d 100644
--- a/ipmi/locale/ug/fusiondirectory.po
+++ b/ipmi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po
index 85fe041cce..13cf2bb5fb 100644
--- a/ipmi/locale/vi_VN/fusiondirectory.po
+++ b/ipmi/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po
index e34d0c95ed..7d6adc9056 100644
--- a/ipmi/locale/zh/fusiondirectory.po
+++ b/ipmi/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ipmi/locale/zh_TW/fusiondirectory.po b/ipmi/locale/zh_TW/fusiondirectory.po
index 8fb0e858bc..357320e5cf 100644
--- a/ipmi/locale/zh_TW/fusiondirectory.po
+++ b/ipmi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:12+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/af_ZA/fusiondirectory.po b/ldapdump/locale/af_ZA/fusiondirectory.po
index 8bf9f83678..db5d4b10d6 100644
--- a/ldapdump/locale/af_ZA/fusiondirectory.po
+++ b/ldapdump/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po
index 10e5d24868..2a4823d586 100644
--- a/ldapdump/locale/ar/fusiondirectory.po
+++ b/ldapdump/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po
index 67173cbe22..426ad69b41 100644
--- a/ldapdump/locale/ca/fusiondirectory.po
+++ b/ldapdump/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po
index f7a352690d..4e36dcea55 100644
--- a/ldapdump/locale/cs_CZ/fusiondirectory.po
+++ b/ldapdump/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po
index b0acc6c9df..fef874f435 100644
--- a/ldapdump/locale/de/fusiondirectory.po
+++ b/ldapdump/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po
index 101958b864..e96e8c5f7e 100644
--- a/ldapdump/locale/el_GR/fusiondirectory.po
+++ b/ldapdump/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po
index dc3be3e1f1..19ad5a1de5 100644
--- a/ldapdump/locale/es/fusiondirectory.po
+++ b/ldapdump/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po
index 6890c93b9d..c0fa33a1db 100644
--- a/ldapdump/locale/es_CO/fusiondirectory.po
+++ b/ldapdump/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po
index f9f8b5032c..6f3d20c7d4 100644
--- a/ldapdump/locale/es_VE/fusiondirectory.po
+++ b/ldapdump/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po
index 2490885315..85b769a104 100644
--- a/ldapdump/locale/fa_IR/fusiondirectory.po
+++ b/ldapdump/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po
index 214ca4e6e2..e8f36425cd 100644
--- a/ldapdump/locale/fi_FI/fusiondirectory.po
+++ b/ldapdump/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po
index c34abfbf28..d22a318d93 100644
--- a/ldapdump/locale/fr/fusiondirectory.po
+++ b/ldapdump/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po
index 5f771009ca..a16d862cb1 100644
--- a/ldapdump/locale/hu_HU/fusiondirectory.po
+++ b/ldapdump/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po
index 7db8824fe6..b61d905394 100644
--- a/ldapdump/locale/id/fusiondirectory.po
+++ b/ldapdump/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po
index 4464b5a7c9..80c0dc51c8 100644
--- a/ldapdump/locale/it_IT/fusiondirectory.po
+++ b/ldapdump/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/ja/fusiondirectory.po b/ldapdump/locale/ja/fusiondirectory.po
index 912965174d..e5505d6b3a 100644
--- a/ldapdump/locale/ja/fusiondirectory.po
+++ b/ldapdump/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ko/fusiondirectory.po b/ldapdump/locale/ko/fusiondirectory.po
index 68ff30f9af..a4acc6c83e 100644
--- a/ldapdump/locale/ko/fusiondirectory.po
+++ b/ldapdump/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po
index 29357b51df..752192fd22 100644
--- a/ldapdump/locale/lv/fusiondirectory.po
+++ b/ldapdump/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po
index 3807af8add..e6d08c42a5 100644
--- a/ldapdump/locale/nb/fusiondirectory.po
+++ b/ldapdump/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po
index 07ccdf917e..b03d84b4c1 100644
--- a/ldapdump/locale/nl/fusiondirectory.po
+++ b/ldapdump/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po
index 5bd8e50fb2..94cbb520b8 100644
--- a/ldapdump/locale/pl/fusiondirectory.po
+++ b/ldapdump/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po
index 34824c64a9..28c47bcdf5 100644
--- a/ldapdump/locale/pt/fusiondirectory.po
+++ b/ldapdump/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po
index 8e60ede72a..c78ea71faa 100644
--- a/ldapdump/locale/pt_BR/fusiondirectory.po
+++ b/ldapdump/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapdump/class_ldapDump.inc:26
 msgid "LDAP"
diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po
index 0e8e6a381e..0bd6510baa 100644
--- a/ldapdump/locale/ru/fusiondirectory.po
+++ b/ldapdump/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po
index 3721ed32f5..c3df237da3 100644
--- a/ldapdump/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po
index c4616895b1..52203ec388 100644
--- a/ldapdump/locale/sv/fusiondirectory.po
+++ b/ldapdump/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapdump/locale/tr_TR/fusiondirectory.po b/ldapdump/locale/tr_TR/fusiondirectory.po
index eab551f227..a35ad3572b 100644
--- a/ldapdump/locale/tr_TR/fusiondirectory.po
+++ b/ldapdump/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po
index 4f92d32fa1..c25ba46484 100644
--- a/ldapdump/locale/ug/fusiondirectory.po
+++ b/ldapdump/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po
index 7e2fa61a8d..d968e236e7 100644
--- a/ldapdump/locale/vi_VN/fusiondirectory.po
+++ b/ldapdump/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po
index 50263f2e45..7bf6b2146f 100644
--- a/ldapdump/locale/zh/fusiondirectory.po
+++ b/ldapdump/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapdump/locale/zh_TW/fusiondirectory.po b/ldapdump/locale/zh_TW/fusiondirectory.po
index 4460411e09..4026cff4f9 100644
--- a/ldapdump/locale/zh_TW/fusiondirectory.po
+++ b/ldapdump/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:13+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/af_ZA/fusiondirectory.po b/ldapmanager/locale/af_ZA/fusiondirectory.po
index 6f2296b893..a2bce06f52 100644
--- a/ldapmanager/locale/af_ZA/fusiondirectory.po
+++ b/ldapmanager/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po
index ebe0584715..cfb68ab57b 100644
--- a/ldapmanager/locale/ar/fusiondirectory.po
+++ b/ldapmanager/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po
index 9d9e0320c8..f448f9aa02 100644
--- a/ldapmanager/locale/ca/fusiondirectory.po
+++ b/ldapmanager/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po
index e34be13a66..c8cec401f0 100644
--- a/ldapmanager/locale/cs_CZ/fusiondirectory.po
+++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po
index 7c2cca7dae..537ad1a337 100644
--- a/ldapmanager/locale/de/fusiondirectory.po
+++ b/ldapmanager/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po
index 09a732f5ad..91c2a3d47d 100644
--- a/ldapmanager/locale/el_GR/fusiondirectory.po
+++ b/ldapmanager/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po
index 1768e1a131..32f99a897f 100644
--- a/ldapmanager/locale/es/fusiondirectory.po
+++ b/ldapmanager/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po
index ab73f9cb20..7dea715f51 100644
--- a/ldapmanager/locale/es_CO/fusiondirectory.po
+++ b/ldapmanager/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po
index 4f6cc0671f..774c2ababd 100644
--- a/ldapmanager/locale/es_VE/fusiondirectory.po
+++ b/ldapmanager/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po
index 367455ae24..1be742a3c4 100644
--- a/ldapmanager/locale/fa_IR/fusiondirectory.po
+++ b/ldapmanager/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po
index 6a8363c412..3c745adfbb 100644
--- a/ldapmanager/locale/fi_FI/fusiondirectory.po
+++ b/ldapmanager/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po
index 3523382e62..bfd2f9a881 100644
--- a/ldapmanager/locale/fr/fusiondirectory.po
+++ b/ldapmanager/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po
index c0b39f3d80..4470e04de7 100644
--- a/ldapmanager/locale/hu_HU/fusiondirectory.po
+++ b/ldapmanager/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po
index ae2cadd49d..2109deaf44 100644
--- a/ldapmanager/locale/id/fusiondirectory.po
+++ b/ldapmanager/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po
index 348ee74ff9..fe9c8bab54 100644
--- a/ldapmanager/locale/it_IT/fusiondirectory.po
+++ b/ldapmanager/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/ja/fusiondirectory.po b/ldapmanager/locale/ja/fusiondirectory.po
index 034eda6eac..a3ed209a5b 100644
--- a/ldapmanager/locale/ja/fusiondirectory.po
+++ b/ldapmanager/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/ko/fusiondirectory.po b/ldapmanager/locale/ko/fusiondirectory.po
index c58015df33..7d634a45c2 100644
--- a/ldapmanager/locale/ko/fusiondirectory.po
+++ b/ldapmanager/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po
index 5aa3d5fbd2..78378efee5 100644
--- a/ldapmanager/locale/lv/fusiondirectory.po
+++ b/ldapmanager/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po
index 663e9370cf..b17fef62c5 100644
--- a/ldapmanager/locale/nb/fusiondirectory.po
+++ b/ldapmanager/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po
index 9f06918e28..51a6cb7b8a 100644
--- a/ldapmanager/locale/nl/fusiondirectory.po
+++ b/ldapmanager/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po
index d23a9401a6..f33461ae58 100644
--- a/ldapmanager/locale/pl/fusiondirectory.po
+++ b/ldapmanager/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po
index 2e9bdb255f..19b96bfc91 100644
--- a/ldapmanager/locale/pt/fusiondirectory.po
+++ b/ldapmanager/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po
index b2d4686bcb..d8e5b706be 100644
--- a/ldapmanager/locale/pt_BR/fusiondirectory.po
+++ b/ldapmanager/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: addons/ldapmanager/tabs_ldif.inc:31
 msgid "LDAP import/export"
diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po
index 587f73e65d..3646f41622 100644
--- a/ldapmanager/locale/ru/fusiondirectory.po
+++ b/ldapmanager/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
index 5eee44effc..2591e7e362 100644
--- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po
+++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po
index 14bfda914e..111cd84840 100644
--- a/ldapmanager/locale/sv/fusiondirectory.po
+++ b/ldapmanager/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ldapmanager/locale/tr_TR/fusiondirectory.po b/ldapmanager/locale/tr_TR/fusiondirectory.po
index 8cbdce6a0c..6f9b1bc884 100644
--- a/ldapmanager/locale/tr_TR/fusiondirectory.po
+++ b/ldapmanager/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -137,7 +137,7 @@ msgstr ""
 
 #: addons/ldapmanager/class_ldapmanager.inc:195
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: addons/ldapmanager/class_ldapmanager.inc:195
 msgid ""
diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po
index 7c8f328404..ad59c202d1 100644
--- a/ldapmanager/locale/ug/fusiondirectory.po
+++ b/ldapmanager/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po
index c6638e2991..a7ba19a3e8 100644
--- a/ldapmanager/locale/vi_VN/fusiondirectory.po
+++ b/ldapmanager/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po
index b1bb98574f..9a1c0190f7 100644
--- a/ldapmanager/locale/zh/fusiondirectory.po
+++ b/ldapmanager/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ldapmanager/locale/zh_TW/fusiondirectory.po b/ldapmanager/locale/zh_TW/fusiondirectory.po
index 734a1801d3..aa25b4ab2d 100644
--- a/ldapmanager/locale/zh_TW/fusiondirectory.po
+++ b/ldapmanager/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/af_ZA/fusiondirectory.po b/mail/locale/af_ZA/fusiondirectory.po
index 3a8961f6b2..1769115095 100644
--- a/mail/locale/af_ZA/fusiondirectory.po
+++ b/mail/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po
index 8ddb75d49f..96578962cb 100644
--- a/mail/locale/ar/fusiondirectory.po
+++ b/mail/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po
index 58a2ccb837..c81fcdbb65 100644
--- a/mail/locale/ca/fusiondirectory.po
+++ b/mail/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po
index 53e9c041cf..f35aabe739 100644
--- a/mail/locale/cs_CZ/fusiondirectory.po
+++ b/mail/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po
index 9dba10057c..3d145853f3 100644
--- a/mail/locale/de/fusiondirectory.po
+++ b/mail/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po
index 144f22af11..a3f58aaee8 100644
--- a/mail/locale/el_GR/fusiondirectory.po
+++ b/mail/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po
index 47ea92eac3..f306daaafa 100644
--- a/mail/locale/es/fusiondirectory.po
+++ b/mail/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po
index 85a1b00466..2f7c1fef31 100644
--- a/mail/locale/es_CO/fusiondirectory.po
+++ b/mail/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po
index a90580503e..c7a1dc3c56 100644
--- a/mail/locale/es_VE/fusiondirectory.po
+++ b/mail/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po
index a6777b4c23..a6a7f7949d 100644
--- a/mail/locale/fa_IR/fusiondirectory.po
+++ b/mail/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po
index e3f7339e61..406f5bf360 100644
--- a/mail/locale/fi_FI/fusiondirectory.po
+++ b/mail/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po
index 34588d9340..8e55b4ea11 100644
--- a/mail/locale/fr/fusiondirectory.po
+++ b/mail/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po
index ad6d2a99c1..fa3ceab25e 100644
--- a/mail/locale/hu_HU/fusiondirectory.po
+++ b/mail/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po
index c9919a602a..fef184bb3e 100644
--- a/mail/locale/id/fusiondirectory.po
+++ b/mail/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po
index 00ecb1418b..638b26f62f 100644
--- a/mail/locale/it_IT/fusiondirectory.po
+++ b/mail/locale/it_IT/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/ja/fusiondirectory.po b/mail/locale/ja/fusiondirectory.po
index 6fbaf48221..f9dde89a86 100644
--- a/mail/locale/ja/fusiondirectory.po
+++ b/mail/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ko/fusiondirectory.po b/mail/locale/ko/fusiondirectory.po
index f4a88ecde7..aa18ac8125 100644
--- a/mail/locale/ko/fusiondirectory.po
+++ b/mail/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po
index d765e75560..151aa06cd1 100644
--- a/mail/locale/lv/fusiondirectory.po
+++ b/mail/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po
index b45ea66c13..63497aade6 100644
--- a/mail/locale/nb/fusiondirectory.po
+++ b/mail/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po
index 0f9ab00d09..2bf6e7b807 100644
--- a/mail/locale/nl/fusiondirectory.po
+++ b/mail/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po
index 75e6cc2c17..6c7f7ed8ca 100644
--- a/mail/locale/pl/fusiondirectory.po
+++ b/mail/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po
index 254beb0331..0f1f7988ed 100644
--- a/mail/locale/pt/fusiondirectory.po
+++ b/mail/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po
index a3e2ea045d..e2326da440 100644
--- a/mail/locale/pt_BR/fusiondirectory.po
+++ b/mail/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/mail/class_mailGroup.inc:46
 #: config/mail/class_mailPluginConfig.inc:28
diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po
index 40111fecf7..c93b5ce867 100644
--- a/mail/locale/ru/fusiondirectory.po
+++ b/mail/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po
index 8799a9bf0b..95dd76af9e 100644
--- a/mail/locale/ru@petr1708/fusiondirectory.po
+++ b/mail/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po
index 83ab06d4c5..994e87c158 100644
--- a/mail/locale/sv/fusiondirectory.po
+++ b/mail/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mail/locale/tr_TR/fusiondirectory.po b/mail/locale/tr_TR/fusiondirectory.po
index e67161a44b..0dfa1f59fc 100644
--- a/mail/locale/tr_TR/fusiondirectory.po
+++ b/mail/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po
index 23980a7322..d1edde369a 100644
--- a/mail/locale/ug/fusiondirectory.po
+++ b/mail/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po
index 5eee5bad83..d60471ca8c 100644
--- a/mail/locale/vi_VN/fusiondirectory.po
+++ b/mail/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po
index db03172433..ca367e668b 100644
--- a/mail/locale/zh/fusiondirectory.po
+++ b/mail/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mail/locale/zh_TW/fusiondirectory.po b/mail/locale/zh_TW/fusiondirectory.po
index c6a0ac89e5..74b94fb478 100644
--- a/mail/locale/zh_TW/fusiondirectory.po
+++ b/mail/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:14+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/af_ZA/fusiondirectory.po b/mixedgroups/locale/af_ZA/fusiondirectory.po
index 8eb7fd5d83..fb7422ccba 100644
--- a/mixedgroups/locale/af_ZA/fusiondirectory.po
+++ b/mixedgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po
index 0b4dddb026..f7dbe17b08 100644
--- a/mixedgroups/locale/ar/fusiondirectory.po
+++ b/mixedgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po
index 1591f82123..bd786f99bc 100644
--- a/mixedgroups/locale/ca/fusiondirectory.po
+++ b/mixedgroups/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po
index b199cc2ab1..548a8f4897 100644
--- a/mixedgroups/locale/cs_CZ/fusiondirectory.po
+++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po
index 92125de45d..ea9cba55cd 100644
--- a/mixedgroups/locale/de/fusiondirectory.po
+++ b/mixedgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po
index d2cb49cb81..ccaa824d0e 100644
--- a/mixedgroups/locale/el_GR/fusiondirectory.po
+++ b/mixedgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po
index 8cabed6336..92f08816fd 100644
--- a/mixedgroups/locale/es/fusiondirectory.po
+++ b/mixedgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po
index dcce387854..65d7039b2e 100644
--- a/mixedgroups/locale/es_CO/fusiondirectory.po
+++ b/mixedgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po
index 62353e38e6..65b6738228 100644
--- a/mixedgroups/locale/es_VE/fusiondirectory.po
+++ b/mixedgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po
index 6709aa2604..87661f0b7b 100644
--- a/mixedgroups/locale/fa_IR/fusiondirectory.po
+++ b/mixedgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po
index 02817a94ec..1fe842d3d6 100644
--- a/mixedgroups/locale/fi_FI/fusiondirectory.po
+++ b/mixedgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po
index 47be8caaa4..156d222068 100644
--- a/mixedgroups/locale/fr/fusiondirectory.po
+++ b/mixedgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po
index 41488cde71..98427bbf3f 100644
--- a/mixedgroups/locale/hu_HU/fusiondirectory.po
+++ b/mixedgroups/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po
index aa99e21fb5..3fb488006d 100644
--- a/mixedgroups/locale/id/fusiondirectory.po
+++ b/mixedgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po
index 430c2ed29b..3e8a2fba00 100644
--- a/mixedgroups/locale/it_IT/fusiondirectory.po
+++ b/mixedgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/ja/fusiondirectory.po b/mixedgroups/locale/ja/fusiondirectory.po
index 563462956f..f6cfa50e63 100644
--- a/mixedgroups/locale/ja/fusiondirectory.po
+++ b/mixedgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ko/fusiondirectory.po b/mixedgroups/locale/ko/fusiondirectory.po
index a1adc206fd..6ec8d66473 100644
--- a/mixedgroups/locale/ko/fusiondirectory.po
+++ b/mixedgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po
index 38c5ac061a..6d91c6588a 100644
--- a/mixedgroups/locale/lv/fusiondirectory.po
+++ b/mixedgroups/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po
index 1166541907..39e6a19bf5 100644
--- a/mixedgroups/locale/nb/fusiondirectory.po
+++ b/mixedgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po
index 3baf27127e..352986a39e 100644
--- a/mixedgroups/locale/nl/fusiondirectory.po
+++ b/mixedgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po
index 070f5704b2..bddbb2a070 100644
--- a/mixedgroups/locale/pl/fusiondirectory.po
+++ b/mixedgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po
index 3777ab89a7..068a7d2012 100644
--- a/mixedgroups/locale/pt/fusiondirectory.po
+++ b/mixedgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po
index ff19a5de23..c30b222179 100644
--- a/mixedgroups/locale/pt_BR/fusiondirectory.po
+++ b/mixedgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29
 msgid "Posix group"
diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po
index aa7df1c65c..020b7598d5 100644
--- a/mixedgroups/locale/ru/fusiondirectory.po
+++ b/mixedgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
index 3d98602417..a64e0eb391 100644
--- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po
index fd64632e89..fe64ee1257 100644
--- a/mixedgroups/locale/sv/fusiondirectory.po
+++ b/mixedgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/mixedgroups/locale/tr_TR/fusiondirectory.po b/mixedgroups/locale/tr_TR/fusiondirectory.po
index 6eb471ec1c..6091096964 100644
--- a/mixedgroups/locale/tr_TR/fusiondirectory.po
+++ b/mixedgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po
index 5623fbeceb..a647c39796 100644
--- a/mixedgroups/locale/ug/fusiondirectory.po
+++ b/mixedgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po
index 732c70d0a9..51a3518f69 100644
--- a/mixedgroups/locale/vi_VN/fusiondirectory.po
+++ b/mixedgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po
index f7793d5171..8466282c56 100644
--- a/mixedgroups/locale/zh/fusiondirectory.po
+++ b/mixedgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/mixedgroups/locale/zh_TW/fusiondirectory.po b/mixedgroups/locale/zh_TW/fusiondirectory.po
index 643de5c271..a2d91a48e2 100644
--- a/mixedgroups/locale/zh_TW/fusiondirectory.po
+++ b/mixedgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/af_ZA/fusiondirectory.po b/nagios/locale/af_ZA/fusiondirectory.po
index dbd81dae1a..ab5d3cd57b 100644
--- a/nagios/locale/af_ZA/fusiondirectory.po
+++ b/nagios/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po
index 93fdf5019d..a441046790 100644
--- a/nagios/locale/ar/fusiondirectory.po
+++ b/nagios/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po
index c7734b726d..d4f5ea221c 100644
--- a/nagios/locale/ca/fusiondirectory.po
+++ b/nagios/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po
index b76523eacf..0eba9c3549 100644
--- a/nagios/locale/cs_CZ/fusiondirectory.po
+++ b/nagios/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po
index 4503d40f89..42c0bba661 100644
--- a/nagios/locale/de/fusiondirectory.po
+++ b/nagios/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po
index da9c042fac..d7674ba2a5 100644
--- a/nagios/locale/el_GR/fusiondirectory.po
+++ b/nagios/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po
index c1c42d6918..a06fdcef24 100644
--- a/nagios/locale/es/fusiondirectory.po
+++ b/nagios/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po
index a39717ffc0..9a45523268 100644
--- a/nagios/locale/es_CO/fusiondirectory.po
+++ b/nagios/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po
index c7e62676c6..e9d117cb82 100644
--- a/nagios/locale/es_VE/fusiondirectory.po
+++ b/nagios/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po
index 62ca987a14..7c385b75fa 100644
--- a/nagios/locale/fa_IR/fusiondirectory.po
+++ b/nagios/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po
index a6e6be2066..505347bd43 100644
--- a/nagios/locale/fi_FI/fusiondirectory.po
+++ b/nagios/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po
index 2fb2a2d9e3..b5bf890da0 100644
--- a/nagios/locale/fr/fusiondirectory.po
+++ b/nagios/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po
index c34ab26ae1..92bba6db96 100644
--- a/nagios/locale/hu_HU/fusiondirectory.po
+++ b/nagios/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po
index 96a6490640..bcd9783f61 100644
--- a/nagios/locale/id/fusiondirectory.po
+++ b/nagios/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po
index 4ba9347c05..a3bf865a09 100644
--- a/nagios/locale/it_IT/fusiondirectory.po
+++ b/nagios/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/ja/fusiondirectory.po b/nagios/locale/ja/fusiondirectory.po
index d61a6ad72b..3ea1894d8b 100644
--- a/nagios/locale/ja/fusiondirectory.po
+++ b/nagios/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ko/fusiondirectory.po b/nagios/locale/ko/fusiondirectory.po
index 451ac7f156..e62614fd2d 100644
--- a/nagios/locale/ko/fusiondirectory.po
+++ b/nagios/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po
index e3b13dbc8e..722c34ca69 100644
--- a/nagios/locale/lv/fusiondirectory.po
+++ b/nagios/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po
index a069ffc13a..290d17bf96 100644
--- a/nagios/locale/nb/fusiondirectory.po
+++ b/nagios/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po
index c5133df758..e34927cd41 100644
--- a/nagios/locale/nl/fusiondirectory.po
+++ b/nagios/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po
index b11d92e82f..381db7ae72 100644
--- a/nagios/locale/pl/fusiondirectory.po
+++ b/nagios/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po
index 27bbd8888f..064b0f16b9 100644
--- a/nagios/locale/pt/fusiondirectory.po
+++ b/nagios/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po
index 6ccff29e51..981fa25c31 100644
--- a/nagios/locale/pt_BR/fusiondirectory.po
+++ b/nagios/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/nagios/class_nagiosConfig.inc:28
 msgid "Nagios configuration"
diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po
index 497acb19c0..48fc71bbfe 100644
--- a/nagios/locale/ru/fusiondirectory.po
+++ b/nagios/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po
index bdbff0b607..4965396857 100644
--- a/nagios/locale/ru@petr1708/fusiondirectory.po
+++ b/nagios/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po
index 8c0a41c693..7e05e68810 100644
--- a/nagios/locale/sv/fusiondirectory.po
+++ b/nagios/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/nagios/locale/tr_TR/fusiondirectory.po b/nagios/locale/tr_TR/fusiondirectory.po
index 4d7f8e2b6d..482b18789d 100644
--- a/nagios/locale/tr_TR/fusiondirectory.po
+++ b/nagios/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po
index 929b11659d..0e4f3f26db 100644
--- a/nagios/locale/ug/fusiondirectory.po
+++ b/nagios/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po
index 835c15f914..cf5fc956d3 100644
--- a/nagios/locale/vi_VN/fusiondirectory.po
+++ b/nagios/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po
index ee86af3b42..8568bf40c2 100644
--- a/nagios/locale/zh/fusiondirectory.po
+++ b/nagios/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/nagios/locale/zh_TW/fusiondirectory.po b/nagios/locale/zh_TW/fusiondirectory.po
index 6f8049e302..37ed05383d 100644
--- a/nagios/locale/zh_TW/fusiondirectory.po
+++ b/nagios/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/af_ZA/fusiondirectory.po b/netgroups/locale/af_ZA/fusiondirectory.po
index 950a73e685..3eac7a7e13 100644
--- a/netgroups/locale/af_ZA/fusiondirectory.po
+++ b/netgroups/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po
index 69fefb382f..89b5bce97d 100644
--- a/netgroups/locale/ar/fusiondirectory.po
+++ b/netgroups/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po
index b4c19d756f..a318376f25 100644
--- a/netgroups/locale/ca/fusiondirectory.po
+++ b/netgroups/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po
index 216f0e3fc0..3bd85cb81c 100644
--- a/netgroups/locale/cs_CZ/fusiondirectory.po
+++ b/netgroups/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po
index d802d60e05..8c12249a0a 100644
--- a/netgroups/locale/de/fusiondirectory.po
+++ b/netgroups/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po
index 33ed9ee4c2..05022eb586 100644
--- a/netgroups/locale/el_GR/fusiondirectory.po
+++ b/netgroups/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po
index 0d79ec2e9a..ec67792d3f 100644
--- a/netgroups/locale/es/fusiondirectory.po
+++ b/netgroups/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po
index 12f14e5eaa..e87c97c4c5 100644
--- a/netgroups/locale/es_CO/fusiondirectory.po
+++ b/netgroups/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po
index d9acdde50c..5580c2665c 100644
--- a/netgroups/locale/es_VE/fusiondirectory.po
+++ b/netgroups/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po
index 92e5e8b49e..25cc7bf1ee 100644
--- a/netgroups/locale/fa_IR/fusiondirectory.po
+++ b/netgroups/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po
index b00420ee3a..c6d75c837f 100644
--- a/netgroups/locale/fi_FI/fusiondirectory.po
+++ b/netgroups/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po
index aea6d5094f..bf9f35c784 100644
--- a/netgroups/locale/fr/fusiondirectory.po
+++ b/netgroups/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po
index aea09379ab..7185a5aa0e 100644
--- a/netgroups/locale/hu_HU/fusiondirectory.po
+++ b/netgroups/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po
index 64956333c8..9a5b056b66 100644
--- a/netgroups/locale/id/fusiondirectory.po
+++ b/netgroups/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po
index 7b57a24c8b..1f5b517bb3 100644
--- a/netgroups/locale/it_IT/fusiondirectory.po
+++ b/netgroups/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/ja/fusiondirectory.po b/netgroups/locale/ja/fusiondirectory.po
index 491455af00..dc5ea97a3c 100644
--- a/netgroups/locale/ja/fusiondirectory.po
+++ b/netgroups/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ko/fusiondirectory.po b/netgroups/locale/ko/fusiondirectory.po
index 8a83356f5f..c849e7e15e 100644
--- a/netgroups/locale/ko/fusiondirectory.po
+++ b/netgroups/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po
index b3f96835b1..97f1171a0a 100644
--- a/netgroups/locale/lv/fusiondirectory.po
+++ b/netgroups/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po
index 444b198af7..1a6a1dc78a 100644
--- a/netgroups/locale/nb/fusiondirectory.po
+++ b/netgroups/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po
index b853148ae6..945f449e62 100644
--- a/netgroups/locale/nl/fusiondirectory.po
+++ b/netgroups/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po
index 59dc1a05f9..78bade461b 100644
--- a/netgroups/locale/pl/fusiondirectory.po
+++ b/netgroups/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po
index 2aa55da130..3f6eff8879 100644
--- a/netgroups/locale/pt/fusiondirectory.po
+++ b/netgroups/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po
index 32eb3714d5..c70e2de5b2 100644
--- a/netgroups/locale/pt_BR/fusiondirectory.po
+++ b/netgroups/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/netgroups/class_netgroupManagement.inc:34
 msgid "NIS Netgroups"
diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po
index c716f742ac..87c1dcb398 100644
--- a/netgroups/locale/ru/fusiondirectory.po
+++ b/netgroups/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po
index bd8131f21a..3d204c6904 100644
--- a/netgroups/locale/ru@petr1708/fusiondirectory.po
+++ b/netgroups/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po
index 3e5a67d613..d57a71a84f 100644
--- a/netgroups/locale/sv/fusiondirectory.po
+++ b/netgroups/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/netgroups/locale/tr_TR/fusiondirectory.po b/netgroups/locale/tr_TR/fusiondirectory.po
index 48115ff622..e0dcacb10b 100644
--- a/netgroups/locale/tr_TR/fusiondirectory.po
+++ b/netgroups/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po
index d3dbabafae..9493f20614 100644
--- a/netgroups/locale/ug/fusiondirectory.po
+++ b/netgroups/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po
index faad879c54..f6cc36294d 100644
--- a/netgroups/locale/vi_VN/fusiondirectory.po
+++ b/netgroups/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po
index 600cc2f42c..ce92bec914 100644
--- a/netgroups/locale/zh/fusiondirectory.po
+++ b/netgroups/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/netgroups/locale/zh_TW/fusiondirectory.po b/netgroups/locale/zh_TW/fusiondirectory.po
index 9d7e222d5c..11890e13e0 100644
--- a/netgroups/locale/zh_TW/fusiondirectory.po
+++ b/netgroups/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:15+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/af_ZA/fusiondirectory.po b/newsletter/locale/af_ZA/fusiondirectory.po
index 9ebefe7181..f0bd34d27b 100644
--- a/newsletter/locale/af_ZA/fusiondirectory.po
+++ b/newsletter/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po
index 03280b1a33..8abaf886dc 100644
--- a/newsletter/locale/ar/fusiondirectory.po
+++ b/newsletter/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po
index 2a2bb3021d..9a794f41d4 100644
--- a/newsletter/locale/ca/fusiondirectory.po
+++ b/newsletter/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po
index 1ea935258d..1cf8c5c878 100644
--- a/newsletter/locale/cs_CZ/fusiondirectory.po
+++ b/newsletter/locale/cs_CZ/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po
index a02531f961..5f28d2077d 100644
--- a/newsletter/locale/de/fusiondirectory.po
+++ b/newsletter/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po
index 48671f8bf5..21216c18ee 100644
--- a/newsletter/locale/el_GR/fusiondirectory.po
+++ b/newsletter/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po
index d53da14941..66ca56098d 100644
--- a/newsletter/locale/es/fusiondirectory.po
+++ b/newsletter/locale/es/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po
index 9a644a0169..e862d5ebdd 100644
--- a/newsletter/locale/es_CO/fusiondirectory.po
+++ b/newsletter/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po
index 2d6c21eac6..eea95b771d 100644
--- a/newsletter/locale/es_VE/fusiondirectory.po
+++ b/newsletter/locale/es_VE/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po
index 0bf2a52ba9..1d281a31d7 100644
--- a/newsletter/locale/fa_IR/fusiondirectory.po
+++ b/newsletter/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po
index 1176b23272..8befd2118c 100644
--- a/newsletter/locale/fi_FI/fusiondirectory.po
+++ b/newsletter/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po
index bf72c2bb62..df44f04e11 100644
--- a/newsletter/locale/fr/fusiondirectory.po
+++ b/newsletter/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po
index 3e5ecabda4..c6212504d7 100644
--- a/newsletter/locale/hu_HU/fusiondirectory.po
+++ b/newsletter/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po
index d160f9b9b6..874b544b65 100644
--- a/newsletter/locale/id/fusiondirectory.po
+++ b/newsletter/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po
index e469d5102b..af783064f3 100644
--- a/newsletter/locale/it_IT/fusiondirectory.po
+++ b/newsletter/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/ja/fusiondirectory.po b/newsletter/locale/ja/fusiondirectory.po
index a61218064b..990635278c 100644
--- a/newsletter/locale/ja/fusiondirectory.po
+++ b/newsletter/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ko/fusiondirectory.po b/newsletter/locale/ko/fusiondirectory.po
index 85ba440b9b..09ef3984dd 100644
--- a/newsletter/locale/ko/fusiondirectory.po
+++ b/newsletter/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po
index 82da47db17..343c847b62 100644
--- a/newsletter/locale/lv/fusiondirectory.po
+++ b/newsletter/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po
index ede0e27c4b..326dd9cc3f 100644
--- a/newsletter/locale/nb/fusiondirectory.po
+++ b/newsletter/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po
index 3bf4295781..fc87a48d42 100644
--- a/newsletter/locale/nl/fusiondirectory.po
+++ b/newsletter/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po
index 0879b1a98a..1cd65b9aba 100644
--- a/newsletter/locale/pl/fusiondirectory.po
+++ b/newsletter/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po
index a6e212e877..de1faa1943 100644
--- a/newsletter/locale/pt/fusiondirectory.po
+++ b/newsletter/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po
index 59eb3082af..f69fa92026 100644
--- a/newsletter/locale/pt_BR/fusiondirectory.po
+++ b/newsletter/locale/pt_BR/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/newsletter/class_newsletterConfig.inc:28
 msgid "Newsletter configuration"
diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po
index 79d1a31754..349448a73b 100644
--- a/newsletter/locale/ru/fusiondirectory.po
+++ b/newsletter/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po
index 8725b9caa3..b7b7dd9644 100644
--- a/newsletter/locale/ru@petr1708/fusiondirectory.po
+++ b/newsletter/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po
index 7806056326..e893f49870 100644
--- a/newsletter/locale/sv/fusiondirectory.po
+++ b/newsletter/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/tr_TR/fusiondirectory.po b/newsletter/locale/tr_TR/fusiondirectory.po
index 1c32479877..a8845c73d0 100644
--- a/newsletter/locale/tr_TR/fusiondirectory.po
+++ b/newsletter/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po
index 2b2392aaa5..69d0969a51 100644
--- a/newsletter/locale/ug/fusiondirectory.po
+++ b/newsletter/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po
index 7c79fe3213..efd8071983 100644
--- a/newsletter/locale/vi_VN/fusiondirectory.po
+++ b/newsletter/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po
index 679b7b37e0..2c3a458680 100644
--- a/newsletter/locale/zh/fusiondirectory.po
+++ b/newsletter/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/newsletter/locale/zh_TW/fusiondirectory.po b/newsletter/locale/zh_TW/fusiondirectory.po
index cd2b550bc4..4a703ac291 100644
--- a/newsletter/locale/zh_TW/fusiondirectory.po
+++ b/newsletter/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/af_ZA/fusiondirectory.po b/opsi/locale/af_ZA/fusiondirectory.po
index 5bc2c3181c..2e9affc3ee 100644
--- a/opsi/locale/af_ZA/fusiondirectory.po
+++ b/opsi/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po
index 43f1c98ab6..4672e83393 100644
--- a/opsi/locale/ar/fusiondirectory.po
+++ b/opsi/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po
index 70befe0b94..73052a17d1 100644
--- a/opsi/locale/ca/fusiondirectory.po
+++ b/opsi/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po
index 0484045e03..9a8d15159c 100644
--- a/opsi/locale/cs_CZ/fusiondirectory.po
+++ b/opsi/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po
index ff01a77dbb..651c248b34 100644
--- a/opsi/locale/de/fusiondirectory.po
+++ b/opsi/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po
index 9a643cfb65..876e964345 100644
--- a/opsi/locale/el_GR/fusiondirectory.po
+++ b/opsi/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po
index 90fe8fc99e..5086b977c2 100644
--- a/opsi/locale/es/fusiondirectory.po
+++ b/opsi/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po
index 43ea0c9beb..aa1331c13a 100644
--- a/opsi/locale/es_CO/fusiondirectory.po
+++ b/opsi/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po
index 7fb099fae4..21b4a1e47f 100644
--- a/opsi/locale/es_VE/fusiondirectory.po
+++ b/opsi/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po
index 0d4cde7909..b8dd5888ae 100644
--- a/opsi/locale/fa_IR/fusiondirectory.po
+++ b/opsi/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po
index 2d79498fcf..aa37f9627f 100644
--- a/opsi/locale/fi_FI/fusiondirectory.po
+++ b/opsi/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po
index 80bc2f6cee..5fdaa6aa51 100644
--- a/opsi/locale/fr/fusiondirectory.po
+++ b/opsi/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po
index 59d5dbb9ef..a9e2e920dc 100644
--- a/opsi/locale/hu_HU/fusiondirectory.po
+++ b/opsi/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po
index 4ab286396d..110c7b56da 100644
--- a/opsi/locale/id/fusiondirectory.po
+++ b/opsi/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po
index 754142c275..aa5a8b30a5 100644
--- a/opsi/locale/it_IT/fusiondirectory.po
+++ b/opsi/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/ja/fusiondirectory.po b/opsi/locale/ja/fusiondirectory.po
index 0e897a7cf8..f112cd231d 100644
--- a/opsi/locale/ja/fusiondirectory.po
+++ b/opsi/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/ko/fusiondirectory.po b/opsi/locale/ko/fusiondirectory.po
index 4a1dfc194f..7f555d8a60 100644
--- a/opsi/locale/ko/fusiondirectory.po
+++ b/opsi/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po
index b88dbbe3d2..6ba293c380 100644
--- a/opsi/locale/lv/fusiondirectory.po
+++ b/opsi/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po
index 071fa902d1..957aa10bb1 100644
--- a/opsi/locale/nb/fusiondirectory.po
+++ b/opsi/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po
index 164450c164..f358b64e32 100644
--- a/opsi/locale/nl/fusiondirectory.po
+++ b/opsi/locale/nl/fusiondirectory.po
@@ -14,7 +14,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po
index 6340a4bc5c..cc01681f50 100644
--- a/opsi/locale/pl/fusiondirectory.po
+++ b/opsi/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po
index 9317b2469e..3d45fa5c1c 100644
--- a/opsi/locale/pt/fusiondirectory.po
+++ b/opsi/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po
index 1fe6a37421..0ae5f12efb 100644
--- a/opsi/locale/pt_BR/fusiondirectory.po
+++ b/opsi/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/opsi/class_opsiSoftwareList.inc:32
 msgid "OPSI list"
diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po
index 0e1c3a780c..31b3c6169b 100644
--- a/opsi/locale/ru/fusiondirectory.po
+++ b/opsi/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po
index 0eede09427..2f6dd654b8 100644
--- a/opsi/locale/ru@petr1708/fusiondirectory.po
+++ b/opsi/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po
index 919de7817b..55c2b646bc 100644
--- a/opsi/locale/sv/fusiondirectory.po
+++ b/opsi/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/opsi/locale/tr_TR/fusiondirectory.po b/opsi/locale/tr_TR/fusiondirectory.po
index b97e467a63..74b1863c40 100644
--- a/opsi/locale/tr_TR/fusiondirectory.po
+++ b/opsi/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -219,7 +219,7 @@ msgstr ""
 
 #: admin/systems/services/opsi/class_serviceOPSI.inc:52
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: admin/systems/services/opsi/class_serviceOPSI.inc:52
 msgid "The password to use for connection"
diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po
index c6811cec83..a4d252d03a 100644
--- a/opsi/locale/ug/fusiondirectory.po
+++ b/opsi/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po
index 1ef5f1e6a6..efd11e7c22 100644
--- a/opsi/locale/vi_VN/fusiondirectory.po
+++ b/opsi/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po
index 3314c00849..8fb3c879b1 100644
--- a/opsi/locale/zh/fusiondirectory.po
+++ b/opsi/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/opsi/locale/zh_TW/fusiondirectory.po b/opsi/locale/zh_TW/fusiondirectory.po
index a5298d41d6..2d0b7beac0 100644
--- a/opsi/locale/zh_TW/fusiondirectory.po
+++ b/opsi/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/af_ZA/fusiondirectory.po b/personal/locale/af_ZA/fusiondirectory.po
index f21c1db228..76302c9042 100644
--- a/personal/locale/af_ZA/fusiondirectory.po
+++ b/personal/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po
index 18018881a7..227833017a 100644
--- a/personal/locale/ar/fusiondirectory.po
+++ b/personal/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po
index 23fcc9bcc7..d080f4ad31 100644
--- a/personal/locale/ca/fusiondirectory.po
+++ b/personal/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po
index 3949344633..bf315f3afb 100644
--- a/personal/locale/cs_CZ/fusiondirectory.po
+++ b/personal/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po
index ef50caf1da..1b7d15b8fe 100644
--- a/personal/locale/de/fusiondirectory.po
+++ b/personal/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po
index 5d973220f4..84ddd38561 100644
--- a/personal/locale/el_GR/fusiondirectory.po
+++ b/personal/locale/el_GR/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: LOUKAS SKOUROLIAKOS, 2021\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po
index d33f0d92ef..9a9b6614b9 100644
--- a/personal/locale/es/fusiondirectory.po
+++ b/personal/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po
index daf5beb40c..d550e72f74 100644
--- a/personal/locale/es_CO/fusiondirectory.po
+++ b/personal/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po
index 86c6f04235..8a8ea1e389 100644
--- a/personal/locale/es_VE/fusiondirectory.po
+++ b/personal/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po
index 500083fdc5..cf7f8d5615 100644
--- a/personal/locale/fa_IR/fusiondirectory.po
+++ b/personal/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po
index 08f653e0b1..99973676e0 100644
--- a/personal/locale/fi_FI/fusiondirectory.po
+++ b/personal/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po
index 44c9df5b79..c167bb3201 100644
--- a/personal/locale/fr/fusiondirectory.po
+++ b/personal/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po
index 448b2cc264..c16d4cc778 100644
--- a/personal/locale/hu_HU/fusiondirectory.po
+++ b/personal/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po
index 0486f6a6bf..ffd1384e23 100644
--- a/personal/locale/id/fusiondirectory.po
+++ b/personal/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po
index ee26ed9182..9cb1782ec5 100644
--- a/personal/locale/it_IT/fusiondirectory.po
+++ b/personal/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/ja/fusiondirectory.po b/personal/locale/ja/fusiondirectory.po
index c4382a2aa8..a171d1af27 100644
--- a/personal/locale/ja/fusiondirectory.po
+++ b/personal/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ko/fusiondirectory.po b/personal/locale/ko/fusiondirectory.po
index 74e479d1af..6c0d518920 100644
--- a/personal/locale/ko/fusiondirectory.po
+++ b/personal/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po
index c71b8fac1d..085535c9ca 100644
--- a/personal/locale/lv/fusiondirectory.po
+++ b/personal/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po
index bb879bd2a7..666a1264c0 100644
--- a/personal/locale/nb/fusiondirectory.po
+++ b/personal/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po
index 744b9b12c5..b13e47cfbe 100644
--- a/personal/locale/nl/fusiondirectory.po
+++ b/personal/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po
index 6d9fc00055..0de08d313b 100644
--- a/personal/locale/pl/fusiondirectory.po
+++ b/personal/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po
index 8202551bd8..3895987a33 100644
--- a/personal/locale/pt/fusiondirectory.po
+++ b/personal/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po
index 7c9140763d..8fccd76b13 100644
--- a/personal/locale/pt_BR/fusiondirectory.po
+++ b/personal/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/personal/class_personalConfig.inc:28
 msgid "Personal configuration"
diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po
index 2ac3fc69cc..cd05c52367 100644
--- a/personal/locale/ru/fusiondirectory.po
+++ b/personal/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po
index 0490f4435f..448b767ed6 100644
--- a/personal/locale/ru@petr1708/fusiondirectory.po
+++ b/personal/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po
index 787efa1258..33170bc570 100644
--- a/personal/locale/sv/fusiondirectory.po
+++ b/personal/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/personal/locale/tr_TR/fusiondirectory.po b/personal/locale/tr_TR/fusiondirectory.po
index d0b1acf6b7..953abfe921 100644
--- a/personal/locale/tr_TR/fusiondirectory.po
+++ b/personal/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po
index d9d6faeaaa..b34e8ec3df 100644
--- a/personal/locale/ug/fusiondirectory.po
+++ b/personal/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po
index 820d96d758..2743dd4134 100644
--- a/personal/locale/vi_VN/fusiondirectory.po
+++ b/personal/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po
index 5f24fb9b79..184d4af3ce 100644
--- a/personal/locale/zh/fusiondirectory.po
+++ b/personal/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/personal/locale/zh_TW/fusiondirectory.po b/personal/locale/zh_TW/fusiondirectory.po
index c930e40507..0bad14fe17 100644
--- a/personal/locale/zh_TW/fusiondirectory.po
+++ b/personal/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:16+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/af_ZA/fusiondirectory.po b/posix/locale/af_ZA/fusiondirectory.po
index baae8f67af..1a09b53135 100644
--- a/posix/locale/af_ZA/fusiondirectory.po
+++ b/posix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ar/fusiondirectory.po b/posix/locale/ar/fusiondirectory.po
index a83d8fa10d..228d5d59fe 100644
--- a/posix/locale/ar/fusiondirectory.po
+++ b/posix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/posix/locale/ca/fusiondirectory.po b/posix/locale/ca/fusiondirectory.po
index b54f138d88..d34c3c2058 100644
--- a/posix/locale/ca/fusiondirectory.po
+++ b/posix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/posix/locale/cs_CZ/fusiondirectory.po b/posix/locale/cs_CZ/fusiondirectory.po
index 4f8e00f63b..fda22a5ee9 100644
--- a/posix/locale/cs_CZ/fusiondirectory.po
+++ b/posix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/posix/locale/de/fusiondirectory.po b/posix/locale/de/fusiondirectory.po
index f8fd86f931..a1054cce5b 100644
--- a/posix/locale/de/fusiondirectory.po
+++ b/posix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/posix/locale/el_GR/fusiondirectory.po b/posix/locale/el_GR/fusiondirectory.po
index c134916f20..2e64d3107d 100644
--- a/posix/locale/el_GR/fusiondirectory.po
+++ b/posix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/posix/locale/es/fusiondirectory.po b/posix/locale/es/fusiondirectory.po
index 8866e62b32..0f1e1e5228 100644
--- a/posix/locale/es/fusiondirectory.po
+++ b/posix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/es_CO/fusiondirectory.po b/posix/locale/es_CO/fusiondirectory.po
index 2ed46e850d..62be206f7a 100644
--- a/posix/locale/es_CO/fusiondirectory.po
+++ b/posix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/es_VE/fusiondirectory.po b/posix/locale/es_VE/fusiondirectory.po
index ad72765942..98c07c06bf 100644
--- a/posix/locale/es_VE/fusiondirectory.po
+++ b/posix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/fa_IR/fusiondirectory.po b/posix/locale/fa_IR/fusiondirectory.po
index 576cfd5d06..6bb77cda12 100644
--- a/posix/locale/fa_IR/fusiondirectory.po
+++ b/posix/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/posix/locale/fi_FI/fusiondirectory.po b/posix/locale/fi_FI/fusiondirectory.po
index 52dfbedbce..f627320880 100644
--- a/posix/locale/fi_FI/fusiondirectory.po
+++ b/posix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/posix/locale/fr/fusiondirectory.po b/posix/locale/fr/fusiondirectory.po
index 02b260cd54..5f5cd841dd 100644
--- a/posix/locale/fr/fusiondirectory.po
+++ b/posix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/hu_HU/fusiondirectory.po b/posix/locale/hu_HU/fusiondirectory.po
index b1f95510bd..305cf17177 100644
--- a/posix/locale/hu_HU/fusiondirectory.po
+++ b/posix/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/posix/locale/id/fusiondirectory.po b/posix/locale/id/fusiondirectory.po
index 4fb4981788..9caccc75fa 100644
--- a/posix/locale/id/fusiondirectory.po
+++ b/posix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/it_IT/fusiondirectory.po b/posix/locale/it_IT/fusiondirectory.po
index 5b4fdc6688..d3320d8a7e 100644
--- a/posix/locale/it_IT/fusiondirectory.po
+++ b/posix/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2019
+# Paola Penati <paola.penati@opensides.be>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/ja/fusiondirectory.po b/posix/locale/ja/fusiondirectory.po
index ff61ce6c41..60dd8eb493 100644
--- a/posix/locale/ja/fusiondirectory.po
+++ b/posix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/ko/fusiondirectory.po b/posix/locale/ko/fusiondirectory.po
index 70aefd1f10..98b4849ea3 100644
--- a/posix/locale/ko/fusiondirectory.po
+++ b/posix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2019\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/posix/locale/lv/fusiondirectory.po b/posix/locale/lv/fusiondirectory.po
index c514a1c517..d4e3504c02 100644
--- a/posix/locale/lv/fusiondirectory.po
+++ b/posix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/posix/locale/nb/fusiondirectory.po b/posix/locale/nb/fusiondirectory.po
index f1dae61df3..92a305c9a3 100644
--- a/posix/locale/nb/fusiondirectory.po
+++ b/posix/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/posix/locale/nl/fusiondirectory.po b/posix/locale/nl/fusiondirectory.po
index 051b959d0f..34731e794b 100644
--- a/posix/locale/nl/fusiondirectory.po
+++ b/posix/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/posix/locale/pl/fusiondirectory.po b/posix/locale/pl/fusiondirectory.po
index a86f2a595e..906ab4cc3c 100644
--- a/posix/locale/pl/fusiondirectory.po
+++ b/posix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/posix/locale/pt/fusiondirectory.po b/posix/locale/pt/fusiondirectory.po
index b5ad2a5ccb..2f1b0ac4a4 100644
--- a/posix/locale/pt/fusiondirectory.po
+++ b/posix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/pt_BR/fusiondirectory.po b/posix/locale/pt_BR/fusiondirectory.po
index 8b9a675224..632cbf7a6c 100644
--- a/posix/locale/pt_BR/fusiondirectory.po
+++ b/posix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/posix/class_posixGroup.inc:34
 msgid "Group"
diff --git a/posix/locale/ru/fusiondirectory.po b/posix/locale/ru/fusiondirectory.po
index ad903b334e..33c69c820d 100644
--- a/posix/locale/ru/fusiondirectory.po
+++ b/posix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/posix/locale/ru@petr1708/fusiondirectory.po b/posix/locale/ru@petr1708/fusiondirectory.po
index a64cfa3f08..effa3eb3bf 100644
--- a/posix/locale/ru@petr1708/fusiondirectory.po
+++ b/posix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/sv/fusiondirectory.po b/posix/locale/sv/fusiondirectory.po
index e855e8bddd..e30e347d50 100644
--- a/posix/locale/sv/fusiondirectory.po
+++ b/posix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/posix/locale/tr_TR/fusiondirectory.po b/posix/locale/tr_TR/fusiondirectory.po
index 336d0d3f5f..7f2932f83e 100644
--- a/posix/locale/tr_TR/fusiondirectory.po
+++ b/posix/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -423,7 +423,7 @@ msgstr ""
 #: personal/posix/class_posixAccount.inc:1008
 #: personal/posix/class_posixAccount.inc:1020
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: personal/posix/class_posixAccount.inc:779
 #, php-format
diff --git a/posix/locale/ug/fusiondirectory.po b/posix/locale/ug/fusiondirectory.po
index c110073815..372a8a13ab 100644
--- a/posix/locale/ug/fusiondirectory.po
+++ b/posix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/posix/locale/vi_VN/fusiondirectory.po b/posix/locale/vi_VN/fusiondirectory.po
index bddf635a12..acd355e22f 100644
--- a/posix/locale/vi_VN/fusiondirectory.po
+++ b/posix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/posix/locale/zh/fusiondirectory.po b/posix/locale/zh/fusiondirectory.po
index 00f52f1945..4072a9187b 100644
--- a/posix/locale/zh/fusiondirectory.po
+++ b/posix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/posix/locale/zh_TW/fusiondirectory.po b/posix/locale/zh_TW/fusiondirectory.po
index 6dca78177c..ee0525ebf1 100644
--- a/posix/locale/zh_TW/fusiondirectory.po
+++ b/posix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-02-02 06:52+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/af_ZA/fusiondirectory.po b/postfix/locale/af_ZA/fusiondirectory.po
index f844877295..83ddad479b 100644
--- a/postfix/locale/af_ZA/fusiondirectory.po
+++ b/postfix/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po
index a25efd2d5e..ea465c2364 100644
--- a/postfix/locale/ar/fusiondirectory.po
+++ b/postfix/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po
index 38acc65c5f..4ac0326286 100644
--- a/postfix/locale/ca/fusiondirectory.po
+++ b/postfix/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po
index 42da7761cb..2912cdfcd0 100644
--- a/postfix/locale/cs_CZ/fusiondirectory.po
+++ b/postfix/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po
index d925a2d5d2..9bea6db585 100644
--- a/postfix/locale/de/fusiondirectory.po
+++ b/postfix/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po
index fbbdb1ebed..40fdbd08c9 100644
--- a/postfix/locale/el_GR/fusiondirectory.po
+++ b/postfix/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po
index d76a01f9f4..f1154191ea 100644
--- a/postfix/locale/es/fusiondirectory.po
+++ b/postfix/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po
index 9e58e4d030..2e2d0afdaf 100644
--- a/postfix/locale/es_CO/fusiondirectory.po
+++ b/postfix/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po
index 01aab0c981..f2dd60cda1 100644
--- a/postfix/locale/es_VE/fusiondirectory.po
+++ b/postfix/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po
index 09bd70a536..ee05d766e5 100644
--- a/postfix/locale/fa_IR/fusiondirectory.po
+++ b/postfix/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po
index f99e6a4aa3..5cdcae54ae 100644
--- a/postfix/locale/fi_FI/fusiondirectory.po
+++ b/postfix/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po
index 5146598288..19dda68ba5 100644
--- a/postfix/locale/fr/fusiondirectory.po
+++ b/postfix/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po
index eec314a022..f2fa36fdf5 100644
--- a/postfix/locale/hu_HU/fusiondirectory.po
+++ b/postfix/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po
index 2ff5912bd6..e8f60172e0 100644
--- a/postfix/locale/id/fusiondirectory.po
+++ b/postfix/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po
index 8f3cec90d5..dc35e58c4c 100644
--- a/postfix/locale/it_IT/fusiondirectory.po
+++ b/postfix/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/ja/fusiondirectory.po b/postfix/locale/ja/fusiondirectory.po
index 8dff2e8c36..6bfe3ac260 100644
--- a/postfix/locale/ja/fusiondirectory.po
+++ b/postfix/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ko/fusiondirectory.po b/postfix/locale/ko/fusiondirectory.po
index bdaf144756..14d52f2421 100644
--- a/postfix/locale/ko/fusiondirectory.po
+++ b/postfix/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po
index 5a5c668696..45eda21f55 100644
--- a/postfix/locale/lv/fusiondirectory.po
+++ b/postfix/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po
index 9c541a559f..ee1fb9037b 100644
--- a/postfix/locale/nb/fusiondirectory.po
+++ b/postfix/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po
index 560b23d6ca..3d789ddd91 100644
--- a/postfix/locale/nl/fusiondirectory.po
+++ b/postfix/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po
index 58f28b573a..c8ab2cdee5 100644
--- a/postfix/locale/pl/fusiondirectory.po
+++ b/postfix/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po
index 8c0a9e8edf..be8b6adf53 100644
--- a/postfix/locale/pt/fusiondirectory.po
+++ b/postfix/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po
index d4d34561db..ab60800069 100644
--- a/postfix/locale/pt_BR/fusiondirectory.po
+++ b/postfix/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/postfix/class_servicePostfix.inc:56
 #: admin/systems/services/postfix/class_servicePostfix.inc:57
diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po
index 8ea3543308..76fe05fc66 100644
--- a/postfix/locale/ru/fusiondirectory.po
+++ b/postfix/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po
index 7e441282de..e3346049a4 100644
--- a/postfix/locale/ru@petr1708/fusiondirectory.po
+++ b/postfix/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po
index d0b28009a4..70d9c8c072 100644
--- a/postfix/locale/sv/fusiondirectory.po
+++ b/postfix/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/postfix/locale/tr_TR/fusiondirectory.po b/postfix/locale/tr_TR/fusiondirectory.po
index 2e0ed02214..0ce44b8142 100644
--- a/postfix/locale/tr_TR/fusiondirectory.po
+++ b/postfix/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po
index 2c8d030fd0..48697a661b 100644
--- a/postfix/locale/ug/fusiondirectory.po
+++ b/postfix/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po
index f10636cb18..e0c132667a 100644
--- a/postfix/locale/vi_VN/fusiondirectory.po
+++ b/postfix/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po
index bee01cb2e9..66d285ff63 100644
--- a/postfix/locale/zh/fusiondirectory.po
+++ b/postfix/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/postfix/locale/zh_TW/fusiondirectory.po b/postfix/locale/zh_TW/fusiondirectory.po
index be3a92fdf1..60b1db012a 100644
--- a/postfix/locale/zh_TW/fusiondirectory.po
+++ b/postfix/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/af_ZA/fusiondirectory.po b/ppolicy/locale/af_ZA/fusiondirectory.po
index 80c7982005..d8553552ed 100644
--- a/ppolicy/locale/af_ZA/fusiondirectory.po
+++ b/ppolicy/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po
index fdff9264e7..46da89d608 100644
--- a/ppolicy/locale/ar/fusiondirectory.po
+++ b/ppolicy/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po
index 6a2640d6eb..640ce62999 100644
--- a/ppolicy/locale/ca/fusiondirectory.po
+++ b/ppolicy/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po
index 6486690f6a..6eed26a825 100644
--- a/ppolicy/locale/cs_CZ/fusiondirectory.po
+++ b/ppolicy/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po
index 86aeaec5e6..c6051c864c 100644
--- a/ppolicy/locale/de/fusiondirectory.po
+++ b/ppolicy/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po
index a45632f233..f87ed2b631 100644
--- a/ppolicy/locale/el_GR/fusiondirectory.po
+++ b/ppolicy/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po
index 0234238d16..0cb2582186 100644
--- a/ppolicy/locale/es/fusiondirectory.po
+++ b/ppolicy/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -361,6 +361,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po
index bda856da06..c7a72395f7 100644
--- a/ppolicy/locale/es_CO/fusiondirectory.po
+++ b/ppolicy/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -361,6 +361,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po
index 3a9802cc08..1efde86bce 100644
--- a/ppolicy/locale/es_VE/fusiondirectory.po
+++ b/ppolicy/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -361,6 +361,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po
index 5c6c85106b..eed0a87024 100644
--- a/ppolicy/locale/fa_IR/fusiondirectory.po
+++ b/ppolicy/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po
index 37d311de9b..4df28476f3 100644
--- a/ppolicy/locale/fi_FI/fusiondirectory.po
+++ b/ppolicy/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po
index ce6a389c2b..36df2c3a50 100644
--- a/ppolicy/locale/fr/fusiondirectory.po
+++ b/ppolicy/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -331,8 +331,8 @@ msgstr "La ppolicy par défaut \"%s\" n’a pas été trouvée dans le LDAP !"
 #, php-format
 msgid "Ppolicy \"%s\" set for user \"%s\" could not be found in the LDAP!"
 msgstr ""
-"La ppolicy \"%s\" pour l'utilisateur \"%s\" n’a pas été trouvée dans le LDAP"
-" !"
+"La ppolicy \"%s\" pour l'utilisateur \"%s\" n’a pas été trouvée dans le "
+"LDAP !"
 
 #: personal/ppolicy/class_ppolicyAccount.inc:30
 msgid "Edit user's password policy"
@@ -397,6 +397,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] "Il y a un compte verrouille"
 msgstr[1] "Il y a %1 comptes verrouillés"
+msgstr[2] "Il y a %1 comptes verrouillés"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po
index 0d17000444..436096dcef 100644
--- a/ppolicy/locale/hu_HU/fusiondirectory.po
+++ b/ppolicy/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po
index b9c8f47de7..3ab5ace15e 100644
--- a/ppolicy/locale/id/fusiondirectory.po
+++ b/ppolicy/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po
index 69733e4890..6fdad563e1 100644
--- a/ppolicy/locale/it_IT/fusiondirectory.po
+++ b/ppolicy/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -392,6 +392,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] "C'é un account bloccato"
 msgstr[1] "Ci sono %1 accounts bloccati"
+msgstr[2] "Ci sono %1 accounts bloccati"
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/ja/fusiondirectory.po b/ppolicy/locale/ja/fusiondirectory.po
index 76af272d60..83afe0212d 100644
--- a/ppolicy/locale/ja/fusiondirectory.po
+++ b/ppolicy/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ko/fusiondirectory.po b/ppolicy/locale/ko/fusiondirectory.po
index 40c1418db0..b4ff31005b 100644
--- a/ppolicy/locale/ko/fusiondirectory.po
+++ b/ppolicy/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po
index 45b8cdb0e2..e226a0901c 100644
--- a/ppolicy/locale/lv/fusiondirectory.po
+++ b/ppolicy/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po
index 414804fff9..4fbc9b1084 100644
--- a/ppolicy/locale/nb/fusiondirectory.po
+++ b/ppolicy/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po
index a10674021b..578182ab27 100644
--- a/ppolicy/locale/nl/fusiondirectory.po
+++ b/ppolicy/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po
index f217c31baf..800c50992d 100644
--- a/ppolicy/locale/pl/fusiondirectory.po
+++ b/ppolicy/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po
index a628ebe9cf..e37b646608 100644
--- a/ppolicy/locale/pt/fusiondirectory.po
+++ b/ppolicy/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -361,6 +361,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po
index a837270684..2443eb5d6f 100644
--- a/ppolicy/locale/pt_BR/fusiondirectory.po
+++ b/ppolicy/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/ppolicy/class_ppolicyManagement.inc:29
 msgid "Password policies"
@@ -361,6 +361,7 @@ msgid "There is one locked account"
 msgid_plural "There are %1 locked accounts"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5
 msgid "There is no locked account"
diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po
index e933002f5d..4bf2d03968 100644
--- a/ppolicy/locale/ru/fusiondirectory.po
+++ b/ppolicy/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po
index fb04a7dd53..f8c18aed02 100644
--- a/ppolicy/locale/ru@petr1708/fusiondirectory.po
+++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po
index 2768ec2051..dbe17c6f04 100644
--- a/ppolicy/locale/sv/fusiondirectory.po
+++ b/ppolicy/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/ppolicy/locale/tr_TR/fusiondirectory.po b/ppolicy/locale/tr_TR/fusiondirectory.po
index 180e0fce6e..eba9ea2480 100644
--- a/ppolicy/locale/tr_TR/fusiondirectory.po
+++ b/ppolicy/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po
index 36e5e0997c..9eb82f14b3 100644
--- a/ppolicy/locale/ug/fusiondirectory.po
+++ b/ppolicy/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po
index 2fd2225f47..5cdd64c218 100644
--- a/ppolicy/locale/vi_VN/fusiondirectory.po
+++ b/ppolicy/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po
index f22a79f953..8f66f5a17e 100644
--- a/ppolicy/locale/zh/fusiondirectory.po
+++ b/ppolicy/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/ppolicy/locale/zh_TW/fusiondirectory.po b/ppolicy/locale/zh_TW/fusiondirectory.po
index 2c47c246f8..8431b075dc 100644
--- a/ppolicy/locale/zh_TW/fusiondirectory.po
+++ b/ppolicy/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/af_ZA/fusiondirectory.po b/puppet/locale/af_ZA/fusiondirectory.po
index 4f58809331..391474c6c1 100644
--- a/puppet/locale/af_ZA/fusiondirectory.po
+++ b/puppet/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po
index 7810b4c05b..98b0bfd078 100644
--- a/puppet/locale/ar/fusiondirectory.po
+++ b/puppet/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po
index 39bc53de50..528a746ef7 100644
--- a/puppet/locale/ca/fusiondirectory.po
+++ b/puppet/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po
index c6bc267e48..44ed7f520e 100644
--- a/puppet/locale/cs_CZ/fusiondirectory.po
+++ b/puppet/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po
index 0ab532caa6..ee523377b2 100644
--- a/puppet/locale/de/fusiondirectory.po
+++ b/puppet/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po
index 7bc63fcfc6..c2455927b5 100644
--- a/puppet/locale/el_GR/fusiondirectory.po
+++ b/puppet/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po
index a0188ad2ca..ea6c0bfcaf 100644
--- a/puppet/locale/es/fusiondirectory.po
+++ b/puppet/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po
index 9095548301..91d1f8ffc3 100644
--- a/puppet/locale/es_CO/fusiondirectory.po
+++ b/puppet/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po
index 68ad51e6c1..07dfe42ba5 100644
--- a/puppet/locale/es_VE/fusiondirectory.po
+++ b/puppet/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po
index 10ea88562f..aa487958c8 100644
--- a/puppet/locale/fa_IR/fusiondirectory.po
+++ b/puppet/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po
index 2ba847173b..b8cffdf328 100644
--- a/puppet/locale/fi_FI/fusiondirectory.po
+++ b/puppet/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po
index 685d7d20e2..cdb203f18d 100644
--- a/puppet/locale/fr/fusiondirectory.po
+++ b/puppet/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po
index 8068e69348..93873d74eb 100644
--- a/puppet/locale/hu_HU/fusiondirectory.po
+++ b/puppet/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po
index 79b6bae479..fd107255a7 100644
--- a/puppet/locale/id/fusiondirectory.po
+++ b/puppet/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po
index 0fa85e40af..4fa9bf941a 100644
--- a/puppet/locale/it_IT/fusiondirectory.po
+++ b/puppet/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/ja/fusiondirectory.po b/puppet/locale/ja/fusiondirectory.po
index 98c3898943..cb2f985eea 100644
--- a/puppet/locale/ja/fusiondirectory.po
+++ b/puppet/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ko/fusiondirectory.po b/puppet/locale/ko/fusiondirectory.po
index 50994971de..f1bf2634d6 100644
--- a/puppet/locale/ko/fusiondirectory.po
+++ b/puppet/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po
index 679cd2dfaf..ab2af8eb57 100644
--- a/puppet/locale/lv/fusiondirectory.po
+++ b/puppet/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po
index e36c8fdb7e..205193db65 100644
--- a/puppet/locale/nb/fusiondirectory.po
+++ b/puppet/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po
index 9ef772f4c2..a39e6afbd1 100644
--- a/puppet/locale/nl/fusiondirectory.po
+++ b/puppet/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po
index 411b4d94fb..2fd33b4682 100644
--- a/puppet/locale/pl/fusiondirectory.po
+++ b/puppet/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po
index 0973337919..d18e442b87 100644
--- a/puppet/locale/pt/fusiondirectory.po
+++ b/puppet/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po
index 10004670c3..683ca97342 100644
--- a/puppet/locale/pt_BR/fusiondirectory.po
+++ b/puppet/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/puppet/class_servicePuppet.inc:28
 #: admin/systems/services/puppet/class_servicePuppet.inc:42
diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po
index 9d8be88637..0a235b2267 100644
--- a/puppet/locale/ru/fusiondirectory.po
+++ b/puppet/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po
index e923d21a9b..2fb4236aa2 100644
--- a/puppet/locale/ru@petr1708/fusiondirectory.po
+++ b/puppet/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po
index 1e18412049..5fc40219a9 100644
--- a/puppet/locale/sv/fusiondirectory.po
+++ b/puppet/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/puppet/locale/tr_TR/fusiondirectory.po b/puppet/locale/tr_TR/fusiondirectory.po
index fde5066627..880fcd0f24 100644
--- a/puppet/locale/tr_TR/fusiondirectory.po
+++ b/puppet/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po
index ef50ef1b5c..625802ea7c 100644
--- a/puppet/locale/ug/fusiondirectory.po
+++ b/puppet/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po
index d9b7ce2405..4cd2c2bfc9 100644
--- a/puppet/locale/vi_VN/fusiondirectory.po
+++ b/puppet/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po
index c37f7164c4..bc9993f910 100644
--- a/puppet/locale/zh/fusiondirectory.po
+++ b/puppet/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/puppet/locale/zh_TW/fusiondirectory.po b/puppet/locale/zh_TW/fusiondirectory.po
index 439d50d405..a9f4ea2a07 100644
--- a/puppet/locale/zh_TW/fusiondirectory.po
+++ b/puppet/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:17+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/af_ZA/fusiondirectory.po b/pureftpd/locale/af_ZA/fusiondirectory.po
index 80f58aacec..6b7791fb0f 100644
--- a/pureftpd/locale/af_ZA/fusiondirectory.po
+++ b/pureftpd/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po
index 8ad2d555f9..c4fec5ca90 100644
--- a/pureftpd/locale/ar/fusiondirectory.po
+++ b/pureftpd/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po
index 21c38def38..c0abb412f3 100644
--- a/pureftpd/locale/ca/fusiondirectory.po
+++ b/pureftpd/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po
index 4aca48e497..3cb18ea37d 100644
--- a/pureftpd/locale/cs_CZ/fusiondirectory.po
+++ b/pureftpd/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po
index 8db5c58034..d4a82b876f 100644
--- a/pureftpd/locale/de/fusiondirectory.po
+++ b/pureftpd/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po
index 4c37197faf..b3c0922bf8 100644
--- a/pureftpd/locale/el_GR/fusiondirectory.po
+++ b/pureftpd/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po
index ca4ae9cf48..eae12a9b9a 100644
--- a/pureftpd/locale/es/fusiondirectory.po
+++ b/pureftpd/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po
index bfc2002acf..221810f1b3 100644
--- a/pureftpd/locale/es_CO/fusiondirectory.po
+++ b/pureftpd/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po
index 3d47624ebc..05da85c3b7 100644
--- a/pureftpd/locale/es_VE/fusiondirectory.po
+++ b/pureftpd/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po
index 4bba7c064e..d09de3f1e7 100644
--- a/pureftpd/locale/fa_IR/fusiondirectory.po
+++ b/pureftpd/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po
index 1780cfdd66..bef5f8b212 100644
--- a/pureftpd/locale/fi_FI/fusiondirectory.po
+++ b/pureftpd/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po
index 328b96115f..797adc9800 100644
--- a/pureftpd/locale/fr/fusiondirectory.po
+++ b/pureftpd/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po
index 9bf52b72c6..a43cb3b3c3 100644
--- a/pureftpd/locale/hu_HU/fusiondirectory.po
+++ b/pureftpd/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po
index 42e4bd6c6c..2bba9b8cb9 100644
--- a/pureftpd/locale/id/fusiondirectory.po
+++ b/pureftpd/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po
index 52ce0d1ad6..44c24f28c6 100644
--- a/pureftpd/locale/it_IT/fusiondirectory.po
+++ b/pureftpd/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/ja/fusiondirectory.po b/pureftpd/locale/ja/fusiondirectory.po
index 86f0cdde9d..189ac0389b 100644
--- a/pureftpd/locale/ja/fusiondirectory.po
+++ b/pureftpd/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ko/fusiondirectory.po b/pureftpd/locale/ko/fusiondirectory.po
index fdf3bf2fcb..542758c1a0 100644
--- a/pureftpd/locale/ko/fusiondirectory.po
+++ b/pureftpd/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po
index 1db7569676..0099c000ca 100644
--- a/pureftpd/locale/lv/fusiondirectory.po
+++ b/pureftpd/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po
index 767ed86b6d..15908999f4 100644
--- a/pureftpd/locale/nb/fusiondirectory.po
+++ b/pureftpd/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po
index 599cf39335..1dc70807bb 100644
--- a/pureftpd/locale/nl/fusiondirectory.po
+++ b/pureftpd/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po
index 25f1b1ebe5..8315a44008 100644
--- a/pureftpd/locale/pl/fusiondirectory.po
+++ b/pureftpd/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po
index dc8ace9f6e..ebacd02d28 100644
--- a/pureftpd/locale/pt/fusiondirectory.po
+++ b/pureftpd/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po
index 7b8b440d8d..81186fd80a 100644
--- a/pureftpd/locale/pt_BR/fusiondirectory.po
+++ b/pureftpd/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/pureftpd/class_pureftpdAccount.inc:33
 msgid "Ftp"
diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po
index 352bcdc7f9..edfd5d9a24 100644
--- a/pureftpd/locale/ru/fusiondirectory.po
+++ b/pureftpd/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po
index fdc7ae7869..effd119d06 100644
--- a/pureftpd/locale/ru@petr1708/fusiondirectory.po
+++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po
index bfa1058129..a6ac7f6811 100644
--- a/pureftpd/locale/sv/fusiondirectory.po
+++ b/pureftpd/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/pureftpd/locale/tr_TR/fusiondirectory.po b/pureftpd/locale/tr_TR/fusiondirectory.po
index 9d2bb2a112..082915ba9d 100644
--- a/pureftpd/locale/tr_TR/fusiondirectory.po
+++ b/pureftpd/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po
index fed2a27dcd..783cde2715 100644
--- a/pureftpd/locale/ug/fusiondirectory.po
+++ b/pureftpd/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po
index b5c2ae2671..72b4959422 100644
--- a/pureftpd/locale/vi_VN/fusiondirectory.po
+++ b/pureftpd/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po
index 251de81855..225c474fcf 100644
--- a/pureftpd/locale/zh/fusiondirectory.po
+++ b/pureftpd/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/pureftpd/locale/zh_TW/fusiondirectory.po b/pureftpd/locale/zh_TW/fusiondirectory.po
index d9b955189f..0f5bebb344 100644
--- a/pureftpd/locale/zh_TW/fusiondirectory.po
+++ b/pureftpd/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/af_ZA/fusiondirectory.po b/quota/locale/af_ZA/fusiondirectory.po
index 81b85afd3a..a90548ddd1 100644
--- a/quota/locale/af_ZA/fusiondirectory.po
+++ b/quota/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po
index 7bf643292c..7ab1aeaab7 100644
--- a/quota/locale/ar/fusiondirectory.po
+++ b/quota/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po
index 08694b756d..5092aa4f20 100644
--- a/quota/locale/ca/fusiondirectory.po
+++ b/quota/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po
index d1b4600bb2..c91a2dd423 100644
--- a/quota/locale/cs_CZ/fusiondirectory.po
+++ b/quota/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po
index e01de8ffdf..c6243a66a5 100644
--- a/quota/locale/de/fusiondirectory.po
+++ b/quota/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po
index fb9ae48459..1db82d8f17 100644
--- a/quota/locale/el_GR/fusiondirectory.po
+++ b/quota/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po
index 538c7d3aad..592c9e57e5 100644
--- a/quota/locale/es/fusiondirectory.po
+++ b/quota/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po
index cf0f38729e..b3276b5e87 100644
--- a/quota/locale/es_CO/fusiondirectory.po
+++ b/quota/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po
index f87d10a9ff..51c6c4de1f 100644
--- a/quota/locale/es_VE/fusiondirectory.po
+++ b/quota/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po
index 5dfdd109ea..1188cce54d 100644
--- a/quota/locale/fa_IR/fusiondirectory.po
+++ b/quota/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po
index 3c551fd1af..bb8cc6389b 100644
--- a/quota/locale/fi_FI/fusiondirectory.po
+++ b/quota/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po
index c137e0865e..451c6e2560 100644
--- a/quota/locale/fr/fusiondirectory.po
+++ b/quota/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po
index 5943a8be98..e5ab4d7e1b 100644
--- a/quota/locale/hu_HU/fusiondirectory.po
+++ b/quota/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po
index cada1ebc5d..81f81928f1 100644
--- a/quota/locale/id/fusiondirectory.po
+++ b/quota/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po
index bee8f4f556..62e47c66d8 100644
--- a/quota/locale/it_IT/fusiondirectory.po
+++ b/quota/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/ja/fusiondirectory.po b/quota/locale/ja/fusiondirectory.po
index 435b8597ce..c56b58493c 100644
--- a/quota/locale/ja/fusiondirectory.po
+++ b/quota/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/ko/fusiondirectory.po b/quota/locale/ko/fusiondirectory.po
index 165c59d2d8..ba4b434b13 100644
--- a/quota/locale/ko/fusiondirectory.po
+++ b/quota/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po
index 4a88edcb13..55e991ce58 100644
--- a/quota/locale/lv/fusiondirectory.po
+++ b/quota/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po
index 17e73d7da8..4dc2bb1bfe 100644
--- a/quota/locale/nb/fusiondirectory.po
+++ b/quota/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po
index 1dc4670413..c992afd660 100644
--- a/quota/locale/nl/fusiondirectory.po
+++ b/quota/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po
index 04c8f7b51a..64b9d4b8ec 100644
--- a/quota/locale/pl/fusiondirectory.po
+++ b/quota/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po
index b3417dbeaa..f709cf79cc 100644
--- a/quota/locale/pt/fusiondirectory.po
+++ b/quota/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po
index 88677baf83..df86d20f7d 100644
--- a/quota/locale/pt_BR/fusiondirectory.po
+++ b/quota/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:29
 #: admin/systems/services/quota/class_serviceQuota.inc:30
diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po
index 79439dd798..36f5c6391e 100644
--- a/quota/locale/ru/fusiondirectory.po
+++ b/quota/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po
index ea8a70e9aa..355abefd6b 100644
--- a/quota/locale/ru@petr1708/fusiondirectory.po
+++ b/quota/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po
index c3438db1f8..77b23fd22b 100644
--- a/quota/locale/sv/fusiondirectory.po
+++ b/quota/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/quota/locale/tr_TR/fusiondirectory.po b/quota/locale/tr_TR/fusiondirectory.po
index abeb5765c4..bfa6f50243 100644
--- a/quota/locale/tr_TR/fusiondirectory.po
+++ b/quota/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -157,7 +161,7 @@ msgstr ""
 
 #: admin/systems/services/quota/class_serviceQuota.inc:159
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: admin/systems/services/quota/class_serviceQuota.inc:159
 #, php-format
diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po
index 269675c59a..a487a49329 100644
--- a/quota/locale/ug/fusiondirectory.po
+++ b/quota/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po
index f204f286aa..308be93af4 100644
--- a/quota/locale/vi_VN/fusiondirectory.po
+++ b/quota/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po
index aa8920b6e8..8509c2e020 100644
--- a/quota/locale/zh/fusiondirectory.po
+++ b/quota/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/quota/locale/zh_TW/fusiondirectory.po b/quota/locale/zh_TW/fusiondirectory.po
index 663e2ab8e6..bf13bf812a 100644
--- a/quota/locale/zh_TW/fusiondirectory.po
+++ b/quota/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:18+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/af_ZA/fusiondirectory.po b/renater-partage/locale/af_ZA/fusiondirectory.po
index 87a4113825..a83d61067c 100644
--- a/renater-partage/locale/af_ZA/fusiondirectory.po
+++ b/renater-partage/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ar/fusiondirectory.po b/renater-partage/locale/ar/fusiondirectory.po
index 48b50a6d0a..e79ac6a6e3 100644
--- a/renater-partage/locale/ar/fusiondirectory.po
+++ b/renater-partage/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/renater-partage/locale/ca/fusiondirectory.po b/renater-partage/locale/ca/fusiondirectory.po
index c8cbf1c809..a14e1ef62d 100644
--- a/renater-partage/locale/ca/fusiondirectory.po
+++ b/renater-partage/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/renater-partage/locale/cs_CZ/fusiondirectory.po b/renater-partage/locale/cs_CZ/fusiondirectory.po
index a1fdb8a801..53d581cd00 100644
--- a/renater-partage/locale/cs_CZ/fusiondirectory.po
+++ b/renater-partage/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/renater-partage/locale/de/fusiondirectory.po b/renater-partage/locale/de/fusiondirectory.po
index a7f799163e..26347fea51 100644
--- a/renater-partage/locale/de/fusiondirectory.po
+++ b/renater-partage/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/renater-partage/locale/el_GR/fusiondirectory.po b/renater-partage/locale/el_GR/fusiondirectory.po
index 40e4623e17..09a164bbce 100644
--- a/renater-partage/locale/el_GR/fusiondirectory.po
+++ b/renater-partage/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/renater-partage/locale/es/fusiondirectory.po b/renater-partage/locale/es/fusiondirectory.po
index 69a91bd9b9..5a718a34c7 100644
--- a/renater-partage/locale/es/fusiondirectory.po
+++ b/renater-partage/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/es_CO/fusiondirectory.po b/renater-partage/locale/es_CO/fusiondirectory.po
index aa46cea3b4..4f6327c4bf 100644
--- a/renater-partage/locale/es_CO/fusiondirectory.po
+++ b/renater-partage/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/es_VE/fusiondirectory.po b/renater-partage/locale/es_VE/fusiondirectory.po
index 6a83577327..c1b5d8050f 100644
--- a/renater-partage/locale/es_VE/fusiondirectory.po
+++ b/renater-partage/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/fa_IR/fusiondirectory.po b/renater-partage/locale/fa_IR/fusiondirectory.po
index 1235530db1..a6b392d64a 100644
--- a/renater-partage/locale/fa_IR/fusiondirectory.po
+++ b/renater-partage/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/fi_FI/fusiondirectory.po b/renater-partage/locale/fi_FI/fusiondirectory.po
index c73ef580f5..a6eee850eb 100644
--- a/renater-partage/locale/fi_FI/fusiondirectory.po
+++ b/renater-partage/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/renater-partage/locale/fr/fusiondirectory.po b/renater-partage/locale/fr/fusiondirectory.po
index 2893316658..f502b53bc0 100644
--- a/renater-partage/locale/fr/fusiondirectory.po
+++ b/renater-partage/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/hu_HU/fusiondirectory.po b/renater-partage/locale/hu_HU/fusiondirectory.po
index f58e5fec29..50a8c335af 100644
--- a/renater-partage/locale/hu_HU/fusiondirectory.po
+++ b/renater-partage/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/id/fusiondirectory.po b/renater-partage/locale/id/fusiondirectory.po
index 53bd16163b..b7e2b194f5 100644
--- a/renater-partage/locale/id/fusiondirectory.po
+++ b/renater-partage/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/it_IT/fusiondirectory.po b/renater-partage/locale/it_IT/fusiondirectory.po
index 134e99716c..721dcd2f19 100644
--- a/renater-partage/locale/it_IT/fusiondirectory.po
+++ b/renater-partage/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/ja/fusiondirectory.po b/renater-partage/locale/ja/fusiondirectory.po
index ca99496ca5..04b18c0132 100644
--- a/renater-partage/locale/ja/fusiondirectory.po
+++ b/renater-partage/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/ko/fusiondirectory.po b/renater-partage/locale/ko/fusiondirectory.po
index 98afd27e7d..749bcdcdaf 100644
--- a/renater-partage/locale/ko/fusiondirectory.po
+++ b/renater-partage/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/renater-partage/locale/lv/fusiondirectory.po b/renater-partage/locale/lv/fusiondirectory.po
index f9d23d8f0a..80f211e521 100644
--- a/renater-partage/locale/lv/fusiondirectory.po
+++ b/renater-partage/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/renater-partage/locale/nb/fusiondirectory.po b/renater-partage/locale/nb/fusiondirectory.po
index 7eafc4a167..40f494ed83 100644
--- a/renater-partage/locale/nb/fusiondirectory.po
+++ b/renater-partage/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/renater-partage/locale/nl/fusiondirectory.po b/renater-partage/locale/nl/fusiondirectory.po
index 95b057d28e..29b3ed1323 100644
--- a/renater-partage/locale/nl/fusiondirectory.po
+++ b/renater-partage/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/renater-partage/locale/pl/fusiondirectory.po b/renater-partage/locale/pl/fusiondirectory.po
index 6662289b75..d42279d095 100644
--- a/renater-partage/locale/pl/fusiondirectory.po
+++ b/renater-partage/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/renater-partage/locale/pt/fusiondirectory.po b/renater-partage/locale/pt/fusiondirectory.po
index f05cff3e8e..74f0c31ee0 100644
--- a/renater-partage/locale/pt/fusiondirectory.po
+++ b/renater-partage/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/pt_BR/fusiondirectory.po b/renater-partage/locale/pt_BR/fusiondirectory.po
index e8f379407e..50e2b38091 100644
--- a/renater-partage/locale/pt_BR/fusiondirectory.po
+++ b/renater-partage/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:29
 #: admin/sympa/renater-partage/class_sympaAliasPartage.inc:29
diff --git a/renater-partage/locale/ru/fusiondirectory.po b/renater-partage/locale/ru/fusiondirectory.po
index ed8d9d63be..3982703c64 100644
--- a/renater-partage/locale/ru/fusiondirectory.po
+++ b/renater-partage/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/renater-partage/locale/ru@petr1708/fusiondirectory.po b/renater-partage/locale/ru@petr1708/fusiondirectory.po
index d03f98a821..5ac3e7dbee 100644
--- a/renater-partage/locale/ru@petr1708/fusiondirectory.po
+++ b/renater-partage/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/sv/fusiondirectory.po b/renater-partage/locale/sv/fusiondirectory.po
index de7f5f5c6a..f3ab0c5399 100644
--- a/renater-partage/locale/sv/fusiondirectory.po
+++ b/renater-partage/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/renater-partage/locale/tr_TR/fusiondirectory.po b/renater-partage/locale/tr_TR/fusiondirectory.po
index cbed6fd29a..8a779484d4 100644
--- a/renater-partage/locale/tr_TR/fusiondirectory.po
+++ b/renater-partage/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgstr ""
 
 #: admin/groups/renater-partage/class_partageGroup.inc:54
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
 #: admin/groups/renater-partage/class_partageGroup.inc:54
 msgid "Type of PARTAGE group"
@@ -126,7 +126,7 @@ msgstr ""
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
 msgid "Delete"
-msgstr ""
+msgstr "Sil"
 
 #: admin/systems/services/renater-partage/class_serviceRenaterPartage.inc:56
 msgid "Disable"
@@ -246,7 +246,7 @@ msgstr ""
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:259
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: personal/mail/mail-methods/class_mail-methods-renater-partage.inc:259
 #, php-format
diff --git a/renater-partage/locale/ug/fusiondirectory.po b/renater-partage/locale/ug/fusiondirectory.po
index 8f7c43b7ca..b09dccb346 100644
--- a/renater-partage/locale/ug/fusiondirectory.po
+++ b/renater-partage/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/renater-partage/locale/vi_VN/fusiondirectory.po b/renater-partage/locale/vi_VN/fusiondirectory.po
index 8460563796..b2401fdd4e 100644
--- a/renater-partage/locale/vi_VN/fusiondirectory.po
+++ b/renater-partage/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/renater-partage/locale/zh/fusiondirectory.po b/renater-partage/locale/zh/fusiondirectory.po
index eb77af6a48..b29c7ede21 100644
--- a/renater-partage/locale/zh/fusiondirectory.po
+++ b/renater-partage/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/renater-partage/locale/zh_TW/fusiondirectory.po b/renater-partage/locale/zh_TW/fusiondirectory.po
index 0df6564497..2e443f28e4 100644
--- a/renater-partage/locale/zh_TW/fusiondirectory.po
+++ b/renater-partage/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2017-01-25 17:30+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/af_ZA/fusiondirectory.po b/repository/locale/af_ZA/fusiondirectory.po
index 4178f37b1c..86358db77c 100644
--- a/repository/locale/af_ZA/fusiondirectory.po
+++ b/repository/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po
index c1256260e7..817a17538d 100644
--- a/repository/locale/ar/fusiondirectory.po
+++ b/repository/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po
index 75b7f4ad0b..b6409b1aca 100644
--- a/repository/locale/ca/fusiondirectory.po
+++ b/repository/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po
index d2484fb349..8f8c03764b 100644
--- a/repository/locale/cs_CZ/fusiondirectory.po
+++ b/repository/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po
index 5768ef55e3..d6e04529cf 100644
--- a/repository/locale/de/fusiondirectory.po
+++ b/repository/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po
index 1c49748c67..43360e34ef 100644
--- a/repository/locale/el_GR/fusiondirectory.po
+++ b/repository/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po
index 5d64714fe5..11ab9a8562 100644
--- a/repository/locale/es/fusiondirectory.po
+++ b/repository/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po
index 0fcd151d2f..de650bf482 100644
--- a/repository/locale/es_CO/fusiondirectory.po
+++ b/repository/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po
index 9393a24c6b..9c4ec426a2 100644
--- a/repository/locale/es_VE/fusiondirectory.po
+++ b/repository/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po
index 109a4fe262..f57e06dbc8 100644
--- a/repository/locale/fa_IR/fusiondirectory.po
+++ b/repository/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po
index a6bf6284d1..63687f78e1 100644
--- a/repository/locale/fi_FI/fusiondirectory.po
+++ b/repository/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po
index 27fbc6d6f1..3b5feee1f8 100644
--- a/repository/locale/fr/fusiondirectory.po
+++ b/repository/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po
index 5d30360ced..ff36cc0145 100644
--- a/repository/locale/hu_HU/fusiondirectory.po
+++ b/repository/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po
index d44b38480b..1705ead4c6 100644
--- a/repository/locale/id/fusiondirectory.po
+++ b/repository/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po
index 69e5b8504b..08fd39aef5 100644
--- a/repository/locale/it_IT/fusiondirectory.po
+++ b/repository/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/ja/fusiondirectory.po b/repository/locale/ja/fusiondirectory.po
index 13c57ddc2b..8d8038f6a9 100644
--- a/repository/locale/ja/fusiondirectory.po
+++ b/repository/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/ko/fusiondirectory.po b/repository/locale/ko/fusiondirectory.po
index 8050a8b773..2e32492480 100644
--- a/repository/locale/ko/fusiondirectory.po
+++ b/repository/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po
index 36013a7532..a6c8643dc9 100644
--- a/repository/locale/lv/fusiondirectory.po
+++ b/repository/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po
index 01d89dc6c3..8b62550a3b 100644
--- a/repository/locale/nb/fusiondirectory.po
+++ b/repository/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po
index 5c04ebbf9d..9d9c0fdd4d 100644
--- a/repository/locale/nl/fusiondirectory.po
+++ b/repository/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po
index df8eb52ae0..b86bfa5d63 100644
--- a/repository/locale/pl/fusiondirectory.po
+++ b/repository/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po
index 7827798d35..5cbdfa0b38 100644
--- a/repository/locale/pt/fusiondirectory.po
+++ b/repository/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po
index 355a18e91f..149996b3aa 100644
--- a/repository/locale/pt_BR/fusiondirectory.po
+++ b/repository/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/repository/class_repositoryManagement.inc:28
 #: admin/repository/class_repositoryManagement.inc:29
diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po
index 1f12c7fc45..1ef56c5c32 100644
--- a/repository/locale/ru/fusiondirectory.po
+++ b/repository/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po
index 706ff69248..0cba1b136f 100644
--- a/repository/locale/ru@petr1708/fusiondirectory.po
+++ b/repository/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po
index c9e42a1360..16329f6572 100644
--- a/repository/locale/sv/fusiondirectory.po
+++ b/repository/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/repository/locale/tr_TR/fusiondirectory.po b/repository/locale/tr_TR/fusiondirectory.po
index ee9c357ab3..1c780f64c9 100644
--- a/repository/locale/tr_TR/fusiondirectory.po
+++ b/repository/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -72,7 +76,7 @@ msgstr ""
 
 #: admin/repository/class_buildRepository.inc:82
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
 #: admin/repository/class_buildRepository.inc:82
 msgid "Repository type"
diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po
index 8d6099d8f1..0032258961 100644
--- a/repository/locale/ug/fusiondirectory.po
+++ b/repository/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po
index 674c417d10..780bcdbfbc 100644
--- a/repository/locale/vi_VN/fusiondirectory.po
+++ b/repository/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po
index 05603d6a35..75a992e569 100644
--- a/repository/locale/zh/fusiondirectory.po
+++ b/repository/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/repository/locale/zh_TW/fusiondirectory.po b/repository/locale/zh_TW/fusiondirectory.po
index 33dc254f93..d9e6b4ab98 100644
--- a/repository/locale/zh_TW/fusiondirectory.po
+++ b/repository/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/af_ZA/fusiondirectory.po b/samba/locale/af_ZA/fusiondirectory.po
index cc4170987c..db0ce43ca5 100644
--- a/samba/locale/af_ZA/fusiondirectory.po
+++ b/samba/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po
index 8fe28e8927..50b484d3b3 100644
--- a/samba/locale/ar/fusiondirectory.po
+++ b/samba/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po
index 0073a728d3..1e624cf2da 100644
--- a/samba/locale/ca/fusiondirectory.po
+++ b/samba/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po
index c7dac5b701..dd82e87264 100644
--- a/samba/locale/cs_CZ/fusiondirectory.po
+++ b/samba/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po
index bbcb35300f..c6999a870f 100644
--- a/samba/locale/de/fusiondirectory.po
+++ b/samba/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po
index 3185cde017..16d06491ab 100644
--- a/samba/locale/el_GR/fusiondirectory.po
+++ b/samba/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po
index 958b0ecd18..953c8c1842 100644
--- a/samba/locale/es/fusiondirectory.po
+++ b/samba/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po
index fe6a89e957..381077b4ed 100644
--- a/samba/locale/es_CO/fusiondirectory.po
+++ b/samba/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po
index f799b5a497..64baf2c8a3 100644
--- a/samba/locale/es_VE/fusiondirectory.po
+++ b/samba/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po
index 1d33944bc2..4752761ef6 100644
--- a/samba/locale/fa_IR/fusiondirectory.po
+++ b/samba/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po
index 7a19f07d48..73cf63a785 100644
--- a/samba/locale/fi_FI/fusiondirectory.po
+++ b/samba/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po
index c934d4fabc..9b68735ebf 100644
--- a/samba/locale/fr/fusiondirectory.po
+++ b/samba/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po
index f52c0c7970..2b164fd9c3 100644
--- a/samba/locale/hu_HU/fusiondirectory.po
+++ b/samba/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po
index 752e36da78..6307092865 100644
--- a/samba/locale/id/fusiondirectory.po
+++ b/samba/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po
index 388e194e36..2184ebe7c2 100644
--- a/samba/locale/it_IT/fusiondirectory.po
+++ b/samba/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/ja/fusiondirectory.po b/samba/locale/ja/fusiondirectory.po
index 9a3d16f3ee..7900c65287 100644
--- a/samba/locale/ja/fusiondirectory.po
+++ b/samba/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/ko/fusiondirectory.po b/samba/locale/ko/fusiondirectory.po
index 6198b807a1..f72cce1b01 100644
--- a/samba/locale/ko/fusiondirectory.po
+++ b/samba/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2020\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po
index 4a0ad10a23..740496d03b 100644
--- a/samba/locale/lv/fusiondirectory.po
+++ b/samba/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po
index b377163f2d..9cec031a42 100644
--- a/samba/locale/nb/fusiondirectory.po
+++ b/samba/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po
index 17be97b4c4..9d8551fdde 100644
--- a/samba/locale/nl/fusiondirectory.po
+++ b/samba/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po
index 8d5350373e..da8603bcca 100644
--- a/samba/locale/pl/fusiondirectory.po
+++ b/samba/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po
index 0ad15ad6cd..c486455a0a 100644
--- a/samba/locale/pt/fusiondirectory.po
+++ b/samba/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po
index 8cab121aac..f4cbe7a8ea 100644
--- a/samba/locale/pt_BR/fusiondirectory.po
+++ b/samba/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_smbHash.inc:369
 msgid ""
diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po
index 4196e2fd45..c3bd68d71f 100644
--- a/samba/locale/ru/fusiondirectory.po
+++ b/samba/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po
index 1271915763..215c9f6205 100644
--- a/samba/locale/ru@petr1708/fusiondirectory.po
+++ b/samba/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po
index 0d7ec3fe41..0883244f37 100644
--- a/samba/locale/sv/fusiondirectory.po
+++ b/samba/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/samba/locale/tr_TR/fusiondirectory.po b/samba/locale/tr_TR/fusiondirectory.po
index cf4e8131e4..564ecbe6d9 100644
--- a/samba/locale/tr_TR/fusiondirectory.po
+++ b/samba/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -248,7 +252,7 @@ msgstr ""
 #: personal/samba/class_sambaAccount.inc:542
 #: personal/samba/class_sambaAccount.inc:563
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: admin/groups/samba/class_sambaGroup.inc:137
 #: personal/samba/class_sambaAccount.inc:516
diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po
index ce570a8c42..6a030e699b 100644
--- a/samba/locale/ug/fusiondirectory.po
+++ b/samba/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po
index 2f509e84c4..7b0986dba6 100644
--- a/samba/locale/vi_VN/fusiondirectory.po
+++ b/samba/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po
index 3c03f07b62..ed9f48b269 100644
--- a/samba/locale/zh/fusiondirectory.po
+++ b/samba/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/samba/locale/zh_TW/fusiondirectory.po b/samba/locale/zh_TW/fusiondirectory.po
index 816e904f40..28947f63d0 100644
--- a/samba/locale/zh_TW/fusiondirectory.po
+++ b/samba/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:19+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/af_ZA/fusiondirectory.po b/sinaps/locale/af_ZA/fusiondirectory.po
index ba948dc600..3da3c1305e 100644
--- a/sinaps/locale/af_ZA/fusiondirectory.po
+++ b/sinaps/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ar/fusiondirectory.po b/sinaps/locale/ar/fusiondirectory.po
index 74715b40d1..b7f2826bdb 100644
--- a/sinaps/locale/ar/fusiondirectory.po
+++ b/sinaps/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ca/fusiondirectory.po b/sinaps/locale/ca/fusiondirectory.po
index 29e8a11509..bf239894eb 100644
--- a/sinaps/locale/ca/fusiondirectory.po
+++ b/sinaps/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sinaps/locale/cs_CZ/fusiondirectory.po b/sinaps/locale/cs_CZ/fusiondirectory.po
index 963b641995..d2ae4e3def 100644
--- a/sinaps/locale/cs_CZ/fusiondirectory.po
+++ b/sinaps/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sinaps/locale/de/fusiondirectory.po b/sinaps/locale/de/fusiondirectory.po
index a77df35ea9..f88da72880 100644
--- a/sinaps/locale/de/fusiondirectory.po
+++ b/sinaps/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2021\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sinaps/locale/el_GR/fusiondirectory.po b/sinaps/locale/el_GR/fusiondirectory.po
index 4ef755eeed..43e30ecff9 100644
--- a/sinaps/locale/el_GR/fusiondirectory.po
+++ b/sinaps/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sinaps/locale/es/fusiondirectory.po b/sinaps/locale/es/fusiondirectory.po
index 46e41a05f5..ad0c90aff0 100644
--- a/sinaps/locale/es/fusiondirectory.po
+++ b/sinaps/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/es_CO/fusiondirectory.po b/sinaps/locale/es_CO/fusiondirectory.po
index 234fb112ed..e01e96fab6 100644
--- a/sinaps/locale/es_CO/fusiondirectory.po
+++ b/sinaps/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/es_VE/fusiondirectory.po b/sinaps/locale/es_VE/fusiondirectory.po
index f1ea7f93b8..2a0b41da32 100644
--- a/sinaps/locale/es_VE/fusiondirectory.po
+++ b/sinaps/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/fa_IR/fusiondirectory.po b/sinaps/locale/fa_IR/fusiondirectory.po
index 6492ab97de..b851f04f38 100644
--- a/sinaps/locale/fa_IR/fusiondirectory.po
+++ b/sinaps/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/fi_FI/fusiondirectory.po b/sinaps/locale/fi_FI/fusiondirectory.po
index c0eae832e5..113df2ed75 100644
--- a/sinaps/locale/fi_FI/fusiondirectory.po
+++ b/sinaps/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sinaps/locale/fr/fusiondirectory.po b/sinaps/locale/fr/fusiondirectory.po
index 69ac25d57c..1c8758df11 100644
--- a/sinaps/locale/fr/fusiondirectory.po
+++ b/sinaps/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/hu_HU/fusiondirectory.po b/sinaps/locale/hu_HU/fusiondirectory.po
index 9641ea557b..cc711d67a7 100644
--- a/sinaps/locale/hu_HU/fusiondirectory.po
+++ b/sinaps/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/id/fusiondirectory.po b/sinaps/locale/id/fusiondirectory.po
index 0eb90c76dc..64589624de 100644
--- a/sinaps/locale/id/fusiondirectory.po
+++ b/sinaps/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/it_IT/fusiondirectory.po b/sinaps/locale/it_IT/fusiondirectory.po
index 20307e75c2..c21c8acd3b 100644
--- a/sinaps/locale/it_IT/fusiondirectory.po
+++ b/sinaps/locale/it_IT/fusiondirectory.po
@@ -5,7 +5,7 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2019
-# Paola Penati <paola.penati@fusiondirectory.org>, 2019
+# Paola Penati <paola.penati@opensides.be>, 2019
 # Paola <paola.penati@fusiondirectory.org>, 2019
 # 
 #, fuzzy
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Paola <paola.penati@fusiondirectory.org>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/ja/fusiondirectory.po b/sinaps/locale/ja/fusiondirectory.po
index b7ba2b7820..b1ab07cd1e 100644
--- a/sinaps/locale/ja/fusiondirectory.po
+++ b/sinaps/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/ko/fusiondirectory.po b/sinaps/locale/ko/fusiondirectory.po
index 8bccb303c1..9ea14116e7 100644
--- a/sinaps/locale/ko/fusiondirectory.po
+++ b/sinaps/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sinaps/locale/lv/fusiondirectory.po b/sinaps/locale/lv/fusiondirectory.po
index 8ef01bdf73..c1c153a1ca 100644
--- a/sinaps/locale/lv/fusiondirectory.po
+++ b/sinaps/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nb/fusiondirectory.po b/sinaps/locale/nb/fusiondirectory.po
index ddcc2eab96..ebc34f9de3 100644
--- a/sinaps/locale/nb/fusiondirectory.po
+++ b/sinaps/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/nl/fusiondirectory.po b/sinaps/locale/nl/fusiondirectory.po
index c665fad2d7..acf0e86a9b 100644
--- a/sinaps/locale/nl/fusiondirectory.po
+++ b/sinaps/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2019\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sinaps/locale/pl/fusiondirectory.po b/sinaps/locale/pl/fusiondirectory.po
index 5258d9772a..6ef8960293 100644
--- a/sinaps/locale/pl/fusiondirectory.po
+++ b/sinaps/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sinaps/locale/pt/fusiondirectory.po b/sinaps/locale/pt/fusiondirectory.po
index 73bf7a03f1..5ea798245c 100644
--- a/sinaps/locale/pt/fusiondirectory.po
+++ b/sinaps/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/pt_BR/fusiondirectory.po b/sinaps/locale/pt_BR/fusiondirectory.po
index dd73fe4d44..f54d13c1d9 100644
--- a/sinaps/locale/pt_BR/fusiondirectory.po
+++ b/sinaps/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: include/class_sinapsDiffusionHandlerJob.inc:322
 #: include/class_sinapsDiffusionHandlerJob.inc:343
diff --git a/sinaps/locale/ru/fusiondirectory.po b/sinaps/locale/ru/fusiondirectory.po
index 3516194aad..fdf4ea4a24 100644
--- a/sinaps/locale/ru/fusiondirectory.po
+++ b/sinaps/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sinaps/locale/ru@petr1708/fusiondirectory.po b/sinaps/locale/ru@petr1708/fusiondirectory.po
index 57552ece90..a819b2b485 100644
--- a/sinaps/locale/ru@petr1708/fusiondirectory.po
+++ b/sinaps/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/sv/fusiondirectory.po b/sinaps/locale/sv/fusiondirectory.po
index 6e1b8439be..7a2b8e8c6e 100644
--- a/sinaps/locale/sv/fusiondirectory.po
+++ b/sinaps/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sinaps/locale/tr_TR/fusiondirectory.po b/sinaps/locale/tr_TR/fusiondirectory.po
index 3576e1d35d..78a3ec7da7 100644
--- a/sinaps/locale/tr_TR/fusiondirectory.po
+++ b/sinaps/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -191,7 +195,7 @@ msgstr ""
 
 #: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: config/sinaps/class_sinapsConfig.inc:182
 msgid "Password to use for Basic Auth when contacting SINAPS services"
diff --git a/sinaps/locale/ug/fusiondirectory.po b/sinaps/locale/ug/fusiondirectory.po
index bc3379dd30..0161616104 100644
--- a/sinaps/locale/ug/fusiondirectory.po
+++ b/sinaps/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sinaps/locale/vi_VN/fusiondirectory.po b/sinaps/locale/vi_VN/fusiondirectory.po
index b00a6b6718..d83456b46d 100644
--- a/sinaps/locale/vi_VN/fusiondirectory.po
+++ b/sinaps/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sinaps/locale/zh/fusiondirectory.po b/sinaps/locale/zh/fusiondirectory.po
index 4e78a28e81..50f2f0d154 100644
--- a/sinaps/locale/zh/fusiondirectory.po
+++ b/sinaps/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sinaps/locale/zh_TW/fusiondirectory.po b/sinaps/locale/zh_TW/fusiondirectory.po
index 29c97b6ffc..1c1bad9487 100644
--- a/sinaps/locale/zh_TW/fusiondirectory.po
+++ b/sinaps/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2018-12-10 21:10+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/af_ZA/fusiondirectory.po b/sogo/locale/af_ZA/fusiondirectory.po
index 283b07f344..cf313a41ca 100644
--- a/sogo/locale/af_ZA/fusiondirectory.po
+++ b/sogo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po
index 29c9671f87..3f480e6736 100644
--- a/sogo/locale/ar/fusiondirectory.po
+++ b/sogo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po
index eefee2fe1b..146e2b2392 100644
--- a/sogo/locale/ca/fusiondirectory.po
+++ b/sogo/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po
index 6bfef8c0e0..31a3e1b184 100644
--- a/sogo/locale/cs_CZ/fusiondirectory.po
+++ b/sogo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po
index d9e5bc02db..79bb3e7803 100644
--- a/sogo/locale/de/fusiondirectory.po
+++ b/sogo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po
index b8063930df..772fa19480 100644
--- a/sogo/locale/el_GR/fusiondirectory.po
+++ b/sogo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po
index 71e8849086..2cf7ec7ab1 100644
--- a/sogo/locale/es/fusiondirectory.po
+++ b/sogo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po
index 0f1f16ea04..f57824f0a9 100644
--- a/sogo/locale/es_CO/fusiondirectory.po
+++ b/sogo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po
index a4c7177e8b..641202ff3a 100644
--- a/sogo/locale/es_VE/fusiondirectory.po
+++ b/sogo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po
index 5db73d6c75..3f305ac7a2 100644
--- a/sogo/locale/fa_IR/fusiondirectory.po
+++ b/sogo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po
index 66abae9132..41c8747327 100644
--- a/sogo/locale/fi_FI/fusiondirectory.po
+++ b/sogo/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po
index 4b74d02b6c..ccfc293899 100644
--- a/sogo/locale/fr/fusiondirectory.po
+++ b/sogo/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po
index d5530cec36..8cccf1e7de 100644
--- a/sogo/locale/hu_HU/fusiondirectory.po
+++ b/sogo/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po
index 3a39bae691..fde45b1be4 100644
--- a/sogo/locale/id/fusiondirectory.po
+++ b/sogo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po
index f19c2cac9b..d169e7f85d 100644
--- a/sogo/locale/it_IT/fusiondirectory.po
+++ b/sogo/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/ja/fusiondirectory.po b/sogo/locale/ja/fusiondirectory.po
index 3d955acb0d..f6e085d6af 100644
--- a/sogo/locale/ja/fusiondirectory.po
+++ b/sogo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ko/fusiondirectory.po b/sogo/locale/ko/fusiondirectory.po
index 04d8c5a624..2f469d244d 100644
--- a/sogo/locale/ko/fusiondirectory.po
+++ b/sogo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po
index bad09e4d18..bc55141231 100644
--- a/sogo/locale/lv/fusiondirectory.po
+++ b/sogo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po
index a9d642b559..07bf541060 100644
--- a/sogo/locale/nb/fusiondirectory.po
+++ b/sogo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po
index 532600ead7..898ea74665 100644
--- a/sogo/locale/nl/fusiondirectory.po
+++ b/sogo/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po
index b713fd0f4a..556fe5362e 100644
--- a/sogo/locale/pl/fusiondirectory.po
+++ b/sogo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po
index c44ec16e2c..615063bea5 100644
--- a/sogo/locale/pt/fusiondirectory.po
+++ b/sogo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po
index f830dc1774..35df96a59b 100644
--- a/sogo/locale/pt_BR/fusiondirectory.po
+++ b/sogo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sogo/class_sogoManagement.inc:33
 #: admin/sogo/class_sogoManagement.inc:38 config/sogo/class_sogoConfig.inc:42
diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po
index e6ddc775e0..0453782fc7 100644
--- a/sogo/locale/ru/fusiondirectory.po
+++ b/sogo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po
index 81fbe84ceb..e4508a8fdd 100644
--- a/sogo/locale/ru@petr1708/fusiondirectory.po
+++ b/sogo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po
index f768245fb3..d4b7bfbf0f 100644
--- a/sogo/locale/sv/fusiondirectory.po
+++ b/sogo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sogo/locale/tr_TR/fusiondirectory.po b/sogo/locale/tr_TR/fusiondirectory.po
index af6908b580..efdc78fcd0 100644
--- a/sogo/locale/tr_TR/fusiondirectory.po
+++ b/sogo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po
index 0af960e421..2023b4bf5f 100644
--- a/sogo/locale/ug/fusiondirectory.po
+++ b/sogo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po
index 9bd22d89bb..d694344e07 100644
--- a/sogo/locale/vi_VN/fusiondirectory.po
+++ b/sogo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po
index b86c885366..9842cdb1f6 100644
--- a/sogo/locale/zh/fusiondirectory.po
+++ b/sogo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sogo/locale/zh_TW/fusiondirectory.po b/sogo/locale/zh_TW/fusiondirectory.po
index 585757232d..cbb1f4657e 100644
--- a/sogo/locale/zh_TW/fusiondirectory.po
+++ b/sogo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/af_ZA/fusiondirectory.po b/spamassassin/locale/af_ZA/fusiondirectory.po
index 12f37a475b..5bc138d827 100644
--- a/spamassassin/locale/af_ZA/fusiondirectory.po
+++ b/spamassassin/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po
index af1cd770ce..9ed5cf8a94 100644
--- a/spamassassin/locale/ar/fusiondirectory.po
+++ b/spamassassin/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po
index 6bc833d247..3835086084 100644
--- a/spamassassin/locale/ca/fusiondirectory.po
+++ b/spamassassin/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po
index 2a57c984d6..89e27334d7 100644
--- a/spamassassin/locale/cs_CZ/fusiondirectory.po
+++ b/spamassassin/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po
index 81b3cc4f9d..a1abfab34e 100644
--- a/spamassassin/locale/de/fusiondirectory.po
+++ b/spamassassin/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po
index 323f884ec1..9865f4db68 100644
--- a/spamassassin/locale/el_GR/fusiondirectory.po
+++ b/spamassassin/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po
index 8e76a23b84..10c671ae83 100644
--- a/spamassassin/locale/es/fusiondirectory.po
+++ b/spamassassin/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po
index ae7adc76fb..a3ddf3d371 100644
--- a/spamassassin/locale/es_CO/fusiondirectory.po
+++ b/spamassassin/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po
index 55fa16b79a..1b076a6c01 100644
--- a/spamassassin/locale/es_VE/fusiondirectory.po
+++ b/spamassassin/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po
index badbd12b01..cbcda0ce3e 100644
--- a/spamassassin/locale/fa_IR/fusiondirectory.po
+++ b/spamassassin/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po
index 849e47008a..ed096681cb 100644
--- a/spamassassin/locale/fi_FI/fusiondirectory.po
+++ b/spamassassin/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po
index 44d3afbd78..ae440c3e64 100644
--- a/spamassassin/locale/fr/fusiondirectory.po
+++ b/spamassassin/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po
index 8908df1cfa..62e873c4b0 100644
--- a/spamassassin/locale/hu_HU/fusiondirectory.po
+++ b/spamassassin/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po
index c5e5dd9579..79290f01c4 100644
--- a/spamassassin/locale/id/fusiondirectory.po
+++ b/spamassassin/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po
index 76b60c3b50..6fe6811b98 100644
--- a/spamassassin/locale/it_IT/fusiondirectory.po
+++ b/spamassassin/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/ja/fusiondirectory.po b/spamassassin/locale/ja/fusiondirectory.po
index 5697237423..46d0beb591 100644
--- a/spamassassin/locale/ja/fusiondirectory.po
+++ b/spamassassin/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ko/fusiondirectory.po b/spamassassin/locale/ko/fusiondirectory.po
index 7ad7bd3213..c6708014a6 100644
--- a/spamassassin/locale/ko/fusiondirectory.po
+++ b/spamassassin/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po
index eef9f87b6b..7079883825 100644
--- a/spamassassin/locale/lv/fusiondirectory.po
+++ b/spamassassin/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po
index 2dbbf5c180..82bcc7be83 100644
--- a/spamassassin/locale/nb/fusiondirectory.po
+++ b/spamassassin/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po
index c1b5260b00..e4e1eda454 100644
--- a/spamassassin/locale/nl/fusiondirectory.po
+++ b/spamassassin/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po
index a9e01034e2..bd98a1cc11 100644
--- a/spamassassin/locale/pl/fusiondirectory.po
+++ b/spamassassin/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po
index 6b1deedb7e..bdd9c2c051 100644
--- a/spamassassin/locale/pt/fusiondirectory.po
+++ b/spamassassin/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po
index d31988b8e8..8dbb272ae2 100644
--- a/spamassassin/locale/pt_BR/fusiondirectory.po
+++ b/spamassassin/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:31
 #: admin/systems/services/spam/class_serviceSpamAssassin.inc:32
diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po
index 2fcb92db6e..0df9d87568 100644
--- a/spamassassin/locale/ru/fusiondirectory.po
+++ b/spamassassin/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po
index 81b9bd115c..38b9ee032f 100644
--- a/spamassassin/locale/ru@petr1708/fusiondirectory.po
+++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po
index 2206d2b3d3..c1a348f300 100644
--- a/spamassassin/locale/sv/fusiondirectory.po
+++ b/spamassassin/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/spamassassin/locale/tr_TR/fusiondirectory.po b/spamassassin/locale/tr_TR/fusiondirectory.po
index a5cca34af7..ea7d23d61d 100644
--- a/spamassassin/locale/tr_TR/fusiondirectory.po
+++ b/spamassassin/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po
index 4ca03d59c3..8076da983c 100644
--- a/spamassassin/locale/ug/fusiondirectory.po
+++ b/spamassassin/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po
index 11fce69453..33f7171dc7 100644
--- a/spamassassin/locale/vi_VN/fusiondirectory.po
+++ b/spamassassin/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po
index 349558bee4..3f1554066d 100644
--- a/spamassassin/locale/zh/fusiondirectory.po
+++ b/spamassassin/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/spamassassin/locale/zh_TW/fusiondirectory.po b/spamassassin/locale/zh_TW/fusiondirectory.po
index 2b5c699627..5c9713dd8a 100644
--- a/spamassassin/locale/zh_TW/fusiondirectory.po
+++ b/spamassassin/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:20+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/af_ZA/fusiondirectory.po b/squid/locale/af_ZA/fusiondirectory.po
index 18593fbb67..fe0afda19e 100644
--- a/squid/locale/af_ZA/fusiondirectory.po
+++ b/squid/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po
index b76069d57f..2f9d941aec 100644
--- a/squid/locale/ar/fusiondirectory.po
+++ b/squid/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po
index ecdfcc072e..30bf3eb3b2 100644
--- a/squid/locale/ca/fusiondirectory.po
+++ b/squid/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po
index e3c0ee746f..bcdeff1757 100644
--- a/squid/locale/cs_CZ/fusiondirectory.po
+++ b/squid/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po
index 25f2b4389a..e5a7993794 100644
--- a/squid/locale/de/fusiondirectory.po
+++ b/squid/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po
index 42c2bfd882..c2c8b4be4d 100644
--- a/squid/locale/el_GR/fusiondirectory.po
+++ b/squid/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po
index 1984812390..a5073a4706 100644
--- a/squid/locale/es/fusiondirectory.po
+++ b/squid/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po
index 293d4c8157..2f9d4a55c6 100644
--- a/squid/locale/es_CO/fusiondirectory.po
+++ b/squid/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po
index 6693e20656..3069da5a53 100644
--- a/squid/locale/es_VE/fusiondirectory.po
+++ b/squid/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po
index a8c0652074..0230d75184 100644
--- a/squid/locale/fa_IR/fusiondirectory.po
+++ b/squid/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po
index 1194df55f7..004321c4c8 100644
--- a/squid/locale/fi_FI/fusiondirectory.po
+++ b/squid/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po
index 3dd8abc82d..6fec74dddc 100644
--- a/squid/locale/fr/fusiondirectory.po
+++ b/squid/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po
index 9cfcaaf557..fe06215e90 100644
--- a/squid/locale/hu_HU/fusiondirectory.po
+++ b/squid/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po
index e79e064094..0b4ab66a1f 100644
--- a/squid/locale/id/fusiondirectory.po
+++ b/squid/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po
index 697b1411b6..dae4491e6c 100644
--- a/squid/locale/it_IT/fusiondirectory.po
+++ b/squid/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/ja/fusiondirectory.po b/squid/locale/ja/fusiondirectory.po
index d671a5a2a9..e1e6139153 100644
--- a/squid/locale/ja/fusiondirectory.po
+++ b/squid/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ko/fusiondirectory.po b/squid/locale/ko/fusiondirectory.po
index 88f4773f3b..4bdd16b041 100644
--- a/squid/locale/ko/fusiondirectory.po
+++ b/squid/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po
index b4ef1fce7e..8b4b189b58 100644
--- a/squid/locale/lv/fusiondirectory.po
+++ b/squid/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po
index ad0631acc8..9be8f61156 100644
--- a/squid/locale/nb/fusiondirectory.po
+++ b/squid/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po
index 6cf5420dc1..9c8a18dc81 100644
--- a/squid/locale/nl/fusiondirectory.po
+++ b/squid/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po
index d5ac601490..24bbd80e58 100644
--- a/squid/locale/pl/fusiondirectory.po
+++ b/squid/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po
index faa417190b..afe13fae36 100644
--- a/squid/locale/pt/fusiondirectory.po
+++ b/squid/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po
index d59401d7bb..8c438826ff 100644
--- a/squid/locale/pt_BR/fusiondirectory.po
+++ b/squid/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/squid/class_proxyAccount.inc:65
 msgid "Proxy"
diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po
index dcc8a5bcf5..71f4496e82 100644
--- a/squid/locale/ru/fusiondirectory.po
+++ b/squid/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po
index 95bb4fa6cc..51a4e9eac9 100644
--- a/squid/locale/ru@petr1708/fusiondirectory.po
+++ b/squid/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po
index a66c43cfc6..c8ecacfa35 100644
--- a/squid/locale/sv/fusiondirectory.po
+++ b/squid/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/squid/locale/tr_TR/fusiondirectory.po b/squid/locale/tr_TR/fusiondirectory.po
index 0705d2defb..b09975ac33 100644
--- a/squid/locale/tr_TR/fusiondirectory.po
+++ b/squid/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po
index ae6983ac14..1b5037cd0c 100644
--- a/squid/locale/ug/fusiondirectory.po
+++ b/squid/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po
index 0b6095660d..c6c91f6231 100644
--- a/squid/locale/vi_VN/fusiondirectory.po
+++ b/squid/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po
index 2f1cdfe28c..ba0c4eef5d 100644
--- a/squid/locale/zh/fusiondirectory.po
+++ b/squid/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/squid/locale/zh_TW/fusiondirectory.po b/squid/locale/zh_TW/fusiondirectory.po
index 5103d641d6..f753dec823 100644
--- a/squid/locale/zh_TW/fusiondirectory.po
+++ b/squid/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/af_ZA/fusiondirectory.po b/ssh/locale/af_ZA/fusiondirectory.po
index bf54358ddf..664bf11c21 100644
--- a/ssh/locale/af_ZA/fusiondirectory.po
+++ b/ssh/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po
index 800dcafee2..a81118c3d2 100644
--- a/ssh/locale/ar/fusiondirectory.po
+++ b/ssh/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po
index c9ab65bafa..c7138f2489 100644
--- a/ssh/locale/ca/fusiondirectory.po
+++ b/ssh/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po
index 4191f782c4..d37e5bdd4c 100644
--- a/ssh/locale/cs_CZ/fusiondirectory.po
+++ b/ssh/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po
index 1d025d7a9e..864d6842d1 100644
--- a/ssh/locale/de/fusiondirectory.po
+++ b/ssh/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po
index 5ad17bcc3f..3d85886e04 100644
--- a/ssh/locale/el_GR/fusiondirectory.po
+++ b/ssh/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po
index 2434962ac3..56ac7fd497 100644
--- a/ssh/locale/es/fusiondirectory.po
+++ b/ssh/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po
index 631ef2825c..5ea5d342b0 100644
--- a/ssh/locale/es_CO/fusiondirectory.po
+++ b/ssh/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po
index fb34642b98..0112be4025 100644
--- a/ssh/locale/es_VE/fusiondirectory.po
+++ b/ssh/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po
index 0c6befd2c1..dcc7352fa8 100644
--- a/ssh/locale/fa_IR/fusiondirectory.po
+++ b/ssh/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po
index 7c75650837..191de58fa0 100644
--- a/ssh/locale/fi_FI/fusiondirectory.po
+++ b/ssh/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po
index 7cd04bfcc7..83bef99754 100644
--- a/ssh/locale/fr/fusiondirectory.po
+++ b/ssh/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po
index ad1a25d7cb..2a1d53e4b7 100644
--- a/ssh/locale/hu_HU/fusiondirectory.po
+++ b/ssh/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po
index 966f678335..04242650b3 100644
--- a/ssh/locale/id/fusiondirectory.po
+++ b/ssh/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po
index 8228b6496a..4d44efa9ba 100644
--- a/ssh/locale/it_IT/fusiondirectory.po
+++ b/ssh/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/ja/fusiondirectory.po b/ssh/locale/ja/fusiondirectory.po
index 8a55188bc3..b0e07860dc 100644
--- a/ssh/locale/ja/fusiondirectory.po
+++ b/ssh/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/ko/fusiondirectory.po b/ssh/locale/ko/fusiondirectory.po
index daefea3f3a..f344ca23d5 100644
--- a/ssh/locale/ko/fusiondirectory.po
+++ b/ssh/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po
index 8350a8268f..f1fefdf56f 100644
--- a/ssh/locale/lv/fusiondirectory.po
+++ b/ssh/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po
index 9f9dcc162f..a23d725455 100644
--- a/ssh/locale/nb/fusiondirectory.po
+++ b/ssh/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po
index acc6680c96..be47762415 100644
--- a/ssh/locale/nl/fusiondirectory.po
+++ b/ssh/locale/nl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po
index 703c2d8eba..effce449d4 100644
--- a/ssh/locale/pl/fusiondirectory.po
+++ b/ssh/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po
index a730cd5b31..dd46f3dd6c 100644
--- a/ssh/locale/pt/fusiondirectory.po
+++ b/ssh/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po
index e0aa71719b..81effd2fae 100644
--- a/ssh/locale/pt_BR/fusiondirectory.po
+++ b/ssh/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/ssh/class_sshAccount.inc:61
 msgid "Upload error"
diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po
index 99d5edaafe..8fc7e06c67 100644
--- a/ssh/locale/ru/fusiondirectory.po
+++ b/ssh/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po
index 4a01dc8abc..9359bb3eb5 100644
--- a/ssh/locale/ru@petr1708/fusiondirectory.po
+++ b/ssh/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po
index e8f9d295dd..0567c4ebf0 100644
--- a/ssh/locale/sv/fusiondirectory.po
+++ b/ssh/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/tr_TR/fusiondirectory.po b/ssh/locale/tr_TR/fusiondirectory.po
index 56f0e2df30..cb8e486515 100644
--- a/ssh/locale/tr_TR/fusiondirectory.po
+++ b/ssh/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po
index 400c745033..bf38decdb8 100644
--- a/ssh/locale/ug/fusiondirectory.po
+++ b/ssh/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po
index 0b70857085..32e435f28b 100644
--- a/ssh/locale/vi_VN/fusiondirectory.po
+++ b/ssh/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po
index 46516a5b19..06c312664a 100644
--- a/ssh/locale/zh/fusiondirectory.po
+++ b/ssh/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/ssh/locale/zh_TW/fusiondirectory.po b/ssh/locale/zh_TW/fusiondirectory.po
index 7d35caa8e4..e9ca5b09aa 100644
--- a/ssh/locale/zh_TW/fusiondirectory.po
+++ b/ssh/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/af_ZA/fusiondirectory.po b/subcontracting/locale/af_ZA/fusiondirectory.po
index 94cc78708a..b218ac001c 100644
--- a/subcontracting/locale/af_ZA/fusiondirectory.po
+++ b/subcontracting/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po
index a1156503d5..8723b92152 100644
--- a/subcontracting/locale/ar/fusiondirectory.po
+++ b/subcontracting/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po
index 78d96b47ab..83210df479 100644
--- a/subcontracting/locale/ca/fusiondirectory.po
+++ b/subcontracting/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po
index 3672f25862..215ca8d7eb 100644
--- a/subcontracting/locale/cs_CZ/fusiondirectory.po
+++ b/subcontracting/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po
index 2e580cde01..fbe6b0d305 100644
--- a/subcontracting/locale/de/fusiondirectory.po
+++ b/subcontracting/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po
index c66c958fba..3ff2464fa5 100644
--- a/subcontracting/locale/el_GR/fusiondirectory.po
+++ b/subcontracting/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po
index cad288fc19..9133bc6c4a 100644
--- a/subcontracting/locale/es/fusiondirectory.po
+++ b/subcontracting/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po
index a6abe8f6ab..ff5d86168b 100644
--- a/subcontracting/locale/es_CO/fusiondirectory.po
+++ b/subcontracting/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po
index 99e1a62c28..1529f376f1 100644
--- a/subcontracting/locale/es_VE/fusiondirectory.po
+++ b/subcontracting/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po
index 26d9d4f59c..faf698e871 100644
--- a/subcontracting/locale/fa_IR/fusiondirectory.po
+++ b/subcontracting/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po
index 7aae1fac08..02f0c2579d 100644
--- a/subcontracting/locale/fi_FI/fusiondirectory.po
+++ b/subcontracting/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po
index dd5d3b4013..24cb13d403 100644
--- a/subcontracting/locale/fr/fusiondirectory.po
+++ b/subcontracting/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po
index cc830118cd..1639d3875e 100644
--- a/subcontracting/locale/hu_HU/fusiondirectory.po
+++ b/subcontracting/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po
index 9043624888..73fa4dbadc 100644
--- a/subcontracting/locale/id/fusiondirectory.po
+++ b/subcontracting/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po
index c93865ccde..43550405e5 100644
--- a/subcontracting/locale/it_IT/fusiondirectory.po
+++ b/subcontracting/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/ja/fusiondirectory.po b/subcontracting/locale/ja/fusiondirectory.po
index d979a023ac..ff1ec74d5f 100644
--- a/subcontracting/locale/ja/fusiondirectory.po
+++ b/subcontracting/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ko/fusiondirectory.po b/subcontracting/locale/ko/fusiondirectory.po
index 1c28e99fe3..4c4f17341e 100644
--- a/subcontracting/locale/ko/fusiondirectory.po
+++ b/subcontracting/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po
index 3103f9046e..0c75c78ddc 100644
--- a/subcontracting/locale/lv/fusiondirectory.po
+++ b/subcontracting/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po
index 9bdf60656a..8612fc2dfd 100644
--- a/subcontracting/locale/nb/fusiondirectory.po
+++ b/subcontracting/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po
index 755e3d24b2..0e836b5985 100644
--- a/subcontracting/locale/nl/fusiondirectory.po
+++ b/subcontracting/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po
index b10420ac3c..125cdb8dc3 100644
--- a/subcontracting/locale/pl/fusiondirectory.po
+++ b/subcontracting/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po
index ad02732ed8..44d4b238c2 100644
--- a/subcontracting/locale/pt/fusiondirectory.po
+++ b/subcontracting/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po
index a5f6c13230..17e2de62d3 100644
--- a/subcontracting/locale/pt_BR/fusiondirectory.po
+++ b/subcontracting/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: personal/subcontracting/class_subContracting.inc:33
 msgid "Subcontracting"
diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po
index 01e6787642..f014ed6685 100644
--- a/subcontracting/locale/ru/fusiondirectory.po
+++ b/subcontracting/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po
index 8387f6f41e..4b47f65eaa 100644
--- a/subcontracting/locale/ru@petr1708/fusiondirectory.po
+++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po
index f4daa9abb8..6cd3b8e09c 100644
--- a/subcontracting/locale/sv/fusiondirectory.po
+++ b/subcontracting/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/subcontracting/locale/tr_TR/fusiondirectory.po b/subcontracting/locale/tr_TR/fusiondirectory.po
index 7d73157786..a9b5cedd80 100644
--- a/subcontracting/locale/tr_TR/fusiondirectory.po
+++ b/subcontracting/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po
index 85497c7039..905adc10cd 100644
--- a/subcontracting/locale/ug/fusiondirectory.po
+++ b/subcontracting/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po
index a0fea1f7d3..0da58656bc 100644
--- a/subcontracting/locale/vi_VN/fusiondirectory.po
+++ b/subcontracting/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po
index 3a2a7f4be0..bb36718299 100644
--- a/subcontracting/locale/zh/fusiondirectory.po
+++ b/subcontracting/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/subcontracting/locale/zh_TW/fusiondirectory.po b/subcontracting/locale/zh_TW/fusiondirectory.po
index 6ce906280a..799716670a 100644
--- a/subcontracting/locale/zh_TW/fusiondirectory.po
+++ b/subcontracting/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:45+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/af_ZA/fusiondirectory.po b/sudo/locale/af_ZA/fusiondirectory.po
index 64c135b8c6..74978fa651 100644
--- a/sudo/locale/af_ZA/fusiondirectory.po
+++ b/sudo/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po
index 35bfc8cbc9..688726ac5f 100644
--- a/sudo/locale/ar/fusiondirectory.po
+++ b/sudo/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po
index 068b2e078b..2b1fa8c246 100644
--- a/sudo/locale/ca/fusiondirectory.po
+++ b/sudo/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po
index ac05ac062c..015ec5691e 100644
--- a/sudo/locale/cs_CZ/fusiondirectory.po
+++ b/sudo/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po
index 75680e80e0..7078a9e416 100644
--- a/sudo/locale/de/fusiondirectory.po
+++ b/sudo/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po
index 5acb121f76..93e211d1d6 100644
--- a/sudo/locale/el_GR/fusiondirectory.po
+++ b/sudo/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po
index aaf338c07b..27112f22bf 100644
--- a/sudo/locale/es/fusiondirectory.po
+++ b/sudo/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po
index 97683235b6..5e49e2f99a 100644
--- a/sudo/locale/es_CO/fusiondirectory.po
+++ b/sudo/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po
index 20afffa261..2e5d7ecc6a 100644
--- a/sudo/locale/es_VE/fusiondirectory.po
+++ b/sudo/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po
index 13270e1723..7d2aa17947 100644
--- a/sudo/locale/fa_IR/fusiondirectory.po
+++ b/sudo/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po
index d30bf085ff..7ec8b8240c 100644
--- a/sudo/locale/fi_FI/fusiondirectory.po
+++ b/sudo/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po
index 1a221403af..5fa8814468 100644
--- a/sudo/locale/fr/fusiondirectory.po
+++ b/sudo/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po
index 7666fdd315..a2726cb4b3 100644
--- a/sudo/locale/hu_HU/fusiondirectory.po
+++ b/sudo/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po
index 9b5f10b2ba..0ae018c1f1 100644
--- a/sudo/locale/id/fusiondirectory.po
+++ b/sudo/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po
index b4e895b933..b92be2df30 100644
--- a/sudo/locale/it_IT/fusiondirectory.po
+++ b/sudo/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/ja/fusiondirectory.po b/sudo/locale/ja/fusiondirectory.po
index 6a0dad7316..8876e85062 100644
--- a/sudo/locale/ja/fusiondirectory.po
+++ b/sudo/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ko/fusiondirectory.po b/sudo/locale/ko/fusiondirectory.po
index e88d74c53f..f7a6db7500 100644
--- a/sudo/locale/ko/fusiondirectory.po
+++ b/sudo/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po
index 25992b3487..28c504db69 100644
--- a/sudo/locale/lv/fusiondirectory.po
+++ b/sudo/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po
index b8df116e94..394fb31aad 100644
--- a/sudo/locale/nb/fusiondirectory.po
+++ b/sudo/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po
index f5c177d93e..357d458756 100644
--- a/sudo/locale/nl/fusiondirectory.po
+++ b/sudo/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po
index 0923954525..7596ab8bf3 100644
--- a/sudo/locale/pl/fusiondirectory.po
+++ b/sudo/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po
index 19c5ff5bae..c19b1547a1 100644
--- a/sudo/locale/pt/fusiondirectory.po
+++ b/sudo/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po
index 636e6dbb05..7c1f994bc2 100644
--- a/sudo/locale/pt_BR/fusiondirectory.po
+++ b/sudo/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/sudo/class_sudoManagement.inc:32 admin/sudo/class_sudoGeneric.inc:124
 #: config/sudo/class_sudoConfig.inc:42
diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po
index 2e0671e69e..67e571fbaf 100644
--- a/sudo/locale/ru/fusiondirectory.po
+++ b/sudo/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po
index 563bebcf31..a9363ef6dd 100644
--- a/sudo/locale/ru@petr1708/fusiondirectory.po
+++ b/sudo/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po
index da8729412e..8a5fd9022c 100644
--- a/sudo/locale/sv/fusiondirectory.po
+++ b/sudo/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sudo/locale/tr_TR/fusiondirectory.po b/sudo/locale/tr_TR/fusiondirectory.po
index cf890fce70..781b20575e 100644
--- a/sudo/locale/tr_TR/fusiondirectory.po
+++ b/sudo/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po
index 309a1d579a..565244cdf9 100644
--- a/sudo/locale/ug/fusiondirectory.po
+++ b/sudo/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po
index 4a0ad9cc47..76cdca81b0 100644
--- a/sudo/locale/vi_VN/fusiondirectory.po
+++ b/sudo/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po
index 873ab49631..2ef12d2da0 100644
--- a/sudo/locale/zh/fusiondirectory.po
+++ b/sudo/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sudo/locale/zh_TW/fusiondirectory.po b/sudo/locale/zh_TW/fusiondirectory.po
index 1e770c16c5..336dba49ad 100644
--- a/sudo/locale/zh_TW/fusiondirectory.po
+++ b/sudo/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:21+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/af_ZA/fusiondirectory.po b/supann/locale/af_ZA/fusiondirectory.po
index a6d4160539..4c91b5abd7 100644
--- a/supann/locale/af_ZA/fusiondirectory.po
+++ b/supann/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po
index 76a6fc99f1..917cafba71 100644
--- a/supann/locale/ar/fusiondirectory.po
+++ b/supann/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po
index e6aa65e94e..220347cd89 100644
--- a/supann/locale/ca/fusiondirectory.po
+++ b/supann/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po
index 8fa762d02b..e2c60f2b59 100644
--- a/supann/locale/cs_CZ/fusiondirectory.po
+++ b/supann/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2019\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po
index 5fda0be1b0..e11837d653 100644
--- a/supann/locale/de/fusiondirectory.po
+++ b/supann/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po
index 1077c3cf46..10845e5993 100644
--- a/supann/locale/el_GR/fusiondirectory.po
+++ b/supann/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po
index 9f81620e95..37fcda4ebc 100644
--- a/supann/locale/es/fusiondirectory.po
+++ b/supann/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po
index 06538e82c3..ac658ce6c4 100644
--- a/supann/locale/es_CO/fusiondirectory.po
+++ b/supann/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po
index 5de30c480b..65dcccfe04 100644
--- a/supann/locale/es_VE/fusiondirectory.po
+++ b/supann/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po
index 4cf7e10948..f68247e90a 100644
--- a/supann/locale/fa_IR/fusiondirectory.po
+++ b/supann/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po
index 0bde0dbdae..df2ab8e6ea 100644
--- a/supann/locale/fi_FI/fusiondirectory.po
+++ b/supann/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po
index 8e2684b692..04e621fdf3 100644
--- a/supann/locale/fr/fusiondirectory.po
+++ b/supann/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2019\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po
index 5bbe32419e..3a15163084 100644
--- a/supann/locale/hu_HU/fusiondirectory.po
+++ b/supann/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po
index b4cf94ac35..4475bd0b42 100644
--- a/supann/locale/id/fusiondirectory.po
+++ b/supann/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po
index 57e6e06b30..c1f1f1646c 100644
--- a/supann/locale/it_IT/fusiondirectory.po
+++ b/supann/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2019
+# Paola Penati <paola.penati@opensides.be>, 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2019\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2019\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/ja/fusiondirectory.po b/supann/locale/ja/fusiondirectory.po
index 9b2f34b759..3d4a968fdc 100644
--- a/supann/locale/ja/fusiondirectory.po
+++ b/supann/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ko/fusiondirectory.po b/supann/locale/ko/fusiondirectory.po
index 767ff0e2e2..bc09f322ec 100644
--- a/supann/locale/ko/fusiondirectory.po
+++ b/supann/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2021\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po
index 1667313758..6b57820e21 100644
--- a/supann/locale/lv/fusiondirectory.po
+++ b/supann/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po
index a3a877ed3d..9e59d4b16d 100644
--- a/supann/locale/nb/fusiondirectory.po
+++ b/supann/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po
index d15e868fc9..5cae7ec6ad 100644
--- a/supann/locale/nl/fusiondirectory.po
+++ b/supann/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po
index 022bc53478..4a8cd1474c 100644
--- a/supann/locale/pl/fusiondirectory.po
+++ b/supann/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po
index fff4b9a06c..5b2548747a 100644
--- a/supann/locale/pt/fusiondirectory.po
+++ b/supann/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po
index 6d05d63eb6..fd49bbe8f9 100644
--- a/supann/locale/pt_BR/fusiondirectory.po
+++ b/supann/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/supannStructures/class_etablissement.inc:32
 #: personal/supann/class_supannAccount.inc:335
diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po
index e44dab1fb3..f3753b8d7b 100644
--- a/supann/locale/ru/fusiondirectory.po
+++ b/supann/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po
index 40ee76bbab..545306a245 100644
--- a/supann/locale/ru@petr1708/fusiondirectory.po
+++ b/supann/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po
index 7dda7afed5..f353d11e96 100644
--- a/supann/locale/sv/fusiondirectory.po
+++ b/supann/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/supann/locale/tr_TR/fusiondirectory.po b/supann/locale/tr_TR/fusiondirectory.po
index eb8de33150..0102cdea4f 100644
--- a/supann/locale/tr_TR/fusiondirectory.po
+++ b/supann/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po
index 241f5d445c..ede25d8cd3 100644
--- a/supann/locale/ug/fusiondirectory.po
+++ b/supann/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po
index bc08ba3a3b..15de6a6cd5 100644
--- a/supann/locale/vi_VN/fusiondirectory.po
+++ b/supann/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po
index 45f9b1eec5..013657bb10 100644
--- a/supann/locale/zh/fusiondirectory.po
+++ b/supann/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/supann/locale/zh_TW/fusiondirectory.po b/supann/locale/zh_TW/fusiondirectory.po
index ea5877af41..004298656d 100644
--- a/supann/locale/zh_TW/fusiondirectory.po
+++ b/supann/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/af_ZA/fusiondirectory.po b/sympa/locale/af_ZA/fusiondirectory.po
index c9f3c395f1..bb9db5124d 100644
--- a/sympa/locale/af_ZA/fusiondirectory.po
+++ b/sympa/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po
index 1557e31997..eae6c2e9a7 100644
--- a/sympa/locale/ar/fusiondirectory.po
+++ b/sympa/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po
index f5e5636568..ad2e7e587c 100644
--- a/sympa/locale/ca/fusiondirectory.po
+++ b/sympa/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po
index de0d2df5ee..9f863d7b94 100644
--- a/sympa/locale/cs_CZ/fusiondirectory.po
+++ b/sympa/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po
index 75ee778abd..22c206979b 100644
--- a/sympa/locale/de/fusiondirectory.po
+++ b/sympa/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po
index 61bdff2670..478fbadba1 100644
--- a/sympa/locale/el_GR/fusiondirectory.po
+++ b/sympa/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po
index f0935349be..b896866913 100644
--- a/sympa/locale/es/fusiondirectory.po
+++ b/sympa/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po
index fe69f86e41..93ad57ae76 100644
--- a/sympa/locale/es_CO/fusiondirectory.po
+++ b/sympa/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po
index 6da47a3c2b..d376e12c05 100644
--- a/sympa/locale/es_VE/fusiondirectory.po
+++ b/sympa/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po
index 4df19c30e5..655817631f 100644
--- a/sympa/locale/fa_IR/fusiondirectory.po
+++ b/sympa/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po
index dd8ab6fc11..fed3047d70 100644
--- a/sympa/locale/fi_FI/fusiondirectory.po
+++ b/sympa/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po
index 72b6d18f4d..51e68d450d 100644
--- a/sympa/locale/fr/fusiondirectory.po
+++ b/sympa/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po
index 037a4ae480..ccf0f6f833 100644
--- a/sympa/locale/hu_HU/fusiondirectory.po
+++ b/sympa/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po
index 5f5c45eb8a..cc2473aaa1 100644
--- a/sympa/locale/id/fusiondirectory.po
+++ b/sympa/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po
index f19958b014..7a9488c4bc 100644
--- a/sympa/locale/it_IT/fusiondirectory.po
+++ b/sympa/locale/it_IT/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/ja/fusiondirectory.po b/sympa/locale/ja/fusiondirectory.po
index 78e07e9c14..461655ec84 100644
--- a/sympa/locale/ja/fusiondirectory.po
+++ b/sympa/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/ko/fusiondirectory.po b/sympa/locale/ko/fusiondirectory.po
index 11b1dc700a..f80856d0cc 100644
--- a/sympa/locale/ko/fusiondirectory.po
+++ b/sympa/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po
index a9bf737c5c..73759c7aad 100644
--- a/sympa/locale/lv/fusiondirectory.po
+++ b/sympa/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po
index bed388f21a..4c23e6f105 100644
--- a/sympa/locale/nb/fusiondirectory.po
+++ b/sympa/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po
index 4652ba8b3d..ed82a4ce43 100644
--- a/sympa/locale/nl/fusiondirectory.po
+++ b/sympa/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po
index e866442726..3cc560d806 100644
--- a/sympa/locale/pl/fusiondirectory.po
+++ b/sympa/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po
index 06324c07b7..67f7235c90 100644
--- a/sympa/locale/pt/fusiondirectory.po
+++ b/sympa/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po
index d88d990f87..da941ee87f 100644
--- a/sympa/locale/pt_BR/fusiondirectory.po
+++ b/sympa/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:31
 #: admin/systems/services/sympa/class_serviceSympa.inc:32
diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po
index ce7b52b677..27d372121c 100644
--- a/sympa/locale/ru/fusiondirectory.po
+++ b/sympa/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po
index fe65625d3b..b8e09d32d7 100644
--- a/sympa/locale/ru@petr1708/fusiondirectory.po
+++ b/sympa/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po
index 607a436a48..992de0d303 100644
--- a/sympa/locale/sv/fusiondirectory.po
+++ b/sympa/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/sympa/locale/tr_TR/fusiondirectory.po b/sympa/locale/tr_TR/fusiondirectory.po
index 7384b1507e..ae535d14fe 100644
--- a/sympa/locale/tr_TR/fusiondirectory.po
+++ b/sympa/locale/tr_TR/fusiondirectory.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the FusionDirectory package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
+# Translators:
+# abc Def <hdogan1974@gmail.com>, 2021
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -49,7 +53,7 @@ msgstr ""
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:57
 msgid "Password"
-msgstr ""
+msgstr "Parola"
 
 #: admin/systems/services/sympa/class_serviceSympa.inc:57
 msgid "Password to access sympa server SOAP API."
diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po
index 46de90ea91..f9b0d5fa11 100644
--- a/sympa/locale/ug/fusiondirectory.po
+++ b/sympa/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po
index 920c63dee1..baec66d303 100644
--- a/sympa/locale/vi_VN/fusiondirectory.po
+++ b/sympa/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po
index bad9ea0cdf..bb6f70ffa1 100644
--- a/sympa/locale/zh/fusiondirectory.po
+++ b/sympa/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/sympa/locale/zh_TW/fusiondirectory.po b/sympa/locale/zh_TW/fusiondirectory.po
index b7b0b520eb..2f63f8fdcb 100644
--- a/sympa/locale/zh_TW/fusiondirectory.po
+++ b/sympa/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:22+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/af_ZA/fusiondirectory.po b/systems/locale/af_ZA/fusiondirectory.po
index c63777d25b..23053f59f5 100644
--- a/systems/locale/af_ZA/fusiondirectory.po
+++ b/systems/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po
index 9e15a356da..27a529d7e0 100644
--- a/systems/locale/ar/fusiondirectory.po
+++ b/systems/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po
index 4411c4d458..40d887a055 100644
--- a/systems/locale/ca/fusiondirectory.po
+++ b/systems/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po
index 0f893de974..6f913e26ae 100644
--- a/systems/locale/cs_CZ/fusiondirectory.po
+++ b/systems/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po
index c8b74b1fda..9af5162498 100644
--- a/systems/locale/de/fusiondirectory.po
+++ b/systems/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po
index e12d769bf4..4b3c9d6cbb 100644
--- a/systems/locale/el_GR/fusiondirectory.po
+++ b/systems/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po
index 948c8e24ae..2788582ff6 100644
--- a/systems/locale/es/fusiondirectory.po
+++ b/systems/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1051,6 +1051,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1065,3 +1066,4 @@ msgid_plural ""
 "argonaut server configured!"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po
index bbb2a1f157..540db382f5 100644
--- a/systems/locale/es_CO/fusiondirectory.po
+++ b/systems/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1050,6 +1050,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1064,3 +1065,4 @@ msgid_plural ""
 "argonaut server configured!"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po
index eec5650553..d9c7222e42 100644
--- a/systems/locale/es_VE/fusiondirectory.po
+++ b/systems/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1051,6 +1051,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1065,3 +1066,4 @@ msgid_plural ""
 "argonaut server configured!"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po
index ed81ca6fcc..bfe5d0aece 100644
--- a/systems/locale/fa_IR/fusiondirectory.po
+++ b/systems/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po
index e7439c66e0..1b9fefe953 100644
--- a/systems/locale/fi_FI/fusiondirectory.po
+++ b/systems/locale/fi_FI/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Dina Solveig Jalkanen, 2017\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po
index 3ab46bf3fc..c4d4841de9 100644
--- a/systems/locale/fr/fusiondirectory.po
+++ b/systems/locale/fr/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1070,6 +1070,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] "Seul un système est configure pour exécuter un client Argonaut"
 msgstr[1] "%1 systèmes sont configurés pour exécuter un client Argonaut."
+msgstr[2] "%1 systèmes sont configurés pour exécuter un client Argonaut."
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1088,3 +1089,6 @@ msgstr[0] ""
 msgstr[1] ""
 "%1 systèmes sont configurés pour exécuter un client Argonaut, mais il n’y a "
 "pas de serveur Argonaut configuré !"
+msgstr[2] ""
+"%1 systèmes sont configurés pour exécuter un client Argonaut, mais il n’y a "
+"pas de serveur Argonaut configuré !"
diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po
index f230bc7ab7..6c282213a3 100644
--- a/systems/locale/hu_HU/fusiondirectory.po
+++ b/systems/locale/hu_HU/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po
index 7c0e6c9283..85d5b89e1a 100644
--- a/systems/locale/id/fusiondirectory.po
+++ b/systems/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po
index 3ad413473c..72e348ab7b 100644
--- a/systems/locale/it_IT/fusiondirectory.po
+++ b/systems/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2018
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1072,6 +1072,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] "Un solo sistema è configurato per eseguire un client di Argonaut."
 msgstr[1] "%1 sistemi sono configurati per eseguire un client di Argonaut."
+msgstr[2] "%1 sistemi sono configurati per eseguire un client di Argonaut."
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1090,3 +1091,6 @@ msgstr[0] ""
 msgstr[1] ""
 "%1 sistemi sono configurati per l'esecuzione di un client Argonaut, ma "
 "nessun server Argonaut é stato configurato!"
+msgstr[2] ""
+"%1 sistemi sono configurati per l'esecuzione di un client Argonaut, ma "
+"nessun server Argonaut é stato configurato!"
diff --git a/systems/locale/ja/fusiondirectory.po b/systems/locale/ja/fusiondirectory.po
index 048f4f4dca..92543314f4 100644
--- a/systems/locale/ja/fusiondirectory.po
+++ b/systems/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/ko/fusiondirectory.po b/systems/locale/ko/fusiondirectory.po
index e35c5f2617..ca03c252b7 100644
--- a/systems/locale/ko/fusiondirectory.po
+++ b/systems/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po
index 36503ae235..e8daa7b0d7 100644
--- a/systems/locale/lv/fusiondirectory.po
+++ b/systems/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po
index d466539cac..59c312dc21 100644
--- a/systems/locale/nb/fusiondirectory.po
+++ b/systems/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po
index 6a4e8c2396..87b3c839ee 100644
--- a/systems/locale/nl/fusiondirectory.po
+++ b/systems/locale/nl/fusiondirectory.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po
index 0d65e82a3e..9984d79388 100644
--- a/systems/locale/pl/fusiondirectory.po
+++ b/systems/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po
index ccf6aa6419..9852199ab9 100644
--- a/systems/locale/pt/fusiondirectory.po
+++ b/systems/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1050,6 +1050,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1064,3 +1065,4 @@ msgid_plural ""
 "argonaut server configured!"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po
index 0be1266de2..9001cfd946 100644
--- a/systems/locale/pt_BR/fusiondirectory.po
+++ b/systems/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/class_phoneGeneric.inc:32
 #: admin/systems/class_phoneGeneric.inc:36
@@ -1050,6 +1050,7 @@ msgid "Only one system is configured to run an argonaut client."
 msgid_plural "%1 systems are configured to run an argonaut client."
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
 #: addons/dashboard/systems_stats.tpl.c:11
 msgid "But no system is configured to run an argonaut client!"
@@ -1064,3 +1065,4 @@ msgid_plural ""
 "argonaut server configured!"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po
index b5b87043fe..3cf5228902 100644
--- a/systems/locale/ru/fusiondirectory.po
+++ b/systems/locale/ru/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po
index d2c842218e..2c5bc1469e 100644
--- a/systems/locale/ru@petr1708/fusiondirectory.po
+++ b/systems/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po
index 942d759ff9..8e3684734a 100644
--- a/systems/locale/sv/fusiondirectory.po
+++ b/systems/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/systems/locale/tr_TR/fusiondirectory.po b/systems/locale/tr_TR/fusiondirectory.po
index 13e6c851b0..7c470e5a79 100644
--- a/systems/locale/tr_TR/fusiondirectory.po
+++ b/systems/locale/tr_TR/fusiondirectory.po
@@ -4,16 +4,16 @@
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 # 
 # Translators:
-# abc Def <hdogan1974@gmail.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2021
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2021\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -144,11 +144,11 @@ msgstr ""
 
 #: admin/systems/serverService-list.xml:54 admin/systems/system-list.xml:90
 msgid "Create"
-msgstr ""
+msgstr "OluÅŸtur"
 
 #: admin/systems/serverService-list.xml:69 admin/systems/system-list.xml:127
 msgid "Remove"
-msgstr ""
+msgstr "Kaldır"
 
 #: admin/systems/serverService-list.xml:89
 msgid "Get status"
@@ -459,7 +459,7 @@ msgstr ""
 #: admin/systems/services/shares/class_serviceShare.inc:59
 #: admin/systems/class_systemImport.inc:47
 msgid "Type"
-msgstr ""
+msgstr "Tür"
 
 #: admin/systems/services/shares/class_serviceShare.inc:59
 msgid "Type of share"
@@ -502,7 +502,7 @@ msgstr ""
 
 #: admin/systems/services/shares/class_serviceShare.inc:112
 msgid "Warning"
-msgstr ""
+msgstr "İkaz"
 
 #: admin/systems/services/shares/class_serviceShare.inc:112
 #, php-format
@@ -931,7 +931,7 @@ msgstr ""
 
 #: config/systems/class_systemsPluginConfig.inc:100
 msgid "Label"
-msgstr ""
+msgstr "Etiket"
 
 #: config/systems/class_systemsPluginConfig.inc:100
 msgid "The encoding displayed name"
diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po
index 0f0515346e..74e0cfe007 100644
--- a/systems/locale/ug/fusiondirectory.po
+++ b/systems/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po
index c710fa85fd..23b241632b 100644
--- a/systems/locale/vi_VN/fusiondirectory.po
+++ b/systems/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po
index 436005895f..73896d41b7 100644
--- a/systems/locale/zh/fusiondirectory.po
+++ b/systems/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2018\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/systems/locale/zh_TW/fusiondirectory.po b/systems/locale/zh_TW/fusiondirectory.po
index ff82826ae4..bbe1e9b021 100644
--- a/systems/locale/zh_TW/fusiondirectory.po
+++ b/systems/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/af_ZA/fusiondirectory.po b/user-reminder/locale/af_ZA/fusiondirectory.po
index 3bd6ac80f1..72b39632cc 100644
--- a/user-reminder/locale/af_ZA/fusiondirectory.po
+++ b/user-reminder/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po
index 1fb6bc9ec7..5f2176c6a4 100644
--- a/user-reminder/locale/ar/fusiondirectory.po
+++ b/user-reminder/locale/ar/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po
index aec4c07565..3f24ff397a 100644
--- a/user-reminder/locale/ca/fusiondirectory.po
+++ b/user-reminder/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po
index fdf113ddce..c6a7f66e55 100644
--- a/user-reminder/locale/cs_CZ/fusiondirectory.po
+++ b/user-reminder/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po
index bd090cf056..9c50a0be65 100644
--- a/user-reminder/locale/de/fusiondirectory.po
+++ b/user-reminder/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po
index 7d924d3a21..f3a311263a 100644
--- a/user-reminder/locale/el_GR/fusiondirectory.po
+++ b/user-reminder/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po
index 83eb018f4d..e8fed1264a 100644
--- a/user-reminder/locale/es/fusiondirectory.po
+++ b/user-reminder/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po
index d9a6b66638..1987c9339c 100644
--- a/user-reminder/locale/es_CO/fusiondirectory.po
+++ b/user-reminder/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po
index 1a1ee85e5a..180b98539f 100644
--- a/user-reminder/locale/es_VE/fusiondirectory.po
+++ b/user-reminder/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po
index 5e92efb462..86c1910bd8 100644
--- a/user-reminder/locale/fa_IR/fusiondirectory.po
+++ b/user-reminder/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po
index da93770c06..1cb813956c 100644
--- a/user-reminder/locale/fi_FI/fusiondirectory.po
+++ b/user-reminder/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po
index 7b46c1508c..4598b2050e 100644
--- a/user-reminder/locale/fr/fusiondirectory.po
+++ b/user-reminder/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po
index 5b941ececf..132916cd57 100644
--- a/user-reminder/locale/hu_HU/fusiondirectory.po
+++ b/user-reminder/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po
index 4f19c4eebd..95b2b263ba 100644
--- a/user-reminder/locale/id/fusiondirectory.po
+++ b/user-reminder/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po
index 7b6701adb5..0c51220c88 100644
--- a/user-reminder/locale/it_IT/fusiondirectory.po
+++ b/user-reminder/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2016
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/ja/fusiondirectory.po b/user-reminder/locale/ja/fusiondirectory.po
index e6ada419e6..5264146a49 100644
--- a/user-reminder/locale/ja/fusiondirectory.po
+++ b/user-reminder/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/ko/fusiondirectory.po b/user-reminder/locale/ko/fusiondirectory.po
index 130f40260a..eebcfb6552 100644
--- a/user-reminder/locale/ko/fusiondirectory.po
+++ b/user-reminder/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po
index 4de7160243..fb66870b07 100644
--- a/user-reminder/locale/lv/fusiondirectory.po
+++ b/user-reminder/locale/lv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po
index a4fb469f50..2fd0f51216 100644
--- a/user-reminder/locale/nb/fusiondirectory.po
+++ b/user-reminder/locale/nb/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po
index 95aa9a8444..557053ce8a 100644
--- a/user-reminder/locale/nl/fusiondirectory.po
+++ b/user-reminder/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2018\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po
index c8ba73d572..274cd84274 100644
--- a/user-reminder/locale/pl/fusiondirectory.po
+++ b/user-reminder/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po
index f9ad10cf2f..9b02928190 100644
--- a/user-reminder/locale/pt/fusiondirectory.po
+++ b/user-reminder/locale/pt/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po
index 1fdae9196a..5e2608f8c8 100644
--- a/user-reminder/locale/pt_BR/fusiondirectory.po
+++ b/user-reminder/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/user-reminder/class_userReminderConfig.inc:28
 msgid "User reminder"
diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po
index 72c3a538c2..0902519f50 100644
--- a/user-reminder/locale/ru/fusiondirectory.po
+++ b/user-reminder/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po
index 860013bb16..78edb0a634 100644
--- a/user-reminder/locale/ru@petr1708/fusiondirectory.po
+++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po
index 0b526921d1..1f44c2b06c 100644
--- a/user-reminder/locale/sv/fusiondirectory.po
+++ b/user-reminder/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/user-reminder/locale/tr_TR/fusiondirectory.po b/user-reminder/locale/tr_TR/fusiondirectory.po
index 149a9f491f..32aa1c8ee9 100644
--- a/user-reminder/locale/tr_TR/fusiondirectory.po
+++ b/user-reminder/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po
index 92abb7c91d..4d4c0c625a 100644
--- a/user-reminder/locale/ug/fusiondirectory.po
+++ b/user-reminder/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po
index 4e9c78b60c..e6b111bd36 100644
--- a/user-reminder/locale/vi_VN/fusiondirectory.po
+++ b/user-reminder/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po
index 954f057df0..2a67906059 100644
--- a/user-reminder/locale/zh/fusiondirectory.po
+++ b/user-reminder/locale/zh/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
diff --git a/user-reminder/locale/zh_TW/fusiondirectory.po b/user-reminder/locale/zh_TW/fusiondirectory.po
index 5caa9c0e90..fc90ebf6f5 100644
--- a/user-reminder/locale/zh_TW/fusiondirectory.po
+++ b/user-reminder/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/af_ZA/fusiondirectory.po b/weblink/locale/af_ZA/fusiondirectory.po
index 24fe154c05..abae5210fc 100644
--- a/weblink/locale/af_ZA/fusiondirectory.po
+++ b/weblink/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po
index 2fde9c4378..0e7c96863f 100644
--- a/weblink/locale/ar/fusiondirectory.po
+++ b/weblink/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po
index b3cff53c97..5015b6d71e 100644
--- a/weblink/locale/ca/fusiondirectory.po
+++ b/weblink/locale/ca/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po
index 326d66bc1b..c5046b36ed 100644
--- a/weblink/locale/cs_CZ/fusiondirectory.po
+++ b/weblink/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po
index db864ab4a0..55cae126d3 100644
--- a/weblink/locale/de/fusiondirectory.po
+++ b/weblink/locale/de/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po
index 34f73239f5..6d9858e107 100644
--- a/weblink/locale/el_GR/fusiondirectory.po
+++ b/weblink/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po
index 13c0cb1ee6..2f3e750c22 100644
--- a/weblink/locale/es/fusiondirectory.po
+++ b/weblink/locale/es/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po
index 1f2ed976c7..ef3f8593e7 100644
--- a/weblink/locale/es_CO/fusiondirectory.po
+++ b/weblink/locale/es_CO/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po
index 3abafc1258..d5fc661c21 100644
--- a/weblink/locale/es_VE/fusiondirectory.po
+++ b/weblink/locale/es_VE/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po
index 01c6db6cf2..49810a2da0 100644
--- a/weblink/locale/fa_IR/fusiondirectory.po
+++ b/weblink/locale/fa_IR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po
index a469c59919..211e7b87b2 100644
--- a/weblink/locale/fi_FI/fusiondirectory.po
+++ b/weblink/locale/fi_FI/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po
index 1283dbf9b1..f8c731b9a8 100644
--- a/weblink/locale/fr/fusiondirectory.po
+++ b/weblink/locale/fr/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po
index fd1ddb0f37..7e68172b99 100644
--- a/weblink/locale/hu_HU/fusiondirectory.po
+++ b/weblink/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po
index 84c611ea6a..5e54f12033 100644
--- a/weblink/locale/id/fusiondirectory.po
+++ b/weblink/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po
index c8f7e0062c..5d279602d2 100644
--- a/weblink/locale/it_IT/fusiondirectory.po
+++ b/weblink/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/ja/fusiondirectory.po b/weblink/locale/ja/fusiondirectory.po
index 4cd88fb1b7..3ca2846c4a 100644
--- a/weblink/locale/ja/fusiondirectory.po
+++ b/weblink/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/ko/fusiondirectory.po b/weblink/locale/ko/fusiondirectory.po
index a34512ed7f..f522978024 100644
--- a/weblink/locale/ko/fusiondirectory.po
+++ b/weblink/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po
index 4408b2bb12..1ef4fe1b51 100644
--- a/weblink/locale/lv/fusiondirectory.po
+++ b/weblink/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po
index f9c513f0ef..5cb11abf4e 100644
--- a/weblink/locale/nb/fusiondirectory.po
+++ b/weblink/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po
index f3364ca3f2..a1ac926cc8 100644
--- a/weblink/locale/nl/fusiondirectory.po
+++ b/weblink/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po
index 881a0b8a17..1aba61587c 100644
--- a/weblink/locale/pl/fusiondirectory.po
+++ b/weblink/locale/pl/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po
index 4a0a71ebc6..026078bf25 100644
--- a/weblink/locale/pt/fusiondirectory.po
+++ b/weblink/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po
index f9b25d5a33..dd1b86405b 100644
--- a/weblink/locale/pt_BR/fusiondirectory.po
+++ b/weblink/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: admin/systems/weblink/class_webLink.inc:31
 msgid "Web link"
diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po
index fb98948425..dbaa84cc93 100644
--- a/weblink/locale/ru/fusiondirectory.po
+++ b/weblink/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po
index 00ef185b01..37e4d2d5f1 100644
--- a/weblink/locale/ru@petr1708/fusiondirectory.po
+++ b/weblink/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po
index 46d443ccaf..5f5f2552f8 100644
--- a/weblink/locale/sv/fusiondirectory.po
+++ b/weblink/locale/sv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/tr_TR/fusiondirectory.po b/weblink/locale/tr_TR/fusiondirectory.po
index 55627650a2..c567b72308 100644
--- a/weblink/locale/tr_TR/fusiondirectory.po
+++ b/weblink/locale/tr_TR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po
index bcc6661577..ae356d0dd9 100644
--- a/weblink/locale/ug/fusiondirectory.po
+++ b/weblink/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po
index 3cfbfbae31..41551bbb88 100644
--- a/weblink/locale/vi_VN/fusiondirectory.po
+++ b/weblink/locale/vi_VN/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po
index 739d7656d2..182778dc7f 100644
--- a/weblink/locale/zh/fusiondirectory.po
+++ b/weblink/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/weblink/locale/zh_TW/fusiondirectory.po b/weblink/locale/zh_TW/fusiondirectory.po
index 0a09fe43df..8c760beb8b 100644
--- a/weblink/locale/zh_TW/fusiondirectory.po
+++ b/weblink/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:23+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/af_ZA/fusiondirectory.po b/webservice/locale/af_ZA/fusiondirectory.po
index 34302753a2..619aff3722 100644
--- a/webservice/locale/af_ZA/fusiondirectory.po
+++ b/webservice/locale/af_ZA/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Afrikaans (South Africa) (https://www.transifex.com/fusiondirectory/teams/12202/af_ZA/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po
index 49cac6a4b5..effca0e334 100644
--- a/webservice/locale/ar/fusiondirectory.po
+++ b/webservice/locale/ar/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Arabic (https://www.transifex.com/fusiondirectory/teams/12202/ar/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po
index b7e7f1669b..3f838dab8b 100644
--- a/webservice/locale/ca/fusiondirectory.po
+++ b/webservice/locale/ca/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Catalan (https://www.transifex.com/fusiondirectory/teams/12202/ca/)\n"
diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po
index 253a139288..4f089cfb8c 100644
--- a/webservice/locale/cs_CZ/fusiondirectory.po
+++ b/webservice/locale/cs_CZ/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/fusiondirectory/teams/12202/cs_CZ/)\n"
diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po
index 17b9fa6100..909f93abe2 100644
--- a/webservice/locale/de/fusiondirectory.po
+++ b/webservice/locale/de/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: German (https://www.transifex.com/fusiondirectory/teams/12202/de/)\n"
diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po
index a0170dd489..e8d6213cc1 100644
--- a/webservice/locale/el_GR/fusiondirectory.po
+++ b/webservice/locale/el_GR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Greek (Greece) (https://www.transifex.com/fusiondirectory/teams/12202/el_GR/)\n"
diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po
index 95ed9f5fa6..e99fb95940 100644
--- a/webservice/locale/es/fusiondirectory.po
+++ b/webservice/locale/es/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (https://www.transifex.com/fusiondirectory/teams/12202/es/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po
index ab4fe3f988..1d060b3fcd 100644
--- a/webservice/locale/es_CO/fusiondirectory.po
+++ b/webservice/locale/es_CO/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Colombia) (https://www.transifex.com/fusiondirectory/teams/12202/es_CO/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_CO\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po
index 0cea7536c4..e1b69595a7 100644
--- a/webservice/locale/es_VE/fusiondirectory.po
+++ b/webservice/locale/es_VE/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Spanish (Venezuela) (https://www.transifex.com/fusiondirectory/teams/12202/es_VE/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: es_VE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po
index f3159d86c0..1a76dbc5e0 100644
--- a/webservice/locale/fa_IR/fusiondirectory.po
+++ b/webservice/locale/fa_IR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Persian (Iran) (https://www.transifex.com/fusiondirectory/teams/12202/fa_IR/)\n"
diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po
index 99c4998f04..07629b8afe 100644
--- a/webservice/locale/fi_FI/fusiondirectory.po
+++ b/webservice/locale/fi_FI/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Finnish (Finland) (https://www.transifex.com/fusiondirectory/teams/12202/fi_FI/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po
index c03f726a1f..a559ffecf7 100644
--- a/webservice/locale/fr/fusiondirectory.po
+++ b/webservice/locale/fr/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: French (https://www.transifex.com/fusiondirectory/teams/12202/fr/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po
index 0d177f45f7..42243b52e1 100644
--- a/webservice/locale/hu_HU/fusiondirectory.po
+++ b/webservice/locale/hu_HU/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Hungarian (Hungary) (https://www.transifex.com/fusiondirectory/teams/12202/hu_HU/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po
index 6c42f09e04..0842b7a72d 100644
--- a/webservice/locale/id/fusiondirectory.po
+++ b/webservice/locale/id/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Indonesian (https://www.transifex.com/fusiondirectory/teams/12202/id/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po
index 65db5bab53..67d6918a33 100644
--- a/webservice/locale/it_IT/fusiondirectory.po
+++ b/webservice/locale/it_IT/fusiondirectory.po
@@ -5,22 +5,22 @@
 # 
 # Translators:
 # fusiondirectory <contact@fusiondirectory.org>, 2017
-# Paola Penati <paola.penati@fusiondirectory.org>, 2018
+# Paola Penati <paola.penati@opensides.be>, 2018
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
-"Last-Translator: Paola Penati <paola.penati@fusiondirectory.org>, 2018\n"
+"Last-Translator: Paola Penati <paola.penati@opensides.be>, 2018\n"
 "Language-Team: Italian (Italy) (https://www.transifex.com/fusiondirectory/teams/12202/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: it_IT\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/ja/fusiondirectory.po b/webservice/locale/ja/fusiondirectory.po
index bc3f44aef5..196107b810 100644
--- a/webservice/locale/ja/fusiondirectory.po
+++ b/webservice/locale/ja/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Japanese (https://www.transifex.com/fusiondirectory/teams/12202/ja/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ko/fusiondirectory.po b/webservice/locale/ko/fusiondirectory.po
index 6f4a2adb53..64978e1797 100644
--- a/webservice/locale/ko/fusiondirectory.po
+++ b/webservice/locale/ko/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Choi Chris <chulwon.choi@gmail.com>, 2018\n"
 "Language-Team: Korean (https://www.transifex.com/fusiondirectory/teams/12202/ko/)\n"
diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po
index 0c1ad4ef60..48eeeec1c6 100644
--- a/webservice/locale/lv/fusiondirectory.po
+++ b/webservice/locale/lv/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Latvian (https://www.transifex.com/fusiondirectory/teams/12202/lv/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po
index 69080c8754..92159a653f 100644
--- a/webservice/locale/nb/fusiondirectory.po
+++ b/webservice/locale/nb/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Norwegian Bokmål (https://www.transifex.com/fusiondirectory/teams/12202/nb/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po
index ed1ea0c3c9..e3693c6195 100644
--- a/webservice/locale/nl/fusiondirectory.po
+++ b/webservice/locale/nl/fusiondirectory.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: Lucien Antonissen <lucien.antonissen@digipolis.be>, 2017\n"
 "Language-Team: Dutch (https://www.transifex.com/fusiondirectory/teams/12202/nl/)\n"
diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po
index 19f78789ef..cb9dee7848 100644
--- a/webservice/locale/pl/fusiondirectory.po
+++ b/webservice/locale/pl/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/fusiondirectory/teams/12202/pl/)\n"
diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po
index e774178f03..a2ed0f678b 100644
--- a/webservice/locale/pt/fusiondirectory.po
+++ b/webservice/locale/pt/fusiondirectory.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Portuguese (https://www.transifex.com/fusiondirectory/teams/12202/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po
index d8a91dde0d..a9ba4ae38b 100644
--- a/webservice/locale/pt_BR/fusiondirectory.po
+++ b/webservice/locale/pt_BR/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Portuguese (Brazil) (https://www.transifex.com/fusiondirectory/teams/12202/pt_BR/)\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
 
 #: config/class_webserviceConfig.inc:28
 msgid "Webservice configuration"
diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po
index 06c93c9053..94adce4fb1 100644
--- a/webservice/locale/ru/fusiondirectory.po
+++ b/webservice/locale/ru/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2017\n"
 "Language-Team: Russian (https://www.transifex.com/fusiondirectory/teams/12202/ru/)\n"
diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po
index 91d42245e4..5916ec8a75 100644
--- a/webservice/locale/ru@petr1708/fusiondirectory.po
+++ b/webservice/locale/ru@petr1708/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Russian Petrine orthography (https://www.transifex.com/fusiondirectory/teams/12202/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po
index 516fbb58c2..579d2fe893 100644
--- a/webservice/locale/sv/fusiondirectory.po
+++ b/webservice/locale/sv/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/fusiondirectory/teams/12202/sv/)\n"
diff --git a/webservice/locale/tr_TR/fusiondirectory.po b/webservice/locale/tr_TR/fusiondirectory.po
index 9c67168ad5..8cb79e6b92 100644
--- a/webservice/locale/tr_TR/fusiondirectory.po
+++ b/webservice/locale/tr_TR/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Turkish (Turkey) (https://www.transifex.com/fusiondirectory/teams/12202/tr_TR/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po
index 9bb10ce350..91934271fa 100644
--- a/webservice/locale/ug/fusiondirectory.po
+++ b/webservice/locale/ug/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Uyghur (https://www.transifex.com/fusiondirectory/teams/12202/ug/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po
index 389b632b8a..05f4295208 100644
--- a/webservice/locale/vi_VN/fusiondirectory.po
+++ b/webservice/locale/vi_VN/fusiondirectory.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>, 2016\n"
 "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/fusiondirectory/teams/12202/vi_VN/)\n"
diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po
index 408746fc81..a99f165fe3 100644
--- a/webservice/locale/zh/fusiondirectory.po
+++ b/webservice/locale/zh/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (https://www.transifex.com/fusiondirectory/teams/12202/zh/)\n"
 "MIME-Version: 1.0\n"
diff --git a/webservice/locale/zh_TW/fusiondirectory.po b/webservice/locale/zh_TW/fusiondirectory.po
index 49dcd88f17..dc8ede7d58 100644
--- a/webservice/locale/zh_TW/fusiondirectory.po
+++ b/webservice/locale/zh_TW/fusiondirectory.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory VERSION\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2021-03-18 15:45+0000\n"
+"POT-Creation-Date: 2022-07-28 17:06+0000\n"
 "PO-Revision-Date: 2016-08-29 15:24+0000\n"
 "Language-Team: Chinese (Taiwan) (https://www.transifex.com/fusiondirectory/teams/12202/zh_TW/)\n"
 "MIME-Version: 1.0\n"
-- 
GitLab


From e99925dbed5981363b5e24088f1a910bbda21e1e Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Fri, 9 Sep 2022 10:38:35 +0200
Subject: [PATCH 69/73] :handshake: fix(changelog) add the changelog for 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 Changelog.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 50 insertions(+), 1 deletion(-)

diff --git a/Changelog.md b/Changelog.md
index b37aadd11f..1526c00127 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,40 +1,67 @@
-## %"FusionDirectory 1.3.1" - 2019-07-04
+## %"FusionDirectory 1.3.1" - 2022-09-09
 
 ### Added
 
 #### fusiondirectory
 - fd#5985 We don't have LDAP tab on FusionDirectory configuration
+- fd#6152 Add subscription screen
 
 #### fusiondirectory-plugins
 - fd-plugins#5911 supannRefId field is missing for "etablissement"
 - fd-plugins#5938 Make %passwordClear% available to sambaAccount hooks
 - fd-plugins#5939 create icons for ipmi and weblink
 - fd-plugins#5940 We don't have LDAP tab on FusionDirectory configuration
+- fd-plugins#5956 add mapping sinaps to Fd mapping for diffusion
 - fd-plugins#5957 creating icons for the sinaps plugin
 
 ### Changed
 
+#### fusiondirectory
+- fd#6024 Cleanup session handling
+- fd#6038 Move the "Click the 'Edit' button" message to the left
+- fd#6220 [CodeStyle] - 1.3.1 Requires adaptation to align code style with 1.4
+- fd#6221 [Enhancement] - Change CI 1.3.1 - CodeStyle to refelect 1.4 rules
+
 #### fusiondirectory-plugins
+- fd-plugins#5897 When a user is removed from Sinaps, we need to send back a deletion acquisition
 - fd-plugins#5913 Avoid mass acquistion when editing group gidNumber
 - fd-plugins#5948 description of a user should'nt be updated from SINAPS
+- fd-plugins#5993 _getTabFooter has been renamed getTabFooter
+- fd-plugins#6103 Adapt 1.3-fixes code to subscription core merge
+- fd-plugins#6180 [CodeStyle] 1.3.1 Plugin - Requires adaptation to align code style with 1.4
 
 ### Removed
 
 #### fusiondirectory-plugins
 - fd-plugins#5901 Remove Google+ from personal social accounts tab
+- fd-plugins#5992 Email icon should be moved to core
 
 ### Fixed
 
 #### fusiondirectory
+- fd#5862 filtering and "Unknown element type specified: !"
 - fd#5942 PHP >= 7.2 triggering error when count() is called with invalid countable
 - fd#5967 Systems dashboard crashes
+- fd#5974 Workflow problem when applying a template to an object triggers errors
 - fd#5978 when renaming branch aka department roles are not updated correctly
 - fd#5983 Write ACL on user/userRoles/groupsMembership not working when not having full user/user read right
 - fd#5987 ImagickException are not catched when showing an ImageAttribute
+- fd#5995 Audit events DN are too long
 - fd#5997 Incorrect error message when the mail cannot be sent by recovery
+- fd#6005 Problem with gidNumber in posix group template
 - fd#6006 expiration date in dashboard is 02.01.1970
+- fd#6017 IntAttribute badly handle empty value when minimum is set
+- fd#6023 Email icon missing from core
+- fd#6030 correct the get help section in the readme.md
+- fd#6097 Smarty path is not set correctly by fusiondirectory-setup --write-vars
+- fd#6122 Problems with FD web setup
+- fd#6142 The filter for configuration is wrong in fusiondirectory-setup
+- fd#6173 PHP error: Array to string conversion in class_fiInventory.inc:199
+- fd#6222 [1.3.1] - Fixing LDAP Search filter code style
 
 #### fusiondirectory-plugins
+- fd-plugins#5825 LDAP error in audit plugin
+- fd-plugins#5912 Unable to spread a user to FD from sinaps if the user is affected to an etablissement
 - fd-plugins#5917 flag_ownmailbox cannot be used with partage mail method
 - fd-plugins#5918 SINAPS : acquisition couldn't be sent because primary affectation isn't set
 - fd-plugins#5923 cname record appear on another domain when they contain the machine cn
@@ -44,6 +71,28 @@
 - fd-plugins#5944 add addvalues/delvalues documentation
 - fd-plugins#5945 unable to add SINAPS Structure
 - fd-plugins#5949 Systems dashboard crashes
+- fd-plugins#5963 error in SINAPS workflow
+- fd-plugins#5966 dovecot connection error
+- fd-plugins#5976 Problem with gidNumber in posix group template
+- fd-plugins#5970 Compatibility error between sudo and mixedgroup plugins
+- fd-plugins#5978 GPG key addition crash
+- fd-plugins#5991 ORCID last character may be 'X' and not a number
+- fd-plugins#6000 correct the get help section in the readme.md
+- fd-plugins#6063 Argument 4 passed to DhcpHostsAttribute::postLdapSave() must be of the type array, string given
+- fd-plugins#6079 reload dns map from dns interface didn't work , but from server it works
+- fd-plugins#6125 PHP error: Array to string conversion in class_fiInventory.inc:199
+
+### Security
+
+#### fusiondirectory
+- fd#6021 Failed LDAP operations may appear as Success
+- fd#6135 Security problems uncovered by audit
+- fd#6086 XSS in login screen
+- fd#6136 Weak random generator use in fusiondirectory-setup
+- fd#6137 XSS in management filters
+- fd#6217 [Security] - Set Cookie settings to TRUE for option "HttpOnly"
+- fd#6219 [security] - Cookie session is not renewed or set after authentification
+
 
 ## %"FusionDirectory 1.3" - 2019-03-04
 
-- 
GitLab


From 136e759a4a144f837f0f71743c3ca5b48da772bc Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Fri, 7 Oct 2022 15:35:14 +0200
Subject: [PATCH 70/73] :handshake: fix(changelog): final version of
 Changelog.md

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 Changelog    |   2 +
 Changelog.md | 553 ++++++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 505 insertions(+), 50 deletions(-)
 create mode 100644 Changelog

diff --git a/Changelog b/Changelog
new file mode 100644
index 0000000000..bfdf0a8a68
--- /dev/null
+++ b/Changelog
@@ -0,0 +1,2 @@
+See Changelog.md
+
diff --git a/Changelog.md b/Changelog.md
index 1526c00127..a8c12f8401 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,67 +1,40 @@
-## %"FusionDirectory 1.3.1" - 2022-09-09
+## %"FusionDirectory 1.3.1" - 2019-07-04
 
 ### Added
 
 #### fusiondirectory
 - fd#5985 We don't have LDAP tab on FusionDirectory configuration
-- fd#6152 Add subscription screen
 
 #### fusiondirectory-plugins
 - fd-plugins#5911 supannRefId field is missing for "etablissement"
 - fd-plugins#5938 Make %passwordClear% available to sambaAccount hooks
 - fd-plugins#5939 create icons for ipmi and weblink
 - fd-plugins#5940 We don't have LDAP tab on FusionDirectory configuration
-- fd-plugins#5956 add mapping sinaps to Fd mapping for diffusion
 - fd-plugins#5957 creating icons for the sinaps plugin
 
 ### Changed
 
-#### fusiondirectory
-- fd#6024 Cleanup session handling
-- fd#6038 Move the "Click the 'Edit' button" message to the left
-- fd#6220 [CodeStyle] - 1.3.1 Requires adaptation to align code style with 1.4
-- fd#6221 [Enhancement] - Change CI 1.3.1 - CodeStyle to refelect 1.4 rules
-
 #### fusiondirectory-plugins
-- fd-plugins#5897 When a user is removed from Sinaps, we need to send back a deletion acquisition
 - fd-plugins#5913 Avoid mass acquistion when editing group gidNumber
 - fd-plugins#5948 description of a user should'nt be updated from SINAPS
-- fd-plugins#5993 _getTabFooter has been renamed getTabFooter
-- fd-plugins#6103 Adapt 1.3-fixes code to subscription core merge
-- fd-plugins#6180 [CodeStyle] 1.3.1 Plugin - Requires adaptation to align code style with 1.4
 
 ### Removed
 
 #### fusiondirectory-plugins
 - fd-plugins#5901 Remove Google+ from personal social accounts tab
-- fd-plugins#5992 Email icon should be moved to core
 
 ### Fixed
 
 #### fusiondirectory
-- fd#5862 filtering and "Unknown element type specified: !"
 - fd#5942 PHP >= 7.2 triggering error when count() is called with invalid countable
 - fd#5967 Systems dashboard crashes
-- fd#5974 Workflow problem when applying a template to an object triggers errors
 - fd#5978 when renaming branch aka department roles are not updated correctly
 - fd#5983 Write ACL on user/userRoles/groupsMembership not working when not having full user/user read right
 - fd#5987 ImagickException are not catched when showing an ImageAttribute
-- fd#5995 Audit events DN are too long
 - fd#5997 Incorrect error message when the mail cannot be sent by recovery
-- fd#6005 Problem with gidNumber in posix group template
 - fd#6006 expiration date in dashboard is 02.01.1970
-- fd#6017 IntAttribute badly handle empty value when minimum is set
-- fd#6023 Email icon missing from core
-- fd#6030 correct the get help section in the readme.md
-- fd#6097 Smarty path is not set correctly by fusiondirectory-setup --write-vars
-- fd#6122 Problems with FD web setup
-- fd#6142 The filter for configuration is wrong in fusiondirectory-setup
-- fd#6173 PHP error: Array to string conversion in class_fiInventory.inc:199
-- fd#6222 [1.3.1] - Fixing LDAP Search filter code style
 
 #### fusiondirectory-plugins
-- fd-plugins#5825 LDAP error in audit plugin
-- fd-plugins#5912 Unable to spread a user to FD from sinaps if the user is affected to an etablissement
 - fd-plugins#5917 flag_ownmailbox cannot be used with partage mail method
 - fd-plugins#5918 SINAPS : acquisition couldn't be sent because primary affectation isn't set
 - fd-plugins#5923 cname record appear on another domain when they contain the machine cn
@@ -71,28 +44,6 @@
 - fd-plugins#5944 add addvalues/delvalues documentation
 - fd-plugins#5945 unable to add SINAPS Structure
 - fd-plugins#5949 Systems dashboard crashes
-- fd-plugins#5963 error in SINAPS workflow
-- fd-plugins#5966 dovecot connection error
-- fd-plugins#5976 Problem with gidNumber in posix group template
-- fd-plugins#5970 Compatibility error between sudo and mixedgroup plugins
-- fd-plugins#5978 GPG key addition crash
-- fd-plugins#5991 ORCID last character may be 'X' and not a number
-- fd-plugins#6000 correct the get help section in the readme.md
-- fd-plugins#6063 Argument 4 passed to DhcpHostsAttribute::postLdapSave() must be of the type array, string given
-- fd-plugins#6079 reload dns map from dns interface didn't work , but from server it works
-- fd-plugins#6125 PHP error: Array to string conversion in class_fiInventory.inc:199
-
-### Security
-
-#### fusiondirectory
-- fd#6021 Failed LDAP operations may appear as Success
-- fd#6135 Security problems uncovered by audit
-- fd#6086 XSS in login screen
-- fd#6136 Weak random generator use in fusiondirectory-setup
-- fd#6137 XSS in management filters
-- fd#6217 [Security] - Set Cookie settings to TRUE for option "HttpOnly"
-- fd#6219 [security] - Cookie session is not renewed or set after authentification
-
 
 ## %"FusionDirectory 1.3" - 2019-03-04
 
@@ -3319,3 +3270,505 @@
 
 #### fusiondirectory-plugins
 - fd-plugins#2140 the template don't escape the html inside itself
+
+## %"FusionDirectory 1.0.4" - 2012-06-30
+
+### Added
+
+#### fusiondirectory
+- fd#913 There should be a password recovery link on the login page
+- fd#1018 supportDaemon should allow to call modules method easily
+- fd#1038 Handle schema changes
+- fd#1041 we need to add a new parameter to fusiondirectory.conf manpage asteriskParameterDelimiter
+- fd#1118 Adresse email alternative pour Password recovery
+- fd#1173 javascript should contain an inArray function
+- fd#1204 add spanish venezuela into the setup
+- fd#1205 we need to add the locale dir and the config for transifex es_ve
+- fd#1209 add 2 more attributes in network printer
+- fd#1220 Automatic return to login page after password change
+- fd#1246 ambiguous error message in installation check
+- fd#1280 provide ldif update files for recovery.ldif and goto.ldif
+- fd#1308 add one more attribute in network printer
+- fd#1328 add the entries in fusiondirectory.conf for board plugin
+- fd#1402 merge simple-plugin 1.0 into core
+
+#### fusiondirectory-plugins
+- fd-plugins#1032 asterisk application parameter delimiter changed from | to , (gosa bug 1177)
+- fd-plugins#1207 add 2 more attributes in network printer
+- fd-plugins#1260 we want to provision Windows pc from the interface
+- fd-plugins#1266 having the mac address next to the ip address in filter system list
+- fd-plugins#1356 integrating board into fusiondirectory-plugins
+- fd-plugins#1374 Handle schema changes
+
+### Changed
+
+#### fusiondirectory
+- fd#674 cleaning code for php 5.4
+- fd#984 accept-to-gettext should be re-wrote
+- fd#1069 Check for group conflicts case-insensitively
+- fd#1096 FusionDirectory menu should use plInfo
+- fd#1100 Plugin header system should allow to have multiple plugins on the same page
+- fd#1134 dn2base should handle a sesond parameter
+- fd#1211 style.css should be adapted to have some css about simplePlugin
+- fd#1243 Rewrite password recovery plugin with simplePlugin framework
+- fd#1270 remove the artificial limit to two different objects in objects group
+- fd#1277 rework the README.cnconfig
+- fd#1278 all the manpages from fusiondirectory should be updated
+- fd#1358 in the setup it still show we need more than 64MB it should be 128
+- fd#1359 the wording is not just in setup for windows pc we said "workstations" but that should be Windows pc
+- fd#1438 board plugin must go in addons
+
+#### fusiondirectory-plugins
+- fd-plugins#675 cleaning code for php 5.4
+- fd-plugins#1238 standardazing the argonaut menu service entries
+- fd-plugins#1239 standardazing the spam and antivirus menu service entries
+- fd-plugins#1240 standardizing log service entries
+- fd-plugins#1241 standardizing fax service entries
+- fd-plugins#1276 the ip should be mandatory on server, terminal and printer objects
+- fd-plugins#1309 Board should use simplePlugin
+- fd-plugins#1414 getFAIstatus.php should not be packaged in main
+- fd-plugins#1421 move the include/jsonRPCClient.php to the argonaut pacakge
+
+### Removed
+
+#### fusiondirectory
+- fd#1216 remove the check for the library as fusiondirectory-makentpassword use it internaly
+- fd#1224 we should remove the code activation ob_start as it not recommended way of compression
+- fd#1257 moving the update-locales script to management tools
+- fd#1271 remove the code showing the type of object in object group title member objects
+- fd#1302 Step 2 of password recovery should be removed
+- fd#1327 remove repositoryBranchHook from manpage
+- fd#1382 the supportDaemon.inc class should be moved the argonaut plugin
+- fd#1415 Argonaut does not support message sending, the feature should be removed
+- fd#1416 getFAIstatus.php should not be packaged in main
+- fd#1420 move the include/jsonRPCClient.php to the argonaut pacakge
+- fd#1448 remove dead code from the source
+
+#### fusiondirectory-plugins
+- fd-plugins#1037 update_entries function should be remove from supportDaemon
+- fd-plugins#1254 remove old code saving goSyslogServer
+- fd-plugins#1261 removing all obsolete opsi code from various plugins
+- fd-plugins#1273 this code is not correct now that the fusiondirectory.conf contains all the entries
+
+### Fixed
+
+#### fusiondirectory
+- fd#508 pre/post script not working properly with mail command
+- fd#586 FSF address incorrect in source code and documentation files
+- fd#999 Problem of auto inclusion of the class_pdf.inc
+- fd#1011 smarty3 with gettext generate funky errors :/
+- fd#1021 recovery.schema should follow LDAP naming rules
+- fd#1031 Web interface silently fails with passwords > 40 characters in length (gosa bug 1168)
+- fd#1039 wrong my $path in fusiondirectory-insert-schema
+- fd#1084 password Hook is called in different manner in password and userManagement.
+- fd#1106 setup.php must use an absolute path for the template
+- fd#1120 In style.css, line-height line 1528 seems wrong
+- fd#1121 The date picker is not working anymore
+- fd#1163 fusiondirectory-setup is wrong in connection to ldap
+- fd#1180 Pop-up error when locking/unlocking user
+- fd#1181 Line 310 of class_msgPool.inc is wrong
+- fd#1183 class_filterLDAP.inc don't check correctly the base and objectStorage
+- fd#1214 Wizard goes into an infinite loop if the popen function is not available
+- fd#1221 French accents in password recovery mailbody
+- fd#1225 when i click on the link for password recovery on the main page, it say not activated but as you can see in debug text its not
+- fd#1226 option -i not in fusiondirectory-insert-schema manual
+- fd#1230 Type:8, Message:Trying to get property of non-object $date in headers.tpl
+- fd#1242 Password recovery doesn't use the configured set address
+- fd#1245 installation doesn't continue after installing "missing" driver
+- fd#1248 [wizard] Add non blocking test for MDB2 drivers on wizard checks step.
+- fd#1256 error in rsyslog view
+- fd#1264 Debian 6 - commande : fusiondirectory-insert-schema
+- fd#1275 this code is not correct now that the fusiondirectory.conf contains all the entries
+- fd#1281 change the name of the reponsible person inside all the schema and ldif
+- fd#1299 fusiondirectory-insert-schema dont work correctly
+- fd#1333 supportDaemon can cause some PHP errors
+- fd#1334 the passwordRecoveryUseAlternate fonction is no longer in the code
+- fd#1346 when restarting a service trought argonaut some LDAP error appear
+- fd#1347 in 1.0.4 with patch to support Service.manage like action it doesn't work
+- fd#1360 complete the INSTALL to mention how to work with or without mdb2.php from tar.gz
+- fd#1410 password recovery translation
+- fd#1424 wrong copyright
+- fd#1464 error in update-goserver.ldif and update-goto.ldif
+
+#### fusiondirectory-plugins
+- fd-plugins#848 save_object is called twice on services
+- fd-plugins#1019 Some systems plugins call for deprecated ldap2zone action
+- fd-plugins#1022 fdQuota.schema and argonaut.schema should follow LDAP naming rules
+- fd-plugins#1036 Incorrect directory for the supann schema.
+- fd-plugins#1104 Some plugins have bad names in plInfo
+- fd-plugins#1160 Failed to add packages in "Package list" dialog
+- fd-plugins#1215 check if popen is allowed before using it
+- fd-plugins#1228 the code for adding icons into applications is broken
+- fd-plugins#1229 the code for reading image is broken in getfax.php
+- fd-plugins#1232 popup not working with smarty3 :/
+- fd-plugins#1252 error in rsyslog view
+- fd-plugins#1258 FSF address incorrect in source code and documentation files
+- fd-plugins#1267 the refresh dns is not correct from the system generic page
+- fd-plugins#1269 Input of already existing IP
+- fd-plugins#1274 filter for windows workstations come into conflict with the network device one
+- fd-plugins#1283 the check for existing winstations is not working
+- fd-plugins#1284 copy paste is not working for winstations
+- fd-plugins#1285 in copy paste for terminal, server, printer, workstations mac an ip are not mandatory
+- fd-plugins#1286 in phone we cannot change ip and mac when doing copy/paste
+- fd-plugins#1306 List DHCP not displayed in full
+- fd-plugins#1321 When updating a winstation cn the uid is not updated
+- fd-plugins#1332 fd crash when mailmethod is in config file and the entry contains a mail addresss
+- fd-plugins#1349 in 1.0.4 with patch to support Service.manage like action it doesn't work
+- fd-plugins#1350 error smarty with addressbook plugins
+- fd-plugins#1380 switch off action does not do anything on servGeneric
+- fd-plugins#1399 [board-plugin] Missing counters for some elements
+- fd-plugins#1400 [board-plugin] Missing uppercases.
+- fd-plugins#1401 [board-plugin] Missing icon for systems counter
+- fd-plugins#1890 gotoGroupAdminPrinter attribute is missing in system-fd.schema
+
+## %"FusionDirectory 1.0.3" - 2012-04-30
+
+### Added
+
+#### fusiondirectory
+- fd#43 Lost password feature in Gosa
+- fd#119 add cn generation parameter on install screen
+- fd#273 add sasl support for password
+- fd#454 Features from GOsa 2.7 that should be in FusionDirectory
+- fd#471 fusiondirectory-setup parameters must be settable in command-line
+- fd#483 adding --check-config to fusiondirectory-setup
+- fd#506 FAQ: scripts for Pre and Post events
+- fd#528 Possibility to use the pam_check_host_attr feature when using the trust model
+- fd#554 catalan support in fusiondirectory
+- fd#598 in object group we cannot select windows pc
+- fd#632 an abstraction layer so be used to allow different databases to be used
+- fd#665 modify fusiondirectory-insert-schema to install ldapns.schema
+- fd#668 add the missing passwordMethod::is_harmless in class_password.inc
+- fd#716 migrate-repositories option of fusiondirectory-setup will migrate network repos
+- fd#736 making a client argonaut service
+- fd#773 we must test for mdb2 in the setup
+- fd#805 fusiondirectory-setup must generate the SUPANN_DIR also
+- fd#806 all the templates should be read from /var/cache/fusiondirectory/mail
+- fd#807 all the templates should be read from /var/cache/fusiondirectory/system
+- fd#808 all the templates should be read from /var/cache/fusiondirectory/asterisk
+- fd#810 fusiondirectory-setup must generate the ASTERISK_DIR also
+- fd#811 fusiondirectory-setup must generate the SYSTEMS_DIR also
+- fd#812 fusiondirectory-setup must generate the MAIL_DIR also
+- fd#822 fusiondirectory-setup should create the mail, systems, asterisk and supann dir in the fusiondirectory cache
+- fd#824 the fusiondirectory.conf should contains all the service definition and other needed entries for all the plugins
+- fd#829 adding a default ou for netgroupRDN
+- fd#831 we need to modify fusiondirectory insert-schema to insert the recovery schema by default
+- fd#883 Architectures should be in FAIrepository value
+- fd#909 Add custom repositorories
+- fd#914 creating a new favicon for fusiondirectory
+- fd#916 No picture for the Openstack compute plugin
+- fd#917 password recovery doesnt have an icon for the main menu
+- fd#922 when suppan is installed but mapping in fd conf is not we got this error, we should provide a default branch in class_config.inc
+- fd#936 add (Czech Republic) to the locale
+- fd#941 DNS record : SRV type is properly useable in dns plugin
+- fd#942 fusiondirectory-insert-schema installation of others schema
+- fd#944 add the missing option to the fusiondirectory-setup manpages
+- fd#977 the sasl password method should have an option for exop operations
+- fd#978 the saslRealm and saslExop should be put in the fusiondirectory manpage
+
+#### fusiondirectory-plugins
+- fd-plugins#357 button to launch ladp2bind from the DNS configuration page
+- fd-plugins#490 cleaning goto / systems plugins
+- fd-plugins#585 i18n nb.po for NIS netgroups plugin
+- fd-plugins#625 in getxls.php the path should be in variables.inc
+- fd-plugins#634 add new AUTHORS
+- fd-plugins#679 integrate the nova user ldap plugin into FusionDirectory
+- fd-plugins#729 making a client argonaut service
+- fd-plugins#735 putting suppan plugin into core plugins
+- fd-plugins#739 we must create a service to store the config of all the argonaut tools
+- fd-plugins#742 fai branc not created when adding a repository
+- fd-plugins#863 ext4 is missing in the fai plugin
+- fd-plugins#884 Architectures should be in FAIrepository value
+- fd-plugins#889 an icon in the system list showing that there is an argonaut service presnt on this system
+- fd-plugins#896 Add custom repositorories
+- fd-plugins#918 we added the support of the custom release to system deployment plugin but the fai.schema miss an attribute for this
+- fd-plugins#937 add (Czech Republic) to the locale
+- fd-plugins#953 the netgroup plugin doesnt have an icon in the list wiew
+- fd-plugins#959 putting quoat into official plugins
+
+### Changed
+
+#### fusiondirectory
+- fd#502 Remove the smarty plugins file from the include directory
+- fd#520 removing fixed path from setup
+- fd#541 the version number is not visible enough
+- fd#588 the branch for computers should be ou=computers no ou=winstations by default
+- fd#592 cleaning goto / systems plugins
+- fd#620 rewrite the mail collector
+- fd#621 the plinfo fonction should always be the latest function in the .inc files
+- fd#628 gosamba.pl should be rewrote and put in fusiondirectory-setup
+- fd#633 change the HTTP_GOSA_KEY to HTTP_FD_KEY
+- fd#637 move all xsd files into contrib and see if there is an issue
+- fd#655 move class from include/utils to include to be more consistant
+- fd#670 windows workstations are now in ou=computers
+- fd#672 this function from class_posixAccount.inc should be in function.inc
+- fd#673 this function should be in functions.inc
+- fd#718 install-directories needs to be rewrote
+- fd#721 Indentation consistency and useless ldap attributes in supportDaemon
+- fd#724 useless ldap attributes in supportDaemon
+- fd#725 changing the sentence at the end of setup of fusiondirectory
+- fd#768 session should time out after 10 min
+- fd#800 all the templates should be read from /var/cache/fusiondirectory/supann
+- fd#823 the posix plugin should read is template from SYSTEMS_DIR
+- fd#859 put all the docs togheter inside contrib/docs
+- fd#861 Not enough memory for the PHP module
+- fd#866 change color banner and go_logo
+- fd#931 the message explaining to use fusiondirectory-setup to fix classes loading is wrong
+- fd#945 remove the debian centrics path into fusiondirectory-setup
+- fd#949 we should remove the debian centric dir in contrib/fusiondirectory-apache.conf
+- fd#954 rewrite the INSTALL document on how to install fusiondirectory from tar.gz
+- fd#969 change explication in "Restoring object snapshots"
+- fd#976 the keyword should be renamed as saslRealm to be more in sync with other keywords
+
+#### fusiondirectory-plugins
+- fd-plugins#597 in applications remove the restriction for c:\
+- fd-plugins#619 show opsi based clients should be removed ?
+- fd-plugins#626 fix_munged.php to be converted to perl
+- fd-plugins#631 update the datbase schema in gophon
+- fd-plugins#651 the plinfo fonction should always be the latest function in the .inc files
+- fd-plugins#728 replacing the code that loo into the config file for argonautServer
+- fd-plugins#814 all the templates should be read from /var/cache/fusiondirectory/asterisk
+- fd-plugins#815 all the templates should be read from /var/cache/fusiondirectory/system
+- fd-plugins#816 all the templates should be read from /var/cache/fusiondirectory/mail
+- fd-plugins#817 moving /etc contents to contrib to be more correct for the mail plugin
+- fd-plugins#819 removing the encoding file from /etc and putting it in contrib in the system plugin
+- fd-plugins#843 file from the gofon etc/asterisk plugin should go to contrib/asterisk
+- fd-plugins#865 in the fai partion disk plugin the setup storage checkbox should be checked by default
+- fd-plugins#894 split the argonautconfig service
+- fd-plugins#924 Service names should go into the LDAP
+- fd-plugins#930 renaming the netatalk plugin to netatalkAccount to be more in sync with other plugins
+- fd-plugins#961 gofon plugin is not structured correclty relating to directories
+- fd-plugins#962 gofax plugins dir are wrong
+
+### Removed
+
+#### fusiondirectory
+- fd#171 second mandatory field in department / country is not checked for empty
+- fd#485 removing samba rid and sid from setup
+- fd#495 removing all old GOsaSupportdaemon code
+- fd#496 the mailqueue plugin use goto si for his functions
+- fd#501 i propose to remove the click trough gpl for fusiondirectory setup
+- fd#591 remove leftover of old mysql logging system
+- fd#594 remove the internet explorer 6 suppor for png
+- fd#622 remove the goto-si code in function.inc
+- fd#623 get_gosa_version() should be removed and replace by a static var in variables.inc
+- fd#641 svn_version can be removed in functions.inc
+- fd#647 remove non used function in functions.inc
+- fd#648 remove non used function function obj_is_readable($dn, $object, $attribute) in functions.inc
+- fd#649 remove non used function function saveFilter($a_filter, $values) in functions.inc
+- fd#650 remove obsolete function function set_acl($acl) from class_tabs.inc
+- fd#683 remove the opsi stuff from the fusiondirectory.conf
+- fd#687 now that fusiondirectory is only for kolab22 we should remove kolab from config
+- fd#694 removing the obsoleted and non maintened plugin for phpgw
+- fd#818 removing the encoding file from /etc and putting it in contrib in the system plugin
+- fd#948 remove the fusiondirectory-migrate-users program its has been merge into fusiondirectory-setup
+
+#### fusiondirectory-plugins
+- fd-plugins#618 mail addons should be removed
+- fd-plugins#627 remove goto-si code from class_termDns.inc
+- fd-plugins#630 removing the code for kolab1
+- fd-plugins#638 look if this can really be removed from class_servApacheEditVhost.inc
+- fd-plugins#653 the export xls should be removed from ldapmanager plugin
+- fd-plugins#693 removing the obsoleted and non maintened plugin for phpgw
+- fd-plugins#825 Remove all non needed readme in the plugins
+- fd-plugins#878 the cleanup option should be removed from the argonaut config service because its mandatory
+- fd-plugins#964 remove show opsi based client from the code
+
+### Fixed
+
+#### fusiondirectory
+- fd#330 FSF address incorrect in source code and documentation files
+- fd#409 shadowLastChange Not set if POSIX extensions added latter
+- fd#431 ACL to allow enabling / disabling of user accounts
+- fd#473 fusiondirectory-setup -  Bad tests on directories rights
+- fd#475 fusiondirectory setup --install-plugins should launch the update of FD locales / cache
+- fd#476 problem in fd setup when migrating from gosa2.6
+- fd#477 LDAP query failed : 'root object' is missing
+- fd#484 bug when generating config with the wizard when snapshot not selected
+- fd#488 configuration file path not settable in variables.inc
+- fd#489 error : argonautServer not defined in config - suite
+- fd#491 Hardcoded dir name in install_plugins function
+- fd#492 No tests on directory path entered by user for plugin installation
+- fd#500 the glp licence use for the setup is an old version we sould put there the new version
+- fd#504 Cache subdirectories creation missing step in INSTALL file
+- fd#514 Classes and Locales not correctly upgraded
+- fd#518 skip space in login
+- fd#519 fusiondirectory-setup not operational with perl version < 5.10
+- fd#521 the vacation dir should be a in variables.inc also
+- fd#522 fixed path in setup for php
+- fd#523 searching for fixed path in fusiondirectory
+- fd#556 Incorrect description of posixGroup created
+- fd#565 jpegPhoto automatically changed/altered when updating user information
+- fd#567 FD allows DNS entries with '_' (underscores) in hostnames
+- fd#577 Package descriptions don't work if "+" in name
+- fd#589 Erreur PHP "Undefined variable: _SERVERREMOTE_ADDR"
+- fd#639 when there is no argonaut server we got an error in the log
+- fd#640 when there is no dir with data from fai for the system we got errors in the logs
+- fd#642 in functions.inc the  sambaMachineAccountRDN should be ou=computers
+- fd#646 remove leftover var from copypastehandler.inc
+- fd#654 the export xls should be removed from ldapmanager plugin
+- fd#662 when just typing the fusiondirectory-schem2ldif i got an error
+- fd#663 when running fusiondirectory-schema2ldif i got this error
+- fd#664 fusiondirectory-schema2ldif doesnt insert the return carriage correctly
+- fd#666 fusiondirectory-insert-schema doesnt install goto-mime.schema
+- fd#667 The selection filter for the samba plugins workstations in the user tab don't show windows pc
+- fd#669 in the objectgroup the filter for applications is missing in the select box
+- fd#671 uid=pcwin005$,ou=computers,dc=labo,dc=opensides,dc=be is not a user and should not be show to be migrated in the user section
+- fd#709 the cn of the system admin is not right in fusiondirectory setup
+- fd#714 Duplicated code in index.php
+- fd#715 migrate-repositories option of fusiondirectory-setup should check FAIclass
+- fd#727 replacing the code that loo into the config file for argonautServer
+- fd#730 PHP errors in class_supportDaemon.inc
+- fd#732 error when gosaunittag not defined in ldap in class_supportDaemon.inc
+- fd#741 PHP errors in support Daemon
+- fd#757 PHP_DIR is wrongly put in the include PHP path
+- fd#761 Inconsistency in coding guidelines
+- fd#777 PHP error in password.tpl
+- fd#778 tokens is treated like it needs to be migrated
+- fd#779 Weird french translation in migrate step
+- fd#795 Erreur documentation
+- fd#839 The name of the password generator for nt changed names, so we need to change in the setup
+- fd#844 PHP errors when asking logs on a new server
+- fd#860 Incorrect include path in php_setup.inc file
+- fd#886 the protocol of json rpc (http or https) should not be encoded in the code and be saved into the ldap
+- fd#891 Unable to load the User Nova tab
+- fd#901 check the copyright is correct on all files
+- fd#928 The icon path for password recovery is wrong
+- fd#950 fusiondirectory-setup should not go into the contrib dir
+- fd#952 fusiondirectory-setup doesnt install the plugin correctly from tar.gz
+- fd#960 restoring snapshot isn't working anymore
+- fd#963 spaces into response to prompt break the fusiondirectory setup command
+- fd#973 when switching a user to sasl it doesnt remove the samba hases from the user entry in ldap
+- fd#974 when switching a user to sasl and going to password change it accept to change and generate an error
+- fd#975 when creating a new user and selecting sasl as password method it still write samba entries
+- fd#982 FD-core: setup wizard starts in English regardless of language requested by browser
+- fd#983 FD-core: language list in setup wizard is always (partly) translated into Czech, even in case when wizard started in English
+- fd#990 when the keyword is missing we get php errors in salspassword method
+- fd#992 In setup, automatic option for language should be the first one
+- fd#1005 when there is more than one argonaut server configured it doesnt work at all it just say nothing is there
+
+#### fusiondirectory-plugins
+- fd-plugins#284 provided fusiondirectory dhcp schema modified without changing openldap OID
+- fd-plugins#287 invalid structural object class chain (account/person)
+- fd-plugins#312 dhcp/Parent node on Winstation object not changeable
+- fd-plugins#505 Software Deployment - Debug message visible in production mode
+- fd-plugins#553 dhcpHost not removed if system is removed
+- fd-plugins#562 Error message when I click on the tab "Deployment summary" of a workstation
+- fd-plugins#572 The required field 'NTP server' is empty!
+- fd-plugins#695 Wrong icon for "Systems" option on main FD interface
+- fd-plugins#710 in the nova plugin we don't have the remove button
+- fd-plugins#726 we missed the start/stop/restart button on the argonaut service
+- fd-plugins#731 PHP errors in class_workstationService.inc
+- fd-plugins#733 showing the log interface without log on a unsaved workstation
+- fd-plugins#734 there is a problem when there is not an ntp server added to the workstations, the saving fails
+- fd-plugins#737 PHP errors in goto plugin
+- fd-plugins#748 PHP error caused by servDHCP
+- fd-plugins#766 Address book should follow code guidelines
+- fd-plugins#776 LDAP Manager: incomplete change of field ("," -> ";") separator for CSV files
+- fd-plugins#836 when creating a terminal it yell at me that wake event doesnt exist
+- fd-plugins#841 [openstack-compute] - Mismatch in directory naming
+- fd-plugins#842 [mail-plugin] missing mailMethodKolab class
+- fd-plugins#867 the argonaut-fuse config service display an error vhen saving to ldap
+- fd-plugins#885 the protocol of json rpc (http or https) should not be encoded in the code and be saved into the ldap
+- fd-plugins#890 now we have all the release on the mirror evne non installable one on the filer list in  List of deployment classes and products
+- fd-plugins#897 the serverrepository service should not create ou=xxx,ou=fai if its not an install release
+- fd-plugins#902 check the copyright is correct on all files
+- fd-plugins#920 the package class creation in system deployement has to store the custom release if used into the package class
+- fd-plugins#929 renaming the novauser to novaaccount to be in sync with other plugins
+- fd-plugins#940 DNS record : SRV type is properly useable in dns plugin
+- fd-plugins#958 ACLs should be used in templates
+- fd-plugins#970 Quota interface
+- fd-plugins#972 in the rsyslog plugin we got an error when we try to use the system log plugin
+- fd-plugins#985 when clicking on the rsyslog addons i got ton of error about static methods
+- fd-plugins#986 error when clicking into the nova icon in the my account
+- fd-plugins#988 error when saving a dns service after editing it
+- fd-plugins#989 Problem on Copy & paste wizard for a server or workstation
+- fd-plugins#1000 the dhcp service misses the stop/start/restart button in the service view
+
+## %"FusionDirectory 1.0.2" - 2011-09-26
+
+### Added
+
+#### fusiondirectory
+- fd#138 script for .schema to .ldif conversion
+- fd#371 Please allow a way to do the LDAP integrity checks after FD is installed
+- fd#406 update ldif files to be used in cn=config directly
+- fd#417 Plugins Installation - Lack of documentation
+
+#### fusiondirectory-plugins
+- fd-plugins#379 Add tls management in update_vacation script
+
+### Changed
+
+#### fusiondirectory
+- fd#388 Spool directory hardcoded
+- fd#389 Temporary dir hardcoded in copyPasteHandler class
+- fd#390 fusiondirectory.conf file hardcoded
+- fd#391 Embedeed smarty removal
+- fd#399 the fusion-setup command should be rewritten in perl
+- fd#401 mkntpasswd should be written in perl and check the availability of the library
+- fd#405 repace the actual README.cnconfig by the content from the website
+
+### Removed
+
+#### fusiondirectory
+- fd#274 Same contrib files available in two plugins (krb5 and heimdal)
+
+#### fusiondirectory-plugins
+- fd-plugins#362 removing the syslog part from the log plugin and create a syslog plugin
+- fd-plugins#366 removing the opsi plugin from the official plugins
+
+### Fixed
+
+#### fusiondirectory
+- fd#272 PHP error on client IP detection
+- fd#275 Generic user information: Incorrect Warning
+- fd#281 Last rows of page overlapping with a lot of objects
+- fd#328 [Wizard] Bad temporary file name in Step 1
+- fd#332 fixing the scrolling height in firefox 5
+- fd#334 mkntpasswd creation page
+- fd#349 timezone Berlin is missing
+- fd#365 include check in update-fusiondirectory for cache problems
+- fd#368 FD can end up creating an invalid configuration file
+- fd#370 FD complains about "Missing GOsa extensions" in the generic attributes
+- fd#372 Setup wizard won't fix users in all cases
+- fd#373 updated the loading of the cache file
+- fd#376 Hardened error_handler
+- fd#377 fixed Smarty handling for GOsa 2.6
+- fd#385 modify schema2lidf to not add by default a x-origin tag to the schema file
+- fd#387 changing update-fusiondirectory into fusiondirectory-setup
+- fd#393 "Gérer" instead of "Gèrer"
+- fd#403 test php safe mode
+- fd#404 rewrite the INSTALL doc
+- fd#410 dateofBirth not taken while importing with CSV
+- fd#418 replace update-fusiondirectory by fusiondirectory-setup in all files
+- fd#439 Rpm/Centos/Imagemagick
+- fd#450 Wrong data import for Samba Idmap
+- fd#457 the fusiondirectory-insert-schema should look if the samba.schema is in the ldap tree
+- fd#460 Shell environment variables different in Mageia
+- fd#466 it seems that adding the -y broke the multi parameter in fusiondirectory-setup
+- fd#467 using fusiondirectory-setup to install from tar.gz
+- fd#472 fusiondirectory-setup - Apache_user variable is not defined
+
+#### fusiondirectory-plugins
+- fd-plugins#232 askignfor goto-si even when nothing is in the fusiondirectory.conf
+- fd-plugins#420 the example in queue management for the cvs entry to be put is wrong
+- fd-plugins#464 php error while clic on "apply" after FAI plugin's installation
+- fd-plugins#465 debug screen in FD after FAI plugin installation
+
+## %"FusionDirectory 1.0.1" - 2011-05-02
+
+ - Removed advanced options from setup
+ - Corrected online help
+ - Corrected wording on plugins
+ - Removed the need for magic_quotes_gpc
+ - Removed the fusiondirectory-desktop package
+ - Removed program version checking from svn
+ - Added the apache plugin
+ - Put final logo
+ - Full italian language
+
+## %"FusionDirectory 1.0" - 2011-03-20
+
+- First stable release
+
-- 
GitLab


From 4459d0cd25e3106dc0e44e115660f84d86549201 Mon Sep 17 00:00:00 2001
From: Jonathan Swaelens <jonathan.swaelens@fusiondirectory.org>
Date: Mon, 10 Oct 2022 13:28:55 +0000
Subject: [PATCH 71/73] :sparkles: feat(ci): Remove build-release

Remove build-release
---
 .gitlab-ci.yml | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index eee3482c16..024f0d982c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -70,16 +70,6 @@ build-tarballs:
       - fusiondirectory-plugins-1.3.1.tar.gz
     expire_in: 30d
 
-build-release:
-  stage: tarballs
-  only:
-    - tags
-  script:
-    - tar -cvzf fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz *
-  artifacts:
-    paths:
-      - fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz
-
 trigger-ci-debian-buster:
   stage: trigger
   only:
-- 
GitLab


From d7df5f4ff73f7fb2cbf066b379610168492672ca Mon Sep 17 00:00:00 2001
From: dockx thibault <thibault.dockx@fusiondirectory.org>
Date: Tue, 11 Oct 2022 12:01:44 +0000
Subject: [PATCH 72/73] :sparkles: Feat(GitlabCI) - 1.3-fixes plugin updates
 phpcs

Using phpcs fix release and use compositor.
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 024f0d982c..f663bdc00d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,7 +29,7 @@ create_php_code_sniffer_rapport:
     - test -d ../dev-tools/ && rm -Rf ../dev-tools/
     - git clone --depth 1 https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools
     - find . -type f -name '*.php' -o -name '*.inc' > ./filelist
-    - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
+    - /root/.composer/vendor/bin/phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist
 
 # fusiondirectory-update-locale
 fusiondirectory-update-locale:
-- 
GitLab


From 6c2ae1536b46d19b91c6d3eb1bba43e62e77f0de Mon Sep 17 00:00:00 2001
From: Benoit Mortier <benoit.mortier@fusiondirectory.org>
Date: Wed, 12 Oct 2022 13:06:35 +0200
Subject: [PATCH 73/73] :handshake: fix(changelog) Update the changelog for
 1.3.1

Signed-off-by: Benoit Mortier <benoit.mortier@fusiondirectory.org>
---
 Changelog.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 50 insertions(+), 1 deletion(-)

diff --git a/Changelog.md b/Changelog.md
index a8c12f8401..4609da665a 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,40 +1,67 @@
-## %"FusionDirectory 1.3.1" - 2019-07-04
+## %"FusionDirectory 1.3.1" - 2022-09-09
 
 ### Added
 
 #### fusiondirectory
 - fd#5985 We don't have LDAP tab on FusionDirectory configuration
+- fd#6152 Add subscription screen
 
 #### fusiondirectory-plugins
 - fd-plugins#5911 supannRefId field is missing for "etablissement"
 - fd-plugins#5938 Make %passwordClear% available to sambaAccount hooks
 - fd-plugins#5939 create icons for ipmi and weblink
 - fd-plugins#5940 We don't have LDAP tab on FusionDirectory configuration
+- fd-plugins#5956 add mapping sinaps to Fd mapping for diffusion
 - fd-plugins#5957 creating icons for the sinaps plugin
 
 ### Changed
 
+#### fusiondirectory
+- fd#6024 Cleanup session handling
+- fd#6038 Move the "Click the 'Edit' button" message to the left
+- fd#6220 [CodeStyle] - 1.3.1 Requires adaptation to align code style with 1.4
+- fd#6221 [Enhancement] - Change CI 1.3.1 - CodeStyle to refelect 1.4 rules
+
 #### fusiondirectory-plugins
+- fd-plugins#5897 When a user is removed from Sinaps, we need to send back a deletion acquisition
 - fd-plugins#5913 Avoid mass acquistion when editing group gidNumber
 - fd-plugins#5948 description of a user should'nt be updated from SINAPS
+- fd-plugins#5993 _getTabFooter has been renamed getTabFooter
+- fd-plugins#6103 Adapt 1.3-fixes code to subscription core merge
+- fd-plugins#6180 [CodeStyle] 1.3.1 Plugin - Requires adaptation to align code style with 1.4
 
 ### Removed
 
 #### fusiondirectory-plugins
 - fd-plugins#5901 Remove Google+ from personal social accounts tab
+- fd-plugins#5992 Email icon should be moved to core
 
 ### Fixed
 
 #### fusiondirectory
+- fd#5862 filtering and "Unknown element type specified: !"
 - fd#5942 PHP >= 7.2 triggering error when count() is called with invalid countable
 - fd#5967 Systems dashboard crashes
+- fd#5974 Workflow problem when applying a template to an object triggers errors
 - fd#5978 when renaming branch aka department roles are not updated correctly
 - fd#5983 Write ACL on user/userRoles/groupsMembership not working when not having full user/user read right
 - fd#5987 ImagickException are not catched when showing an ImageAttribute
+- fd#5995 Audit events DN are too long
 - fd#5997 Incorrect error message when the mail cannot be sent by recovery
+- fd#6005 Problem with gidNumber in posix group template
 - fd#6006 expiration date in dashboard is 02.01.1970
+- fd#6017 IntAttribute badly handle empty value when minimum is set
+- fd#6023 Email icon missing from core
+- fd#6030 correct the get help section in the readme.md
+- fd#6097 Smarty path is not set correctly by fusiondirectory-setup --write-vars
+- fd#6122 Problems with FD web setup
+- fd#6142 The filter for configuration is wrong in fusiondirectory-setup
+- fd#6173 PHP error: Array to string conversion in class_fiInventory.inc:199
+- fd#6222 [1.3.1] - Fixing LDAP Search filter code style
 
 #### fusiondirectory-plugins
+- fd-plugins#5825 LDAP error in audit plugin
+- fd-plugins#5912 Unable to spread a user to FD from sinaps if the user is affected to an etablissement
 - fd-plugins#5917 flag_ownmailbox cannot be used with partage mail method
 - fd-plugins#5918 SINAPS : acquisition couldn't be sent because primary affectation isn't set
 - fd-plugins#5923 cname record appear on another domain when they contain the machine cn
@@ -44,6 +71,28 @@
 - fd-plugins#5944 add addvalues/delvalues documentation
 - fd-plugins#5945 unable to add SINAPS Structure
 - fd-plugins#5949 Systems dashboard crashes
+- fd-plugins#5963 error in SINAPS workflow
+- fd-plugins#5966 dovecot connection error
+- fd-plugins#5976 Problem with gidNumber in posix group template
+- fd-plugins#5970 Compatibility error between sudo and mixedgroup plugins
+- fd-plugins#5978 GPG key addition crash
+- fd-plugins#5991 ORCID last character may be 'X' and not a number
+- fd-plugins#6000 correct the get help section in the readme.md
+- fd-plugins#6063 Argument 4 passed to DhcpHostsAttribute::postLdapSave() must be of the type array, string given
+- fd-plugins#6079 reload dns map from dns interface didn't work , but from server it works
+- fd-plugins#6125 PHP error: Array to string conversion in class_fiInventory.inc:199
+
+### Security
+
+#### fusiondirectory
+- fd#6021 Failed LDAP operations may appear as Success
+- fd#6135 Security problems uncovered by audit
+- fd#6086 XSS in login screen
+- fd#6136 Weak random generator use in fusiondirectory-setup
+- fd#6137 XSS in management filters
+- fd#6217 [Security] - Set Cookie settings to TRUE for option "HttpOnly"
+- fd#6219 [security] - Cookie session is not renewed or set after authentification
+
 
 ## %"FusionDirectory 1.3" - 2019-03-04
 
-- 
GitLab